From a4600b221914bdc12cf2b500a8d9a1620fce9f2a Mon Sep 17 00:00:00 2001 From: spdis Date: Thu, 28 Aug 2025 14:34:45 +0800 Subject: [PATCH] Initial commit --- .gitattributes | 5 + .gitignore | 25 + CREDITS.txt | 65 +++ LICENSE.txt | 523 ++++++++++++++++++ README.txt | 46 ++ black_sugar.png | Bin 0 -> 1682 bytes build.gradle | 227 ++++++++ changelog.txt | 421 ++++++++++++++ gradle.properties | 66 +++ gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 43453 bytes gradle/wrapper/gradle-wrapper.properties | 7 + gradlew | 249 +++++++++ gradlew.bat | 92 +++ settings.gradle | 13 + .../blacksugarmod/BlackSugarModMain.java | 307 ++++++++++ .../java/com/spdis/blacksugarmod/Config.java | 60 ++ src/main/resources/META-INF/mods.toml | 73 +++ .../blacksugarmod/items/black_sugar.json | 6 + .../items/black_sugar_dumpling.json | 6 + .../blacksugarmod/items/bland_kitten.json | 6 + .../items/braised_prison_vegetables.json | 6 + .../items/carcinogenic_marshmallow.json | 6 + .../items/charcoal_grilled_turtle.json | 6 + .../blacksugarmod/items/cooking_oil.json | 6 + .../blacksugarmod/items/crispy_bro.json | 6 + .../assets/blacksugarmod/items/dough.json | 6 + .../items/fragrant_starfish_skewer.json | 6 + .../items/indestructible_starfish.json | 6 + .../blacksugarmod/items/malicious_kitten.json | 6 + .../blacksugarmod/items/marshmallow.json | 6 + .../blacksugarmod/items/pickled_turtle.json | 6 + .../items/pot_of_prison_vegetables.json | 6 + .../items/roasted_marshmallow.json | 6 + .../blacksugarmod/items/sakaban_turtle.json | 6 + .../assets/blacksugarmod/items/scallion.json | 6 + .../blacksugarmod/items/starfish_skewer.json | 6 + .../assets/blacksugarmod/lang/en_us.json | 5 + .../assets/blacksugarmod/lang/zh_cn.json | 21 + .../models/item/black_sugar.json | 6 + .../models/item/black_sugar_dumpling.json | 6 + .../models/item/bland_kitten.json | 6 + .../item/braised_prison_vegetables.json | 6 + .../models/item/carcinogenic_marshmallow.json | 6 + .../models/item/charcoal_grilled_turtle.json | 6 + .../models/item/cooking_oil.json | 6 + .../blacksugarmod/models/item/crispy_bro.json | 6 + .../blacksugarmod/models/item/dough.json | 6 + .../models/item/fragrant_starfish_skewer.json | 6 + .../models/item/indestructible_starfish.json | 6 + .../models/item/malicious_kitten.json | 6 + .../models/item/marshmallow.json | 6 + .../models/item/pickled_turtle.json | 6 + .../models/item/pot_of_prison_vegetables.json | 6 + .../models/item/roasted_marshmallow.json | 6 + .../models/item/sakaban_turtle.json | 6 + .../blacksugarmod/models/item/scallion.json | 6 + .../models/item/starfish_skewer.json | 6 + .../textures/item/black_sugar.png | Bin 0 -> 2227 bytes .../textures/item/black_sugar_dumpling.png | Bin 0 -> 1415 bytes .../textures/item/bland_kitten.png | Bin 0 -> 2059 bytes .../item/braised_prison_vegetables.png | Bin 0 -> 2837 bytes .../item/carcinogenic_marshmallow.png | Bin 0 -> 1721 bytes .../textures/item/charcoal_grilled_turtle.png | Bin 0 -> 1977 bytes .../textures/item/cooking_oil.png | Bin 0 -> 2148 bytes .../textures/item/crispy_bro.png | Bin 0 -> 1677 bytes .../blacksugarmod/textures/item/dough.png | Bin 0 -> 1679 bytes .../item/fragrant_starfish_skewer.png | Bin 0 -> 1679 bytes .../textures/item/indestructible_starfish.png | Bin 0 -> 2002 bytes .../textures/item/malicious_kitten.png | Bin 0 -> 2262 bytes .../textures/item/marshmallow.png | Bin 0 -> 1645 bytes .../textures/item/pickled_turtle.png | Bin 0 -> 1370 bytes .../item/pot_of_prison_vegetables.png | Bin 0 -> 2800 bytes .../textures/item/roasted_marshmallow.png | Bin 0 -> 2216 bytes .../textures/item/sakaban_turtle.png | Bin 0 -> 1378 bytes .../blacksugarmod/textures/item/scallion.png | Bin 0 -> 1926 bytes .../textures/item/starfish_skewer.png | Bin 0 -> 1895 bytes .../blacksugarmod/recipe/black_sugar.json | 10 + .../recipe/black_sugar_dumpling.json | 16 + .../recipe/braised_prison_vegetables.json | 10 + .../recipe/carcinogenic_marshmallow.json | 10 + .../recipe/charcoal_grilled_turtle.json | 10 + .../data/blacksugarmod/recipe/crispy_bro.json | 12 + .../recipe/dough_from_wheat_and_water.json | 12 + .../recipe/fragrant_starfish_skewer.json | 10 + .../recipe/malicious_kitten.json | 13 + .../blacksugarmod/recipe/pickled_turtle.json | 12 + .../recipe/pot_of_prison_vegetables.json | 12 + .../recipe/roasted_marshmallow.json | 10 + .../blacksugarmod/recipe/starfish_skewer.json | 16 + src/main/resources/pack.mcmeta | 6 + 90 files changed, 2592 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 CREDITS.txt create mode 100644 LICENSE.txt create mode 100644 README.txt create mode 100644 black_sugar.png create mode 100644 build.gradle create mode 100644 changelog.txt create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100644 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle create mode 100644 src/main/java/com/spdis/blacksugarmod/BlackSugarModMain.java create mode 100644 src/main/java/com/spdis/blacksugarmod/Config.java create mode 100644 src/main/resources/META-INF/mods.toml create mode 100644 src/main/resources/assets/blacksugarmod/items/black_sugar.json create mode 100644 src/main/resources/assets/blacksugarmod/items/black_sugar_dumpling.json create mode 100644 src/main/resources/assets/blacksugarmod/items/bland_kitten.json create mode 100644 src/main/resources/assets/blacksugarmod/items/braised_prison_vegetables.json create mode 100644 src/main/resources/assets/blacksugarmod/items/carcinogenic_marshmallow.json create mode 100644 src/main/resources/assets/blacksugarmod/items/charcoal_grilled_turtle.json create mode 100644 src/main/resources/assets/blacksugarmod/items/cooking_oil.json create mode 100644 src/main/resources/assets/blacksugarmod/items/crispy_bro.json create mode 100644 src/main/resources/assets/blacksugarmod/items/dough.json create mode 100644 src/main/resources/assets/blacksugarmod/items/fragrant_starfish_skewer.json create mode 100644 src/main/resources/assets/blacksugarmod/items/indestructible_starfish.json create mode 100644 src/main/resources/assets/blacksugarmod/items/malicious_kitten.json create mode 100644 src/main/resources/assets/blacksugarmod/items/marshmallow.json create mode 100644 src/main/resources/assets/blacksugarmod/items/pickled_turtle.json create mode 100644 src/main/resources/assets/blacksugarmod/items/pot_of_prison_vegetables.json create mode 100644 src/main/resources/assets/blacksugarmod/items/roasted_marshmallow.json create mode 100644 src/main/resources/assets/blacksugarmod/items/sakaban_turtle.json create mode 100644 src/main/resources/assets/blacksugarmod/items/scallion.json create mode 100644 src/main/resources/assets/blacksugarmod/items/starfish_skewer.json create mode 100644 src/main/resources/assets/blacksugarmod/lang/en_us.json create mode 100644 src/main/resources/assets/blacksugarmod/lang/zh_cn.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/black_sugar.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/black_sugar_dumpling.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/bland_kitten.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/braised_prison_vegetables.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/carcinogenic_marshmallow.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/charcoal_grilled_turtle.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/cooking_oil.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/crispy_bro.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/dough.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/fragrant_starfish_skewer.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/indestructible_starfish.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/malicious_kitten.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/marshmallow.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/pickled_turtle.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/pot_of_prison_vegetables.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/roasted_marshmallow.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/sakaban_turtle.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/scallion.json create mode 100644 src/main/resources/assets/blacksugarmod/models/item/starfish_skewer.json create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/black_sugar.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/black_sugar_dumpling.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/bland_kitten.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/braised_prison_vegetables.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/carcinogenic_marshmallow.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/charcoal_grilled_turtle.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/cooking_oil.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/crispy_bro.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/dough.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/fragrant_starfish_skewer.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/indestructible_starfish.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/malicious_kitten.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/marshmallow.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/pickled_turtle.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/pot_of_prison_vegetables.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/roasted_marshmallow.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/sakaban_turtle.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/scallion.png create mode 100644 src/main/resources/assets/blacksugarmod/textures/item/starfish_skewer.png create mode 100644 src/main/resources/data/blacksugarmod/recipe/black_sugar.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/black_sugar_dumpling.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/braised_prison_vegetables.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/carcinogenic_marshmallow.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/charcoal_grilled_turtle.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/crispy_bro.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/dough_from_wheat_and_water.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/fragrant_starfish_skewer.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/malicious_kitten.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/pickled_turtle.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/pot_of_prison_vegetables.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/roasted_marshmallow.json create mode 100644 src/main/resources/data/blacksugarmod/recipe/starfish_skewer.json create mode 100644 src/main/resources/pack.mcmeta diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..f811f6a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +# Disable autocrlf on generated files, they always generate with LF +# Add any extra files or paths here to make git stop saying they +# are changed when only line endings change. +src/generated/**/.cache/cache text eol=lf +src/generated/**/*.json text eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..12f8644 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +# eclipse +bin +*.launch +.settings +.metadata +.classpath +.project + +# idea +out +*.ipr +*.iws +*.iml +.idea + +# gradle +build +.gradle + +# other +eclipse +run + +# Files from Forge MDK +forge*changelog.txt diff --git a/CREDITS.txt b/CREDITS.txt new file mode 100644 index 0000000..6ec8f00 --- /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 its 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 stabilized 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. +https://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. +https://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.txt b/LICENSE.txt new file mode 100644 index 0000000..249debe --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,523 @@ +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. + +This software includes the Monocraft font from https://github.com/IdreesInc/Monocraft/ for use in the early loading +display. +========================================================================= + + + 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/README.txt b/README.txt new file mode 100644 index 0000000..fd3a5d5 --- /dev/null +++ b/README.txt @@ -0,0 +1,46 @@ + +Source installation information for modders +------------------------------------------- +This code follows the Minecraft Forge installation methodology. It will apply +some small patches to the vanilla MCP source code, giving you and it access +to some of the data and functions you need to build a successful mod. + +Note also that the patches are built against "un-renamed" MCP source code (aka +SRG Names) - this means that you will not be able to read them directly against +normal code. + +Setup Process: +============================== + +Step 1: Open your command-line and browse to the folder where you extracted the zip file. + +Step 2: You're left with a choice. +If you prefer to use Eclipse: +1. Run the following command: `./gradlew genEclipseRuns` +2. Open Eclipse, Import > Existing Gradle Project > Select Folder + or run `gradlew eclipse` to generate the project. + +If you prefer to use IntelliJ: +1. Open IDEA, and import project. +2. Select your build.gradle file and have it import. +3. Run the following command: `./gradlew genIntellijRuns` +4. Refresh the Gradle Project in IDEA if required. + +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 process again. + +Mapping Names: +============================= +By default, the MDK is configured to use the official mapping names from Mojang for methods and fields +in the Minecraft codebase. These names are covered by a specific license. All modders should be aware of this +license, if you do not agree with it you can change your mapping names to other crowdsourced names in your +build.gradle. For the latest license text, refer to the mapping file itself, or the reference copy here: +https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md + +Additional Resources: +========================= +Community Documentation: https://docs.minecraftforge.net/en/latest/gettingstarted/ +LexManos' Install Video: https://youtu.be/8VEdtQLuLO0 +Forge Forums: https://forums.minecraftforge.net/ +Forge Discord: https://discord.minecraftforge.net/ diff --git a/black_sugar.png b/black_sugar.png new file mode 100644 index 0000000000000000000000000000000000000000..fe91c3326a283dba535a9e28a1a7b8d5ea7111fe GIT binary patch literal 1682 zcmY*Z&u%$xUS zeYp4ZgIsEO&@sqy+;Dm>S%5u3JT?G*_i*nipup{G7E&`D8@~;M(2>-ZhV$?;BIDQ{?|v!t!+ zwW#Ot$)3llt5MHVFze6OuWD=h+;&4-*v>7Mw>QdR)f0~m56T@0J5)7OadxVkwWidG zy1E-n@F~o@Vsb;RNQLCAwF0B4Yt1z463@5WZC_jT8I4t52#3SGKfnh9Uaasow`!)+ z@z$DdYlEcLEI0JJsT(yXZK#xtmKk-mTDmG#luEFqszGl_5mm1ssESunMZv3zqB<26 zLV=1jCKG+9M`{#c4 z>)_onHvi&2EMI2>Xat<0rx*gGKYzdf1QxK}=49qE9ZO9p@a`=Yp-C1y0aJ7`A1Z(% z?R@F?Z&>g+GtlB`ND16vAsPa7e_&`3(hvGU>vOTnia^1H?11#}DTyBb`H8s++rihp z;7NE@FtczuPah0$W(0DS`SYTC$Of10n{u&OVH`FPgRHOsG=K0dbQV0nz=Ah6$LYos z#+chisVrM5rr}d}mPR3feFv z(8}}*H5ss87tH}w$G;xkx=Ss;1=2~WDG1dJpmt2ZcMUpmVd@6V73wum+SI8iXTiul zdR3GtV7~*QGk2VCLZ5%$f5#4MwGE#2`;*4x`mf(%e0l%^aN|dqBhzyO)+vowVP!r- zt(*sMg1>ylRy@DYtd;h`ZeV}6N;QzvGMmYX%r?2{D!jGUr_?;F%(N1qU$?-4?klEJ zw!w+Sbtr|wMbO55GzufoK7T)cu?xd+4rYbF%?6oCdnQCJ1E@fhG7#^hd;I%FWYog~ zG|W59o5O5KdjL_Y9^gL@$$?bYXP-&X9)irHi>-l;5&Ga8pl+u=av*R$`0U4#PxilL aBWO6z(a}~T9CQHv@u#ol=)0Vu^#225>6tqK literal 0 HcmV?d00001 diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..033a4f5 --- /dev/null +++ b/build.gradle @@ -0,0 +1,227 @@ +plugins { + id 'eclipse' + id 'idea' + id 'maven-publish' + id 'net.minecraftforge.gradle' version '[6.0.36,6.2)' +} + +version = mod_version +group = mod_group_id + +base { + archivesName = mod_id +} + +// Mojang ships Java 21 to end users in 1.20.5+, so your mod should target Java 21. +java.toolchain.languageVersion = JavaLanguageVersion.of(21) + +println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" +minecraft { + // The mappings can be changed at any time and must be in the following format. + // Channel: Version: + // official MCVersion Official field/method names from Mojang mapping files + // parchment YYYY.MM.DD-MCVersion Open community-sourced parameter names and javadocs layered on top of official + // + // Parchment is an unofficial project maintained by ParchmentMC, separate from MinecraftForge + // Additional setup is needed to use their mappings: https://parchmentmc.org/docs/getting-started + // + // Simply re-run your setup task after changing the mappings to update your workspace. + mappings channel: mapping_channel, version: mapping_version + + // Forge 1.20.6 and newer use official mappings at runtime, so we shouldn't reobf from official to SRG + reobf = false + + // When true, this property will have all Eclipse/IntelliJ IDEA run configurations run the "prepareX" task for the given run configuration before launching the game. + // In most cases, it is not necessary to enable. + // enableEclipsePrepareRuns = true + // enableIdeaPrepareRuns = true + + // This property allows configuring Gradle's ProcessResources task(s) to run on IDE output locations before launching the game. + // It is REQUIRED to be set to true for this template to function. + // See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html + copyIdeResources = true + + // When true, this property will add the folder name of all declared run configurations to generated IDE run configurations. + // The folder name can be set on a run configuration using the "folderName" property. + // By default, the folder name of a run configuration is the name of the Gradle project containing it. + // generateRunFolders = true + + // This property enables access transformers for use in development, applied to the Minecraft artifact. + // The access transformer file can be anywhere in the project. + // However, it must be at "META-INF/accesstransformer.cfg" in the final mod jar to be loaded by Forge. + // This default location is a best practice to automatically put the file in the right place in the final jar. + // See https://docs.minecraftforge.net/en/latest/advanced/accesstransformers/ for more information. + // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') + + // Default run configurations. + // These can be tweaked, removed, or duplicated as needed. + runs { + // applies to all the run configs below + configureEach { + workingDirectory project.file('run') + + // Optional additional logging. The markers can be added/remove as needed, separated by commas. + // "SCAN": For mods scan. + // "REGISTRIES": For firing of registry events. + // "REGISTRYDUMP": For getting the contents of all registries. +// property 'forge.logging.markers', 'REGISTRIES' + + property 'forge.logging.console.level', 'debug' + +// arg "-mixin.config=${mod_id}.mixins.json" + } + + client { + // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. + property 'forge.enabledGameTestNamespaces', mod_id + } + + server { + property 'forge.enabledGameTestNamespaces', mod_id + args '--nogui' + } + + // This run config launches GameTestServer and runs all registered gametests, then exits. + // By default, the server will crash when no gametests are provided. + // The gametest system is also enabled by default for other run configs under the /test command. + gameTestServer { + property 'forge.enabledGameTestNamespaces', mod_id + } + + data { + // example of overriding the workingDirectory set in configureEach above + workingDirectory project.file('run-data') + + // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. + args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') + } + } +} + +// Include resources generated by data generators. +sourceSets.main.resources { srcDir 'src/generated/resources' } + +repositories { + // Put repositories for dependencies here + mavenCentral() + maven { + name = 'Forge' + url = 'https://maven.minecraftforge.net' + } + maven { + name = 'Minecraft libraries' + url = 'https://libraries.minecraft.net' + } + exclusiveContent { + forRepository { + maven { + name = 'Sponge' + url = 'https://repo.spongepowered.org/repository/maven-public' + } + } + filter { + includeGroupAndSubgroups('org.spongepowered') + } + } + + // If you have mod jar dependencies in ./libs, you can declare them as a repository like so. + // See https://docs.gradle.org/current/userguide/declaring_repositories.html#sub:flat_dir_resolver + // flatDir { + // dir 'libs' + // } +} + +dependencies { + // Specify the version of Minecraft to use. + // Any artifact can be supplied so long as it has a "userdev" classifier artifact and is a compatible patcher artifact. + // The "userdev" classifier will be requested and setup by ForgeGradle. + // If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"], + // then special handling is done to allow a setup of a vanilla dependency without the use of an external repository. + minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" + + // Example mod dependency with JEI + // The JEI API is declared for compile time use, while the full JEI artifact is used at runtime + // compileOnly "mezz.jei:jei-${mc_version}-common-api:${jei_version}" + // compileOnly "mezz.jei:jei-${mc_version}-forge-api:${jei_version}" + // runtimeOnly "mezz.jei:jei-${mc_version}-forge:${jei_version}" + + // Example mod dependency using a mod jar from ./libs with a flat dir repository + // This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar + // The group id is ignored when searching -- in this case, it is "blank" + // implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}") + + // For more info: + // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html + // http://www.gradle.org/docs/current/userguide/dependency_management.html +} + +// This block of code expands all declared replace properties in the specified resource targets. +// A missing property will result in an error. Properties are expanded using ${} Groovy notation. +// When "copyIdeResources" is enabled, this will also run before the game launches in IDE environments. +// See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html +tasks.named('processResources', ProcessResources) { + var replaceProperties = [ + minecraft_version: minecraft_version, minecraft_version_range: minecraft_version_range, + forge_version: forge_version, forge_version_range: forge_version_range, + loader_version_range: loader_version_range, + mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version, + mod_authors: mod_authors, mod_description: mod_description, + ] + inputs.properties replaceProperties + + filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) { + expand replaceProperties + [project: project] + } +} + +// Example for how to get properties into the manifest for reading at runtime. +tasks.named('jar', Jar) { + manifest { + attributes([ + 'Specification-Title' : mod_id, + 'Specification-Vendor' : mod_authors, + 'Specification-Version' : '1', // We are version 1 of ourselves + 'Implementation-Title' : project.name, + 'Implementation-Version' : project.jar.archiveVersion, + 'Implementation-Vendor' : mod_authors + ]) +// attributes['MixinConfigs'] = "${mod_id}.mixins.json" + } +} + +// Example configuration to allow publishing using the maven-publish plugin +publishing { + publications { + register('mavenJava', MavenPublication) { + artifact jar + } + } + repositories { + maven { + url "file://${project.projectDir}/mcmodsrepo" + } + } +} + +tasks.withType(JavaCompile).configureEach { + options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation +} + +// IntelliJ no longer downloads javadocs and sources by default, this tells Gradle to force IntelliJ to do it. +idea.module { downloadJavadoc = downloadSources = true } + +eclipse { + // Run everytime eclipse builds the code + //autoBuildTasks genEclipseRuns + // Run when importing the project + synchronizationTasks 'genEclipseRuns' +} + +// Merge the resources and classes into the same directory, because Java expects modules to be in a single directory. +// And if we have it in multiple we have to do performance intensive hacks like having the UnionFileSystem +// This will eventually be migrated to ForgeGradle so modders don't need to manually do it. But that is later. +sourceSets.each { + def dir = layout.buildDirectory.dir("sourcesSets/$it.name") + it.output.resourcesDir = dir + it.java.destinationDirectory = dir +} diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 0000000..b1d4ed9 --- /dev/null +++ b/changelog.txt @@ -0,0 +1,421 @@ +1.21.4 Changelog +54.1 +==== + - 54.1.6 Update MDK to fix OOM error and aid getting Mixin setup (#10582) + Backport of #10559 to 1.21.4. + Co-authored-by: Paint_Ninja + - 54.1.5 Add ForgeLayeredDraw & AddGuiOverlayLayersEvent as API for gui overlay management. (#10579) + - 54.1.4 Add event for adding framepasses (#10502) + - 54.1.3 Add Pumpkin Block and Item Tags (#10482) + - 54.1.2 Add '#forge:chorus_additionally_grows_on' tag for similar mechanics to '#minecraft:azalea_grows_on' but for chorus (#10459) + - 54.1.1 Fix Hanging Pale Moss not dropping with modded shears (#10414) + - 54.1.0 1.21.4 RB 1 + https://forums.minecraftforge.net/topic/154394-forge-541-minecraft-1214/ + +54.0 +==== + - 54.0.38 Fix corrupted and invalidly symlinked worlds crashing on level select (#10406) + - 54.0.37 Add fast graphics render type to block model jsons (#10394) + Make modded leaves behave like vanilla leaves by default (Fixes #10389) + - 54.0.36 Add updated tag context to AddReloadListenerEvent (#10412) + Fixes using custom tags in GlobalLootModifiers. + - 54.0.35 Give ItemStack context to IForgeItem.getCapabilityProvider (#10404) + - 54.0.34 Re-introduce ItemStack Capabilities (#10324) + - 54.0.33 Fix redstone updates for comparators going up/down incorrectly. Related: #9973 + - 54.0.32 Fix forced chunks never being ticked by the server (#10325) + - 54.0.31 Fix redstone update order not matching vanilla. (#10392) + - 54.0.30 Fix game test structure rotations being inconsistant (#10391) + - 54.0.29 Re-introduce IForgeItem.damageItem when an item takes damage, Fixes #10344 (#10371) + - 54.0.28 Gate client test mods behind clientSideOnly (#10390) + - 54.0.27 Fix issue with superclass event listeners by updating EventBus (#10384) + - 54.0.26 Bump dependencies, most notably EventBus (#10370) + - CoreMods 5.2.4 -> 5.2.6 + - EventBus 6.2.15 -> 6.2.26 + - Reduced memory usage + - Further performance improvements + - Fixed EventBus#39, unregistered listeners are now immediately reclaimable by the GC + - Apache MavenArtifact 3.8.5 -> 3.8.8 + - NightConfig 3.7.3 -> 3.7.4 + - 54.0.25 Fix shield disabling being completely ignored (#10316) + - 54.0.24 Update Gradle to 8.12.1 + - 54.0.23 Fix JOpt Simple by updating ModLauncher (#10347) + - 54.0.22 GameTestHelper additions (#10338) + Co-authored-by: LexManos + - 54.0.21 Add `c:flowers`, `c:flowers/tall`, and `c:flowers/small` block and item tags (#10335) + Co-authored-by: TelepathicGrunt <40846040+telepathicgrunt@users.noreply.github.com> + - 54.0.20 Fix JOpt Simple needing a strict version requirement declaration (#10311) + - 54.0.19 Fix incorrect method reference in TntBlock.explode() (#10326) + - 54.0.18 Fix issues in VillagerTrades.EmeraldsForVillagerTypeItem related to custom Villager Types (#10298) + Add VillagerType#registerBiomeType + - 54.0.17 Fix render_type in block models not being used. Fixes #10294 + - 54.0.16 Bump dependencies (#10274) + - EventBus 6.2.8 -> 6.2.15 + - Bootstrap 2.1.7 -> 2.1.8 + - SecureModules 2.2.20 -> 2.2.21 + - AccessTransformers 8.2.0 -> 8.2.1 + - ModLauncher 10.2.2 -> 10.2.3 + These bumps include further clean-up and optimisations. + - 54.0.15 Simplify Title Screen Brandings (#10287) + - 54.0.14 Clean and fix Forge's internal coremods, fixes finalizeSpawn hook. (#10271) + - 54.0.13 Update jline for better darwin/arm64 support Fixes #10107 (#10279) + - 54.0.12 Bump CoreMods to 5.2.4 (#10262) + - 54.0.11 Allow mipmap lowering to be disabled (#10242) + - 54.0.10 Manage FileWatcher instance per ConfigFileTypeHandler (#10213) + - 54.0.9 Skip processing Forge classes in `RuntimeDistCleaner` (#10199) + Mod classes are still transformed as usual + - 54.0.8 Skip Forge classes in the RuntimeEnumExtender transformer (#10197) + Mod classes are still transformed as usual + - 54.0.7 Add hooks for using Vanilla's new Client data generator (#10206) + Add new hook for custom block models that do not have real blocks backing them + Some workspace cleanup fixing log4j annotation processor + - 54.0.6 Deprecate `@ObjectHolder`, add a couple of fast-paths (#10195) + - 54.0.5 Bump Bootstrap which has a slight performance boost during dev time. + - 54.0.4 Speed up mod annotation scanning by ~30% + - 54.0.3 Skip Vanilla classes for the CapabilityTokenSubclass transformer (#10196) + - 54.0.2 Simplify memory usage display on loading screen (#10193) + Co-authored-by: TelepathicGrunt <40846040+telepathicgrunt@users.noreply.github.com> + - 54.0.1 Fix custom particles causing crash + - 54.0.0 Minecraft 1.21.4 + +53.0 +==== + - 53.0.25 Remove debug code. Closes #10182 + - 53.0.24 Pass the Holder to Item.canApplyAtEnchantingTable. Closes #10181 + - 53.0.23 Fix incorrect patch + - 53.0.22 Change vanilla registry order to last-seen. Closes #10179 + - 53.0.21 Call IUnbakedGeometry.bake from BlockModel Closes #10178 + - 53.0.20 Cleanup some warnings + - 53.0.19 Fix not being able to swim in lava + - 53.0.18 Move mdk back to com/example/examplemod to align with what people expect. + - 53.0.17 Move MDK example to test sourceset and fix Item/Block registration example. Closes #10139 + - 53.0.16 Added support for using optional tags on Forge registries + Add DeferredRegister.key(name) helper function to make ResourceKey creation easier + Fix TagManager not binding tags + Fix Unbound Tag Exception when modders register tags during Register events Closes #10154 + - 53.0.15 Fix empty tag conditional recipe test + - 53.0.14 Fixed missed call to getFriction hook in AbstractBoat + - 53.0.13 Pass player argument when firing `OnDatapackSyncEvent` (#10170) + - 53.0.12 Cleanup lifecycle transitions + Fix mod ordering for multi-mod jars + Make dependency resolution issues easier to debug/diagnose + - 53.0.11 Bump CoreMods to 5.2 (#10156) + Full Changelog: + https://gist.github.com/Jonathing/c3ad28b2a048ac839a7baba5417ee870 + The key features are: + - ES6 language support + - Thoroughly updated ASMAPI, with full documentation + - Bug fixes (some optional for backwards-compatibility) + - Partial internal code cleanup + - 53.0.10 Fix PlayerRenderer#render invoking RenderLivingEvent and not RenderPlayerEvent (#10167) + - 53.0.9 Fix Powered Rails acting like Activator Rails due to misaligned patch + - 53.0.8 Properly allow normal mods.toml mods to specify the module names and use a full module-info. + Make FMLModContainer read and apply Add-Opens and Add-Exports manifest entries from mod files. + Forge is now the `net.minecraftforge.forge` module instead of `forge` + https://forums.minecraftforge.net/topic/153333-proper-java-module-support-in-forge-mods/ + - 53.0.7 Fix LootTableLoadEvent not being fired. Closes #10144 + - 53.0.6 Fix items with use durations of 0 being repeatedly used when use button is held down. Fixed #10150 + - 53.0.5 Add AT for BlockEntityType constructor. (#10149) + - 53.0.4 Add `c:stripped_logs` and `c:stripped_woods` tags (#10146) + - 53.0.3 Bump CoreMods and ASM (#10145) + CoreMods 5.1.13 changelog: https://gist.github.com/Jonathing/905d142447ecef670526ae27243adbba + - 53.0.2 Remove redundant rendering options (#10140) + - 53.0.1 Fix pause menu having a black background, reverts PR #10115 + - 53.0.0 1.21.3 update + +52.0 +==== + - 52.0.22 Add `c:foods/pie` tag (#10135) + Replaces `forge:foods/pie`, which is now deprecated. + - 52.0.21 Fix back-compat with legacy `forge:` tags (#10126) + - 52.0.20 Implement the de-facto common tags, add many new Forge tags (#9955) + https://forums.minecraftforge.net/topic/152815-common-tags-in-forge/ + - 52.0.19 Patch BlockEntity.java to use getType Method (#10124) + - 52.0.18 Fix and cleanup RuntimeDistCleaner + - 52.0.17 Sync component registry ids + Fix deprecation typo + Bump ModLauncher (better stack traces) + Set Automatic-Module-Name + - 52.0.16 Fix layering of translucent sprites being broken by re-adding blur call Mojang removed (#10115) + - 52.0.15 Cleanup length and size checks (#10108) + - 52.0.14 Update vulnerable `eclipse` dependency (#10109) + - 52.0.13 Add and fire SystemMessageReceivedEvent + Replaces ClientChatReceivedEvent.System which was not fired due to Mojang changing ChatType to a registry. + - 52.0.12 Fix highlighted item tooltip rendering twice. Closes #10112 + - 52.0.11 Fix Network hooks not being initialized on GameTestServer (#10081) + Add rudimentary custom networking tests. + - 52.0.10 Fix inverted logic in TagEmptyCondition (#10069) + - 52.0.9 [1.21.1] Optionally supply `FMLJavaModLoadingContext` as a param to mod constructors (#10074) + Also made `FMLJavaModLoadingContext` extend `ModLoadingContext`. See the PR description for example usage. + - 52.0.8 Fix issues with `QuadBakingVertexConsumer` and Forge's OBJ loader (#10065) + - 52.0.7 Fire `OnDatapackSyncEvent` when a player joins a server (#10076) + - 52.0.6 Add a few Method Helpers onto ResourceKey to make getting Data Driven Entries Simpler (#10071) + - 52.0.5 Fix network channels not initializing during server transfers. Closes #10067 + - 52.0.4 [1.21.1] ModLoading cleanup and optimisations (#10052) + - 52.0.3 Properly ignore unknown mod files (#10063) + - 52.0.2 Add level access to Item.TooltipContext if available. + - 52.0.1 Load mods that declare explicit 1.21 compatibility as 1.21.1 is a minor bugfix. + - 52.0.0 1.21.1 + +51.0 +==== + - 51.0.33 Removed unneeded boat patch related to MC-119811 (#10061) + - 51.0.32 Fix network sync of custom datapack registries. + Add gametest to verify that it functions. + - 51.0.31 Add a way to render tooltips from Formatted text and TooltipComponents elements (#10056) + - 51.0.30 Fix custom creative tabs with search listing all items instead of just their own. + - 51.0.29 Patch CropBlock to use instanceOf FarmBlock check instead of hard coding to Blocks.FARMLAND (#10044) + - 51.0.28 Fix ItemStack sensitive getDefaultAttributeModifiers not being called. + - 51.0.27 Add missed @user_jvm_args.txt to run.bat + - 51.0.26 Fix `onPlaceItemIntoWorld` always resetting item stack when in creative mode (#10047) + - 51.0.25 Fix matrix stack translations for `RenderHighlightEvent` (#10050) + - 51.0.24 Fix Global Loot Modifier deserialization not having registry access. Closes #10042 and #10043 + - 51.0.23 Bump Mixin to 0.8.7 and allocate more ram to java compile tasks. + - 51.0.22 Use the new `fire()` and Result#isAllowed/isDenied/isDefault methods from EventBus (#10028) + - 51.0.21 Some build cleanup + - 51.0.20 Make HangingSignBlockEntity useable with custom BlockEntityTypes. #10038 + - 51.0.19 Send last PoseStack pos to RenderLevelStageEvent AFTER_PARTICLES stage. Fixes #10031 + - 51.0.18 Fix compile errors in MDK (#10029) + - 51.0.17 Fix converting dirt to mud consumes whole bottle (not just emptying) Closes #10027 + - 51.0.16 Add support for named sub-caps + - 51.0.15 Fix conditional checking swallowing decoding errors when loading registry entries from datapacks. Fixes #9995 + - 51.0.14 Apply license headers + - 51.0.13 Some code cleanup in ModInfo/ModFileInfo to use less streams and make things easier to debug. + - 51.0.12 Bump NightConfig to 3.7.3, to fix toml sub-configs being completely broken. Fixes #10015 + - 51.0.11 Make ForgeSpawnEgg assume color is opaque if alpha is set to 0. + Fixes "invisible" spawn eggs by default, but still allows modders to specify partial transparency. + - 51.0.10 Fixed perspective rendering in SeparateTransformsModel (#10014) + - 51.0.9 Fix missed PartEntity patch in Player.attack (#10011) + - 51.0.8 Choose default JarJar mod file type based on parent JAR Closes #9939 + - 51.0.7 Fixed falling block entities not rendering as moving blocks (#10006) + - 51.0.6 Bump Night Config, Should fix #9122 + - 51.0.5 Fix ClientTickEvent not firing properly. + - 51.0.4 Change tick event to have pre/post classes (#9890) + - 51.0.3 Fix Bogged and Wolf armor not being shearable by custom shears. Closes #10005 + - 51.0.2 Set team city branch + - 51.0.1 Remove Non-HolderLookup methods from INBTSerializeable and mark it as deprecated in favor of using Vanilla's new Component system. Closes #9998 + - 51.0.0 1.21 Update + Co-authored-by: RealMangoRage <64402114+RealMangorage@users.noreply.github.com> + Co-authored-by: Daniel Norris + Co-authored-by: Ven + +50.1 +==== + - 50.1.3 Cleanup FML Bindings (#10004) + - 50.1.2 Fix NPE when calling ForgeHooks.getDefaultCreatorModId(ItemStack) on Spawn Eggs. Closes #10002 + - 50.1.1 Fix boat travel distance being incorrect. Closes #9997 + - 50.1.0 1.20.6 RB 1 + https://forums.minecraftforge.net/topic/149458-forge-501-minecraft-1206/ + +50.0 +==== + - 50.0.37 Fix minor typo in MDK build.gradle + - 50.0.36 Fire EntityInteractSpecific on server side. Closes #9984 + - 50.0.35 Unlock wrapped registries when firing register events. + - 50.0.34 Update Bootstrap to improve the Java version check error message (#9990) + - 50.0.33 Minor cleanup to ModListScreen and VersionChecker (#9988) + - 50.0.32 Prevent the `@OnlyIn` being misused on `@EventBusSubscriber` and `@Mod` annotated classes (#9891) + - 50.0.31 Fix CustomizeGuiOverlayEvent.DebugText and CustomizeGuiOverlayEvent.Chat not being fired. (#9982) + - 50.0.30 Actually fix creative tab count, IDE didn't save the file before regenning patches. + - 50.0.29 Move Creative Inventory page count to fix issue with partially transparent tooltips. Closes #9983 + - 50.0.28 Make OpenContainer and SpawnEntity packets process on main game thread. + - 50.0.27 Add File.exists check to ConfigFileTypeHandler. Closes #9976 + - 50.0.26 Fix crash when reloading a world that uses custom placed features. Closes #9979 + - 50.0.25 Fix NPE in HurtByTargetGoal when mods set targets to null. Closes #7853 + - 50.0.24 Fix RenderHandEvent firing with incorrect hand and item for offhand items. (#9977) + - 50.0.23 Fix screen layering and re-add the test. (#9978) + - 50.0.22 Add GatherComponentsEvent (#9944) + - 50.0.21 Fix powered rails not propogating correctly. + - 50.0.20 Remove ICustomPacket and add PayloadChannel. (#9972) + New PayloadChannel that uses the vanilla payload Type for packet distinction + Implement the minecraft:register/unregister channels using the new PayloadChannel + New generic channel builder function allowing people to implement channels however they want. + - 50.0.19 Implement entity aware armor model and texture hooks. Closes #9960 + - 50.0.18 Fix finalizeSpawn's return value not being used correctly. Closes #9964 + - 50.0.17 Fix Biome patch change that caused our field redirect coremod to not function correctly. + - 50.0.16 Make RegistryObject.getHolder lazy, Should help cases where vanilla registries use holders from other vanilla registries. Closes #9961 + - 50.0.15 Ignore jar files in the mods folder that are not Forge mods. Closes #9968 + - 50.0.14 Fix canceling MobSpawnEvent.FinalizeSpawn causing a NPE closes #9971 + - 50.0.13 Fix potion brewing having arguments reversed. Closes #9970 + - 50.0.12 Fix Melons/Pumpkins not growing correctly. + - 50.0.11 Some patch cleanup (#9951) + - 50.0.10 Filter paths discovered by ServiceProvider in ClasspathLocator. Closes #9899 + - 50.0.9 Update SimpleChannel to make StreamCodecs easier (#9959) + Rework networking so that RegistryFriendlyByteBuf is useable for modders + Simple support for StreamCodec in SimpleChannel + Codecify all Forge packets + Make simpler builder pattern for SimpleChannel. Will eventually deprecate the old MessageBuilder as it's verbose and poorly written. + Co-authored-by: MrCrayfish <4958241+MrCrayfish@users.noreply.github.com> + Co-authored-by: Paint_Ninja + - 50.0.8 Fix shields not working correctly. Fixes #9966 + - 50.0.7 Fix RenderTarget stencil patch location. Fixes #9965 + - 50.0.6 Add ModelLayers patch back (#9962) + - 50.0.5 Fix canApplyAtEnchantingTable null pointer, Closes #9956 + Bump SecureModules for package info and multi-release jar fixes. + - 50.0.4 Remove zombie chance config options (#9950) + - 50.0.3 Remove deprecated compressLanIPv6Addresses config option (#9949) + LAN IPv6 addresses are always compressed these days, so this config option is redundant + - 50.0.2 Fix custom payloads not being handled on the server in the game state. Closes #9948 + Fix villagers not opening trade guis. Closes #9946 + - 50.0.1 Fix MDK by bumping FG and disabling reobf tasks + Fix LAN server IPs being duplicated + Fix connecting to vanilla servers due to misapplied patch. + - 50.0.0 1.20.6 Initial Update + New Decompiler + Runtime Official mappings + ItemStacks arnt Capability providers anymore, use Vanilla's system. + Co-authored-by: RealMangoRage <64402114+RealMangorage@users.noreply.github.com> + Co-authored-by: Paint_Ninja + +49.0 +==== + - 49.0.49 Make non-Forge mods.toml detection more robust (#9935) + - 49.0.48 Fix early window crash when parsing some forms of options.txt (#9933) + - 49.0.47 Fix edge-case regression with single-jar multiloader mods (#9931) + - 49.0.46 Add ClientPauseChangeEvent (#9905) + - 49.0.45 Improve mod loading errors (#9870) + - 49.0.44 Early display fixes/workarounds for buggy drivers (#9921) + - 49.0.43 Prevent registering null tiers (#9895) + Makes it easier to identify broken mods, as it moves the crash to when the broken mod in question registers the tier, rather than when any mod tries getting the tier. + - 49.0.42 Add helper method to `OnDatapackSyncEvent` (#9901) + Co-authored-by: blockingHD <9372035+blockinghd@users.noreply.github.com> + - 49.0.41 Fix NPE when acceptableValues in defineInList() does not allow nulls, fixes #9300 (#9903) + - 49.0.40 [1.20.x] Add ByteValue, ShortValue and FloatValue to ForgeConfigSpec, cleanup code (#9902) + - 49.0.39 Add Leaves method to ModelProvider.java (#9887) + - 49.0.38 Bump bootstrap + - 49.0.37 Fix level data not loading from existing worlds. Whole system needs a re-write. + - 49.0.36 Fix modlist size + - 49.0.35 Bump Bootstrap + - 49.0.34 Optimize Entity capabilities a bit by reordering conditions (#9886) + - 49.0.33 [1.20.x] Make common config screen registration tasks easier (#9884) + - 49.0.32 [1.20.4] Add CPU usage config option to early window, hide it by default (#9866) + - 49.0.31 Fix DatapackBuiltinEntriesProvider issues with forge registries, Fixes #9874 + - 49.0.30 Readded DatapackBuiltinEntriesProvider (#9848) + - 49.0.29 Fix slightly offset mods screen link positioning (#9860) + Co-authored-by: Dennis C <11262040+XFactHD@users.noreply.github.com> + - 49.0.28 Fix DNS SRV record lookup not working by hacking the module system. Closes #9846 + - 49.0.27 Add null check to DimensionDataStorage. Fixes #9859 + - 49.0.26 Fix cases where LivingConversionEvents were not fired for vanilla conversions. Closes #9850 + - 49.0.25 Update licenser plugin, and re-run it. Closes #9855 + - 49.0.24 Fix background music looping when it shouldn't + - 49.0.23 Fix Criterion Test Mod + - 49.0.22 Improve help text on server Java check failure + - 49.0.21 [1.20.4] Restore the option of server run scripts (#9849) + Executable server jar is still a thing, but the run scripts are restored as an option for those that prefer it. + - 49.0.20 [1.20.x] More buildscript clean-up (#9845) + - 49.0.19 Fixed Spelling error in credits.txt (#9694) + - 49.0.18 Bump JarJar to fix more issues with UnionFileSystem assumptions. + - 49.0.17 Criterion test mod + unit test (#9744) + - 49.0.16 Fix launcher version name missing - between `forge` and the version. Closes #9843 + - 49.0.15 Bump JarJar and SecureModule to fix issue with jars containing [] in their name. Closes #9842 + - 49.0.14 Only add sorted/deduplicated mods to the classpath. + Fixes some mods causing the Forge error displays to break. Closes #9833 + - 49.0.13 Improve server panel compatibility (#9836) + - 49.0.12 Make common DisplayTest registration tasks easier (#9822) + - 49.0.11 Cleanup Explosion patch but keep bin compatibility by using asm hacks. Closes #9817 + - 49.0.10 Bump SecureModules, Closes #9820 + - 49.0.9 Support pack overlay system. Closes #9818 + - 49.0.8 Fix Server bundle + - 49.0.7 Optimise ForgeConfigSpec and make Range public (#9810) + - 49.0.6 Add `clientSideOnly` feature to mods.toml (#9804) + - 49.0.5 Add impl. of `IModFileInfo#showAsDataPack` (#9802) + - 49.0.4 Get rid of LibraryFinder + - 49.0.3 1.20.4 - Minor bug fix from Mojang + - 49.0.2 Fix java version check in bootstrap shim + - 49.0.1 1.20.3 Initial Update + https://forums.minecraftforge.net/topic/139822-forge-490-minecraft-1203/ + - 49.0.0 Revive executable jars for the dedicated server + This has a minor change to development time build scripts. So developers, check the MDK + +48.1 +==== + - 48.1.0 1.20.2 RB 1 - https://forums.minecraftforge.net/topic/139824-forge-481-minecraft-1202/ + +48.0 +==== + - 48.0.49 Implemented ClientPauseEvent/Hook (#9782) + - 48.0.48 Datagen addOptionalTag/s methods that allow passing the TagKey itself instead of passing the location (#9807) + - 48.0.47 Deprecate EntityRenderersEvent.AddLayers functions that hard case to LivingEntityRenderers as the backing maps do not guarantee that type. Closes #9683 + - 48.0.46 Fix TagLoader error not printing tag name correctly. Closes #9693 + - 48.0.45 Fix LoadingErrorScreen inner headers are not centered. Closes #9687 + - 48.0.44 Rework KeyModifiers system to properly allow keybinds to be triggered when multiple modifiers are pressed. + Fix setting keybinds whel using keyboard inputs to select the menu. Closes #9793 + - 48.0.43 Fix KeyModifiers not being properly taken into account. Closes #9806 + - 48.0.42 Don't turn off VSync when rendering from Minecraft context (#9800) + Co-authored-by: embeddedt <42941056+embeddedt@users.noreply.github.com> + - 48.0.41 [1.20.x] Fix rare crash with early display window, fixes #9673 (#9798) + Co-Authored-By: embeddedt <42941056+embeddedt@users.noreply.github.com> + - 48.0.40 Move Chunk Watch/Unwatch events to fire after sync packets have been sent to the client (#9790) + This makes sure that modders who send extra chunk data will have clients who know about the chunk. + - 48.0.39 Add more sanitization to the ChannelListManager because other projects like to impose arbitrary critical restrictions. Closes #9789 #9772 + - 48.0.38 Fix tag loading being unordered. Closes #9774 + - 48.0.37 Fix texture UV values for obj models. Closes #9737 (#9767) + - 48.0.36 Gradle 8.4 (#9778) + - 48.0.35 Make Ingredient check for invalidation on getItems(), invalidate ingredients on tags update (#9688) + - 48.0.34 Improve mod description formatting in mods screen (#9768) + - 48.0.33 Fix lowcode implementation version, now that it's actually labeling the correct package. + - 48.0.32 Buildscript cleanup and organization. + Updated to use newer libraries that reduce the command line arguments needed to run the game. + Fix issues in the SecureModule's classloader that caused resources to not be seen when they are on parent module layers. + - 48.0.31 Fix @GameTestGenerator not functioning correctly. Closes #9748 + - 48.0.30 Optimise registries by using fastutils collections to minimize boxing. (#9749) + - 48.0.29 Minor MDK changes (#9750) + - 48.0.28 Improve mod loading error message for errors inside mod constructors (#9751) + - 48.0.27 Add a CrashReportAnalyser that tries to identify the mod that crashed the game (#9732) + - 48.0.26 Fix potential threading issue when registering CriteriaTriggers. Closes #9745 + - 48.0.25 Move to a cache based crowdin solution instead of hitting the api every build. + - 48.0.24 Fix Melon/Pumpkin stems having wrong plat type causing them to remain after trampling farmland. Fixes #9495 + - 48.0.23 Fix loot tables not having their ids set. + - 48.0.22 Make horses and llama's fire LivingFallEvent. Fixes #9743 + - 48.0.21 Fix advancement screen being too dark. Fixes #9727 + - 48.0.20 Fix ConditionalCodec having an inverted test. Closes #9742 + Remove clean project on CI. + Bump FG version to fix transitive issue on module path. + - 48.0.19 More buildscript work + Fixed ignoreList for client and server. + Lazy configured a few more tasks + Fixed early loading screen hardcoded names.. why? + - 48.0.18 Bump guava to module path for jimfs. Fixes dedicated server. + - 48.0.17 Revive custom ingredient types. + - 48.0.16 Revive ConditionalRecipe and ConditionalAdvancement. + Also directly add conditional support to all vanilla recipe data generators. + - 48.0.15 Rewrite our GameTest hooks to be sane. + Add game test to GlobalLootModifierTest which validates the smelting modifiers. + Removed FakePlayer system, it's broken and needs a major rewrite. + - 48.0.14 Cleanup FMLLoader and Launch Handlers. + Cleanup some of the build.gradle + Start work on restructuring test mods. They are now treated as their own jars, as well as having their mods.toml auto-generated. No more mods.toml conflicts! + Add pattern matching support to Data run modlist. + - 48.0.13 Fix Slot Index for Inventory Ticking Items (#9736) + - 48.0.12 Make default Entity.getAddPacket automatically use Forge's enhanced spawn packet if nessasary. + This spawn packet needs to be re-designed, it is effectively only there to hook into creating the new entity instance. This will be re-evaluated during the cleanup in 1.21+ + - 48.0.11 Optimise path filter in mod loading (#9710) + Co-authored-by: embeddedt <42941056+embeddedt@users.noreply.github.com> + - 48.0.10 Fix ignitedByLava making blocks permanently flammable (#9735) Fixes #9730 + - 48.0.9 Some BackgroundScanHandler code cleanup. Closes #9713 + - 48.0.8 Fix missed patch causing new onInventoryTick method to not be called. + - 48.0.7 Fixed PlayerDestroyItemEvent not triggering for Fishing Rods (#9729) + - 48.0.6 Fix migration error causing nether and end portals to not function properly. + - 48.0.5 Optimise `ForgeRegistry#validateContent` by removing optimization that ModLauncher broke. (#9715) + - 48.0.4 Fix double message encoding in `Channel#toVanillaPacket` #9721 (#9722) + Fix OpenContainer message not resetting reader index of additional data. + - 48.0.3 Make CriteriaTriggers#register public again. Closes #9723 + - 48.0.2 Fix Hunger bar rendering incorrectly. Fixes #9725 + - 48.0.1 Send known channels to the server when they send us theirs. + - 48.0.0 1.20.2 Release + +47.999 +====== + - 47.999.12 Enable ForgeLootTableProvider. + - 47.999.11 Global Loot Modifiers + - 47.999.10 Move old tests. + - 47.999.9 1.20.2-rc2 + - 47.999.8 1.20.2-rc1 + - 47.999.7 1.20.2-pre4 + - 47.999.6 1.20.2-pre3 + - 47.999.5 Use official mappings for in-repo patches, will be converted to SRG during build. + - 47.999.4 1.20.2-pre2 + - 47.999.3 Fix debug overlay text not rendering. + - 47.999.2 Make SimpleChannel use a varInt for the discriminator allowing essentially unlimited packets. + - 47.999.1 Rewrite networking. + - 47.999.0 1.20.2-pre1 + diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..fa194dc --- /dev/null +++ b/gradle.properties @@ -0,0 +1,66 @@ +# 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=-Xmx5G +org.gradle.daemon=false + +# In the case that Gradle needs to fork to recompile, this will set the memory for that process. +systemProp.net.minecraftforge.gradle.repo.recompile.fork=true +systemProp.net.minecraftforge.gradle.repo.recompile.fork.args=-Xmx5G + +# Opts-out of ForgeGradle automatically adding mavenCentral(), Forge's maven and MC libs maven to the repositories block +systemProp.net.minecraftforge.gradle.repo.attach=false + + +## Environment Properties + +# The Minecraft version must agree with the Forge version to get a valid artifact +minecraft_version=1.21.4 +# The Minecraft version range can use any release version of Minecraft as bounds. +# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly +# as they do not follow standard versioning conventions. +minecraft_version_range=[1.21.4,1.22) +# The Forge version must agree with the Minecraft version to get a valid artifact +forge_version=54.1.6 +# The Forge version range can use any version of Forge as bounds or match the loader version range +forge_version_range=[0,) +# The loader version range can only use the major version of Forge/FML as bounds +loader_version_range=[0,) +# The mapping channel to use for mappings. +# The default set of supported mapping channels are ["official", "snapshot", "snapshot_nodoc", "stable", "stable_nodoc"]. +# Additional mapping channels can be registered through the "channelProviders" extension in a Gradle plugin. +# +# | Channel | Version | | +# |-----------|----------------------|--------------------------------------------------------------------------------| +# | official | MCVersion | Official field/method names from Mojang mapping files | +# | parchment | YYYY.MM.DD-MCVersion | Open community-sourced parameter names and javadocs layered on top of official | +# +# You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. +# See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md +# +# Parchment is an unofficial project maintained by ParchmentMC, separate from Minecraft Forge. +# Additional setup is needed to use their mappings, see https://parchmentmc.org/docs/getting-started +mapping_channel=official +# The mapping version to query from the mapping channel. +# This must match the format required by the mapping channel. +mapping_version=1.21.4 + + +## Mod Properties + +# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63} +# Must match the String constant located in the main mod class annotated with @Mod. +mod_id=blacksugarmod +# The human-readable display name for the mod. +mod_name=BlackSugar Mod +# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. +mod_license=All Rights Reserved +# The mod version. See https://semver.org/ +mod_version=0.0.1 +# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. +# This should match the base package used for the mod sources. +# See https://maven.apache.org/guides/mini/guide-naming-conventions.html +mod_group_id=com.spdis.blacksugarmod +# The authors of the mod. This is a simple text string that is used for display purposes in the mod list. +mod_authors=SPDIS +# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. +mod_description=???????????????? \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..e6441136f3d4ba8a0da8d277868979cfbc8ad796 GIT binary patch literal 43453 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 yu?e%!_ptzGB|8GrCfu%p?(_ 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
NnX)EH+Nua)3Y(c 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 '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..25da30d --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@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="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..1870480 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,13 @@ +pluginManagement { + repositories { + gradlePluginPortal() + maven { + name = 'MinecraftForge' + url = 'https://maven.minecraftforge.net/' + } + } +} + +plugins { + id 'org.gradle.toolchains.foojay-resolver-convention' version '0.10.0' +} diff --git a/src/main/java/com/spdis/blacksugarmod/BlackSugarModMain.java b/src/main/java/com/spdis/blacksugarmod/BlackSugarModMain.java new file mode 100644 index 0000000..0b75fa9 --- /dev/null +++ b/src/main/java/com/spdis/blacksugarmod/BlackSugarModMain.java @@ -0,0 +1,307 @@ +package com.spdis.blacksugarmod; + +import com.mojang.logging.LogUtils; +import net.minecraft.client.Minecraft; +import net.minecraft.core.registries.Registries; +import net.minecraft.world.effect.MobEffectInstance; +import net.minecraft.world.effect.MobEffects; +import net.minecraft.world.food.FoodProperties; +import net.minecraft.world.item.BlockItem; +import net.minecraft.world.item.CreativeModeTab; +import net.minecraft.world.item.CreativeModeTabs; +import net.minecraft.world.item.Item; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.Blocks; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.material.MapColor; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.event.BuildCreativeModeTabContentsEvent; +import net.minecraftforge.event.server.ServerStartingEvent; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.config.ModConfig; +import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; +import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; +import org.slf4j.Logger; + +// 这里的值应该与 META-INF/mods.toml 文件中的条目匹配 +@Mod(BlackSugarModMain.MODID) +public class BlackSugarModMain { + // 在一个公共位置定义模组ID,供所有地方引用 + public static final String MODID = "blacksugarmod"; + // 直接引用slf4j日志记录器 + private static final Logger LOGGER = LogUtils.getLogger(); + // 创建一个延迟注册器来保存方块,所有方块都将在"blacksugarmod"命名空间下注册 + public static final DeferredRegister BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, MODID); + // 创建一个延迟注册器来保存物品,所有物品都将在"blacksugarmod"命名空间下注册 + public static final DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, MODID); + // 创建一个延迟注册器来保存创造模式标签页,所有标签页都将在"blacksugarmod"命名空间下注册 + public static final DeferredRegister CREATIVE_MODE_TABS = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, MODID); + + // 创建黑糖物品,ID为"blacksugarmod:black_sugar"// 黑糖物品 + public static final RegistryObject BLACK_SUGAR = ITEMS.register("black_sugar", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("black_sugar")) + ) + ); + + // 面团物品 + public static final RegistryObject DOUGH = ITEMS.register("dough", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("dough")) + ) + ); + + // 黑糖团子物品,可食用 + public static final RegistryObject BLACK_SUGAR_DUMPLING = ITEMS.register("black_sugar_dumpling", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("black_sugar_dumpling")) + .food(new FoodProperties.Builder() + .alwaysEdible() + .nutrition(4) + .saturationModifier(9.6f) + .build() + ) + ) + ); + + // 脆香bro物品,可食用 + public static final RegistryObject CRISPY_BRO = ITEMS.register("crispy_bro", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("crispy_bro")) + .food(new FoodProperties.Builder() + .alwaysEdible() + .nutrition(6) + .saturationModifier(8.0f) + .build() + ) + ) + ); + + // 食用油物品 + public static final RegistryObject COOKING_OIL = ITEMS.register("cooking_oil", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("cooking_oil")) + ) + ); + + // 坚不可摧的海星物品 + public static final RegistryObject INDESTRUCTIBLE_STARFISH = ITEMS.register("indestructible_starfish", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("indestructible_starfish")) + ) + ); + + // 串海星物品 + public static final RegistryObject STARFISH_SKEWER = ITEMS.register("starfish_skewer", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("starfish_skewer")) + ) + ); + + // 棉花糖物品 + public static final RegistryObject MARSHMALLOW = ITEMS.register("marshmallow", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("marshmallow")) + ) + ); + + // 烤棉花糖物品,可食用 + public static final RegistryObject ROASTED_MARSHMALLOW = ITEMS.register("roasted_marshmallow", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("roasted_marshmallow")) + .food(new FoodProperties.Builder() + .alwaysEdible() + .nutrition(3) + .saturationModifier(5.0f) + .build() + ) + ) + ); + + // 致癌的棉花糖物品,可食用 + public static final RegistryObject CARCINOGENIC_MARSHMALLOW = ITEMS.register("carcinogenic_marshmallow", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("carcinogenic_marshmallow")) + .food(new FoodProperties.Builder() + .alwaysEdible() + .nutrition(2) + .saturationModifier(3.0f) + .build() + ) + ) + ); + + // 萨卡班甲鱼物品 + public static final RegistryObject SAKABAN_TURTLE = ITEMS.register("sakaban_turtle", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("sakaban_turtle")) + ) + ); + + // 葱花物品 + public static final RegistryObject SCALLION = ITEMS.register("scallion", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("scallion")) + ) + ); + + // 腌制的甲鱼物品 + public static final RegistryObject PICKLED_TURTLE = ITEMS.register("pickled_turtle", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("pickled_turtle")) + ) + ); + + // 一只觉得嘴里淡淡的小猫咪物品 + public static final RegistryObject BLAND_KITTEN = ITEMS.register("bland_kitten", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("bland_kitten")) + ) + ); + + // 一只心怀歹念的小猫咪物品,可食用 + public static final RegistryObject MALICIOUS_KITTEN = ITEMS.register("malicious_kitten", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("malicious_kitten")) + .food(new FoodProperties.Builder() + .alwaysEdible() + .nutrition(8) + .saturationModifier(12.0f) + .build() + ) + ) + ); + + // 香喷喷的串海星物品,可食用 + public static final RegistryObject FRAGRANT_STARFISH_SKEWER = ITEMS.register("fragrant_starfish_skewer", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("fragrant_starfish_skewer")) + .food(new FoodProperties.Builder() + .alwaysEdible() + .nutrition(7) + .saturationModifier(10.0f) + .build() + ) + ) + ); + + // 一锅牢菜物品 + public static final RegistryObject POT_OF_PRISON_VEGETABLES = ITEMS.register("pot_of_prison_vegetables", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("pot_of_prison_vegetables")) + ) + ); + + // 闷牢菜物品,可食用 + public static final RegistryObject BRAISED_PRISON_VEGETABLES = ITEMS.register("braised_prison_vegetables", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("braised_prison_vegetables")) + .food(new FoodProperties.Builder() + .alwaysEdible() + .nutrition(5) + .saturationModifier(7.0f) + .build() + ) + ) + ); + + // 碳烤甲鱼物品,可食用 + public static final RegistryObject CHARCOAL_GRILLED_TURTLE = ITEMS.register("charcoal_grilled_turtle", + () -> new Item(new Item.Properties() + .setId(ITEMS.key("charcoal_grilled_turtle")) + .food(new FoodProperties.Builder() + .alwaysEdible() + .nutrition(9) + .saturationModifier(14.0f) + .build() + ) + ) + ); + + public BlackSugarModMain(FMLJavaModLoadingContext context) { + IEventBus modEventBus = context.getModEventBus(); + + // 为模组加载注册commonSetup方法 + modEventBus.addListener(this::commonSetup); + // 将延迟注册器注册到模组事件总线,以便方块得到注册 + BLOCKS.register(modEventBus); + // 将延迟注册器注册到模组事件总线,以便物品得到注册 + ITEMS.register(modEventBus); + // 将延迟注册器注册到模组事件总线,以便标签页得到注册 + CREATIVE_MODE_TABS.register(modEventBus); + + // 为我们感兴趣的服务器和其他游戏事件注册自己 + MinecraftForge.EVENT_BUS.register(this); + + // 将物品注册到创造模式标签页 + modEventBus.addListener(this::addCreative); + + // 注册我们模组的ForgeConfigSpec,以便Forge可以为我们创建和加载配置文件 + context.registerConfig(ModConfig.Type.COMMON, Config.SPEC); + } + + // 将示例方块物品添加到建筑方块标签页 + private void addCreative(BuildCreativeModeTabContentsEvent event) { + // 将黑糖物品添加到食物和饮品标签页 + if (event.getTabKey() == CreativeModeTabs.FOOD_AND_DRINKS) { + event.accept(BLACK_SUGAR); + event.accept(DOUGH); + event.accept(BLACK_SUGAR_DUMPLING); + event.accept(CRISPY_BRO); + event.accept(COOKING_OIL); + event.accept(INDESTRUCTIBLE_STARFISH); + event.accept(STARFISH_SKEWER); + event.accept(MARSHMALLOW); + event.accept(ROASTED_MARSHMALLOW); + event.accept(CARCINOGENIC_MARSHMALLOW); + event.accept(SAKABAN_TURTLE); + event.accept(SCALLION); + event.accept(PICKLED_TURTLE); + event.accept(BLAND_KITTEN); + event.accept(MALICIOUS_KITTEN); + event.accept(FRAGRANT_STARFISH_SKEWER); + event.accept(POT_OF_PRISON_VEGETABLES); + event.accept(BRAISED_PRISON_VEGETABLES); + event.accept(CHARCOAL_GRILLED_TURTLE); + } + } + + private void commonSetup(final FMLCommonSetupEvent event) { + // 一些通用设置代码 + LOGGER.info("HELLO FROM COMMON SETUP"); + + if (Config.logDirtBlock) + LOGGER.info("DIRT BLOCK >> {}", ForgeRegistries.BLOCKS.getKey(Blocks.DIRT)); + + LOGGER.info(Config.magicNumberIntroduction + Config.magicNumber); + + Config.items.forEach((item) -> LOGGER.info("ITEM >> {}", item.toString())); + } + + + + // 你可以使用SubscribeEvent并让事件总线发现要调用的方法 + @SubscribeEvent + public void onServerStarting(ServerStartingEvent event) { + // 当服务器启动时执行某些操作 + LOGGER.info("HELLO from server starting"); + } + + // 你可以使用EventBusSubscriber来自动注册类中所有带有@SubscribeEvent注解的静态方法 + @Mod.EventBusSubscriber(modid = MODID, bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) + public static class ClientModEvents { + @SubscribeEvent + public static void onClientSetup(FMLClientSetupEvent event) { + // 一些客户端设置代码 + LOGGER.info("HELLO FROM CLIENT SETUP"); + LOGGER.info("MINECRAFT NAME >> {}", Minecraft.getInstance().getUser().getName()); + } + } +} diff --git a/src/main/java/com/spdis/blacksugarmod/Config.java b/src/main/java/com/spdis/blacksugarmod/Config.java new file mode 100644 index 0000000..5a1569f --- /dev/null +++ b/src/main/java/com/spdis/blacksugarmod/Config.java @@ -0,0 +1,60 @@ +package com.spdis.blacksugarmod; + +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.Item; +import net.minecraftforge.common.ForgeConfigSpec; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.event.config.ModConfigEvent; +import net.minecraftforge.registries.ForgeRegistries; + +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; + +// An example config class. This is not required, but it's a good idea to have one to keep your config organized. +// Demonstrates how to use Forge's config APIs +@Mod.EventBusSubscriber(modid = BlackSugarModMain.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) +public class Config { + private static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder(); + + private static final ForgeConfigSpec.BooleanValue LOG_DIRT_BLOCK = BUILDER + .comment("Whether to log the dirt block on common setup") + .define("logDirtBlock", true); + + private static final ForgeConfigSpec.IntValue MAGIC_NUMBER = BUILDER + .comment("A magic number") + .defineInRange("magicNumber", 42, 0, Integer.MAX_VALUE); + + public static final ForgeConfigSpec.ConfigValue MAGIC_NUMBER_INTRODUCTION = BUILDER + .comment("What you want the introduction message to be for the magic number") + .define("magicNumberIntroduction", "The magic number is... "); + + // a list of strings that are treated as resource locations for items + private static final ForgeConfigSpec.ConfigValue> ITEM_STRINGS = BUILDER + .comment("A list of items to log on common setup.") + .defineListAllowEmpty("assets/blacksugarmod/items", List.of("minecraft:iron_ingot"), Config::validateItemName); + + static final ForgeConfigSpec SPEC = BUILDER.build(); + + public static boolean logDirtBlock; + public static int magicNumber; + public static String magicNumberIntroduction; + public static Set items; + + private static boolean validateItemName(final Object obj) { + return obj instanceof final String itemName && ForgeRegistries.ITEMS.containsKey(ResourceLocation.tryParse(itemName)); + } + + @SubscribeEvent + static void onLoad(final ModConfigEvent event) { + logDirtBlock = LOG_DIRT_BLOCK.get(); + magicNumber = MAGIC_NUMBER.get(); + magicNumberIntroduction = MAGIC_NUMBER_INTRODUCTION.get(); + + // convert the list of strings into a set of items + items = ITEM_STRINGS.get().stream() + .map(itemName -> ForgeRegistries.ITEMS.getValue(ResourceLocation.tryParse(itemName))) + .collect(Collectors.toSet()); + } +} diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml new file mode 100644 index 0000000..80795f1 --- /dev/null +++ b/src/main/resources/META-INF/mods.toml @@ -0,0 +1,73 @@ +# This is an example mods.toml file. It contains the data relating to the loading mods. +# There are several mandatory fields (#mandatory), and many more that are optional (#optional). +# The overall format is standard TOML format, v0.5.0. +# Note that there are a couple of TOML lists in this file. +# Find more information on toml format here: https://github.com/toml-lang/toml +# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml +modLoader="javafml" #mandatory +# A version range to match for said mod loader - for regular FML @Mod it will be the forge version +loaderVersion="${loader_version_range}" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. +# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. +# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. +license="${mod_license}" +# A URL to refer people to when problems occur with this mod +#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional +# If your mod is purely client-side and has no multiplayer functionality (be it dedicated servers or Open to LAN), +# set this to true, and Forge will set the correct displayTest for you and skip loading your mod on dedicated servers. +#clientSideOnly=true #optional - defaults to false if absent +# A list of mods - how many allowed here is determined by the individual mod loader +[[mods]] #mandatory +# The modid of the mod +modId="${mod_id}" #mandatory +# The version number of the mod +version="${mod_version}" #mandatory +# A display name for the mod +displayName="${mod_name}" #mandatory +# A URL to query for updates for this mod. See the JSON update specification https://docs.minecraftforge.net/en/latest/misc/updatechecker/ +#updateJSONURL="https://change.me.example.invalid/updates.json" #optional +# A URL for the "homepage" for this mod, displayed in the mod UI +#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional +# A file name (in the root of the mod JAR) containing a logo for display +#logoFile="examplemod.png" #optional +# A text field displayed in the mod UI +#credits="" #optional +# A text field displayed in the mod UI +authors="${mod_authors}" #optional +# Display Test controls the display for your mod in the server connection screen +# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod. +# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod. +# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component. +# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value. +# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself. +#displayTest="MATCH_VERSION" # if nothing is specified, MATCH_VERSION is the default when clientSideOnly=false, otherwise IGNORE_ALL_VERSION when clientSideOnly=true (#optional) + +# The description text for the mod (multi line!) (#mandatory) +description='''${mod_description}''' +# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. +[[dependencies.${mod_id}]] #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="${forge_version_range}" #mandatory + # An ordering relationship for the dependency - BEFORE or AFTER required if the dependency is not mandatory + # BEFORE - This mod is loaded BEFORE the dependency + # AFTER - This mod is loaded AFTER the dependency + ordering="NONE" + # Side this dependency is applied on - BOTH, CLIENT, or SERVER + side="BOTH" +# Here's another dependency +[[dependencies.${mod_id}]] + modId="minecraft" + mandatory=true + # This version range declares a minimum of the current minecraft version up to but not including the next major version + versionRange="${minecraft_version_range}" + ordering="NONE" + side="BOTH" + +# Features are specific properties of the game environment, that you may want to declare you require. This example declares +# that your mod requires GL version 3.2 or higher. Other features will be added. They are side aware so declaring this won't +# stop your mod loading on the server for example. +#[features.${mod_id}] +#openGLVersion="[3.2,)" diff --git a/src/main/resources/assets/blacksugarmod/items/black_sugar.json b/src/main/resources/assets/blacksugarmod/items/black_sugar.json new file mode 100644 index 0000000..d2a6bf3 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/black_sugar.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/black_sugar" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/black_sugar_dumpling.json b/src/main/resources/assets/blacksugarmod/items/black_sugar_dumpling.json new file mode 100644 index 0000000..907d05a --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/black_sugar_dumpling.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/black_sugar_dumpling" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/bland_kitten.json b/src/main/resources/assets/blacksugarmod/items/bland_kitten.json new file mode 100644 index 0000000..2d31bb6 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/bland_kitten.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/bland_kitten" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/braised_prison_vegetables.json b/src/main/resources/assets/blacksugarmod/items/braised_prison_vegetables.json new file mode 100644 index 0000000..e9cd2c2 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/braised_prison_vegetables.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/braised_prison_vegetables" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/carcinogenic_marshmallow.json b/src/main/resources/assets/blacksugarmod/items/carcinogenic_marshmallow.json new file mode 100644 index 0000000..a601ec3 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/carcinogenic_marshmallow.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/carcinogenic_marshmallow" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/charcoal_grilled_turtle.json b/src/main/resources/assets/blacksugarmod/items/charcoal_grilled_turtle.json new file mode 100644 index 0000000..c8b2a85 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/charcoal_grilled_turtle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/charcoal_grilled_turtle" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/cooking_oil.json b/src/main/resources/assets/blacksugarmod/items/cooking_oil.json new file mode 100644 index 0000000..91596d6 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/cooking_oil.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/cooking_oil" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/crispy_bro.json b/src/main/resources/assets/blacksugarmod/items/crispy_bro.json new file mode 100644 index 0000000..216e8cf --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/crispy_bro.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/crispy_bro" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/dough.json b/src/main/resources/assets/blacksugarmod/items/dough.json new file mode 100644 index 0000000..350649e --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/dough.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/dough" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/fragrant_starfish_skewer.json b/src/main/resources/assets/blacksugarmod/items/fragrant_starfish_skewer.json new file mode 100644 index 0000000..3a55226 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/fragrant_starfish_skewer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/fragrant_starfish_skewer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/indestructible_starfish.json b/src/main/resources/assets/blacksugarmod/items/indestructible_starfish.json new file mode 100644 index 0000000..ce3073e --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/indestructible_starfish.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/indestructible_starfish" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/malicious_kitten.json b/src/main/resources/assets/blacksugarmod/items/malicious_kitten.json new file mode 100644 index 0000000..4c5c092 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/malicious_kitten.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/malicious_kitten" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/marshmallow.json b/src/main/resources/assets/blacksugarmod/items/marshmallow.json new file mode 100644 index 0000000..6d9414f --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/marshmallow.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/marshmallow" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/pickled_turtle.json b/src/main/resources/assets/blacksugarmod/items/pickled_turtle.json new file mode 100644 index 0000000..fa0d482 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/pickled_turtle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/pickled_turtle" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/pot_of_prison_vegetables.json b/src/main/resources/assets/blacksugarmod/items/pot_of_prison_vegetables.json new file mode 100644 index 0000000..ae824e1 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/pot_of_prison_vegetables.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/pot_of_prison_vegetables" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/roasted_marshmallow.json b/src/main/resources/assets/blacksugarmod/items/roasted_marshmallow.json new file mode 100644 index 0000000..ec6f90f --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/roasted_marshmallow.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/roasted_marshmallow" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/sakaban_turtle.json b/src/main/resources/assets/blacksugarmod/items/sakaban_turtle.json new file mode 100644 index 0000000..84b5ac2 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/sakaban_turtle.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/sakaban_turtle" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/scallion.json b/src/main/resources/assets/blacksugarmod/items/scallion.json new file mode 100644 index 0000000..d636f73 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/scallion.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/scallion" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/items/starfish_skewer.json b/src/main/resources/assets/blacksugarmod/items/starfish_skewer.json new file mode 100644 index 0000000..e4c2682 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/items/starfish_skewer.json @@ -0,0 +1,6 @@ +{ + "model": { + "type": "minecraft:model", + "model": "blacksugarmod:item/starfish_skewer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/lang/en_us.json b/src/main/resources/assets/blacksugarmod/lang/en_us.json new file mode 100644 index 0000000..1801a39 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/lang/en_us.json @@ -0,0 +1,5 @@ +{ + "item.blacksugarmod.black_sugar": "Black Sugar", + "item.blacksugarmod.dough": "Dough", + "item.blacksugarmod.black_sugar_dumpling": "Black Sugar Dumpling" +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/lang/zh_cn.json b/src/main/resources/assets/blacksugarmod/lang/zh_cn.json new file mode 100644 index 0000000..04c0de2 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/lang/zh_cn.json @@ -0,0 +1,21 @@ +{ + "item.blacksugarmod.black_sugar": "黑糖", + "item.blacksugarmod.dough": "面团", + "item.blacksugarmod.black_sugar_dumpling": "黑糖团子", + "item.blacksugarmod.crispy_bro": "脆香bro", + "item.blacksugarmod.cooking_oil": "食用油", + "item.blacksugarmod.indestructible_starfish": "坚不可摧的海星", + "item.blacksugarmod.starfish_skewer": "海星串", + "item.blacksugarmod.marshmallow": "棉花糖", + "item.blacksugarmod.roasted_marshmallow": "烤棉花糖", + "item.blacksugarmod.carcinogenic_marshmallow": "致癌的棉花糖", + "item.blacksugarmod.sakaban_turtle": "萨卡班甲鱼", + "item.blacksugarmod.scallion": "葱花", + "item.blacksugarmod.pickled_turtle": "腌好的萨卡班甲鱼", + "item.blacksugarmod.bland_kitten": "一只觉得嘴里淡淡的小猫咪", + "item.blacksugarmod.malicious_kitten": "一只心怀歹念的小猫咪", + "item.blacksugarmod.fragrant_starfish_skewer": "香喷喷的串海星", + "item.blacksugarmod.pot_of_prison_vegetables": "一锅牢菜", + "item.blacksugarmod.braised_prison_vegetables": "闷牢菜", + "item.blacksugarmod.charcoal_grilled_turtle": "炭烤萨卡班甲鱼" +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/black_sugar.json b/src/main/resources/assets/blacksugarmod/models/item/black_sugar.json new file mode 100644 index 0000000..97c0875 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/black_sugar.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/black_sugar" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/black_sugar_dumpling.json b/src/main/resources/assets/blacksugarmod/models/item/black_sugar_dumpling.json new file mode 100644 index 0000000..3e54517 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/black_sugar_dumpling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/black_sugar_dumpling" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/bland_kitten.json b/src/main/resources/assets/blacksugarmod/models/item/bland_kitten.json new file mode 100644 index 0000000..a411e0c --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/bland_kitten.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/bland_kitten" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/braised_prison_vegetables.json b/src/main/resources/assets/blacksugarmod/models/item/braised_prison_vegetables.json new file mode 100644 index 0000000..0a36aa7 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/braised_prison_vegetables.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/braised_prison_vegetables" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/carcinogenic_marshmallow.json b/src/main/resources/assets/blacksugarmod/models/item/carcinogenic_marshmallow.json new file mode 100644 index 0000000..ae0c435 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/carcinogenic_marshmallow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/carcinogenic_marshmallow" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/charcoal_grilled_turtle.json b/src/main/resources/assets/blacksugarmod/models/item/charcoal_grilled_turtle.json new file mode 100644 index 0000000..61a60e0 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/charcoal_grilled_turtle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/charcoal_grilled_turtle" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/cooking_oil.json b/src/main/resources/assets/blacksugarmod/models/item/cooking_oil.json new file mode 100644 index 0000000..75c1a33 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/cooking_oil.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/cooking_oil" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/crispy_bro.json b/src/main/resources/assets/blacksugarmod/models/item/crispy_bro.json new file mode 100644 index 0000000..dbe9da7 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/crispy_bro.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/crispy_bro" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/dough.json b/src/main/resources/assets/blacksugarmod/models/item/dough.json new file mode 100644 index 0000000..93d7bf9 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/dough.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/dough" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/fragrant_starfish_skewer.json b/src/main/resources/assets/blacksugarmod/models/item/fragrant_starfish_skewer.json new file mode 100644 index 0000000..ad9debf --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/fragrant_starfish_skewer.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/fragrant_starfish_skewer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/indestructible_starfish.json b/src/main/resources/assets/blacksugarmod/models/item/indestructible_starfish.json new file mode 100644 index 0000000..7738d05 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/indestructible_starfish.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/indestructible_starfish" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/malicious_kitten.json b/src/main/resources/assets/blacksugarmod/models/item/malicious_kitten.json new file mode 100644 index 0000000..6a1107b --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/malicious_kitten.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/malicious_kitten" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/marshmallow.json b/src/main/resources/assets/blacksugarmod/models/item/marshmallow.json new file mode 100644 index 0000000..df26d5d --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/marshmallow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/marshmallow" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/pickled_turtle.json b/src/main/resources/assets/blacksugarmod/models/item/pickled_turtle.json new file mode 100644 index 0000000..da63bcc --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/pickled_turtle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/pickled_turtle" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/pot_of_prison_vegetables.json b/src/main/resources/assets/blacksugarmod/models/item/pot_of_prison_vegetables.json new file mode 100644 index 0000000..d5cd07a --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/pot_of_prison_vegetables.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/pot_of_prison_vegetables" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/roasted_marshmallow.json b/src/main/resources/assets/blacksugarmod/models/item/roasted_marshmallow.json new file mode 100644 index 0000000..5e4925c --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/roasted_marshmallow.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/roasted_marshmallow" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/sakaban_turtle.json b/src/main/resources/assets/blacksugarmod/models/item/sakaban_turtle.json new file mode 100644 index 0000000..d4ba2ff --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/sakaban_turtle.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/sakaban_turtle" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/scallion.json b/src/main/resources/assets/blacksugarmod/models/item/scallion.json new file mode 100644 index 0000000..eea975e --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/scallion.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/scallion" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/models/item/starfish_skewer.json b/src/main/resources/assets/blacksugarmod/models/item/starfish_skewer.json new file mode 100644 index 0000000..02ce8d6 --- /dev/null +++ b/src/main/resources/assets/blacksugarmod/models/item/starfish_skewer.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "blacksugarmod:item/starfish_skewer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/blacksugarmod/textures/item/black_sugar.png b/src/main/resources/assets/blacksugarmod/textures/item/black_sugar.png new file mode 100644 index 0000000000000000000000000000000000000000..33b6739050bf3b49f5cc7de82deeb73b389a25a9 GIT binary patch literal 2227 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 VfSMq{`KbT^002ovPDHLkV1oQ0yO00? literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/bland_kitten.png b/src/main/resources/assets/blacksugarmod/textures/item/bland_kitten.png new file mode 100644 index 0000000000000000000000000000000000000000..d294c05296c0bbd944e7e272c6bdae4d7cb0dab9 GIT binary patch literal 2059 zcmY*adpy(q9{;&MS_x6Dp2ArQJ+_%lSz|6+uB#DYl6GUG&9bpknp^HkJs#>Qw3;sN zI_B8RNv5dCC03r2OUGRaq1=|UJ*U@m&iUi}{anBA&-?TK=bKJA>Y@$W2?78>+szg0 zt+2+*qot|1IkB+|3ZugDc5wnKI(AJe0`*WwydwZqU*5Pz(on=3*scK_0N9K~gLGpKf^ zen`9}p6yJdGhAaMX~$!a`cPuSDYjHojJ-Ap%||H^m^3cQn9n@J;-L6;kUxP@3SXIq zL+sI!)DV<6_Q;P8MPvt|bGd939M0qMV7vpch{#Yl!q(OnZfOO#vVtl)pqv;Mm&Av% zID38oU}+pmB!kUmM6isNfFyE66xR+C6~&;ULP#MNb^!0C8 z(|x*5UENt`Rewf>nU!E%XY-bs45LMd48(K}r_Oi0?5K04&8<%sjHAbIu5(t4627JH z4z#IwAP&;GMts6|z1T2-4wVXxwQ8c7w{sMkrB_nPhXMX#^JVy|EJ^TulzH7#H^XqEKfmg@1L32q znTEk-cvRVA$nv^|)oRP+%1E~9^BZ94?Cg`^&~L|&Iegl4#0#ogIDf*(L^ZkN(v2Ov zAE8NGtT-$9mB^V>unDt!F3`75g zrz@TE7+?t5{Z7UHn%X#73?m+rW;93W)pXD$7xveeuGECbn`2*{^!<FzL$>JkW7}vmId&P?hA9aZ#Mdl z%y6+6q;pFQpOUM&QC}^0Zr!`d+1EE2;+{qj=>`=DRR~|w@WL=hh(Tkg>Nbc+POEUL z!@c+}aH|BYhRbb9i9I)R5Hr5md!g+s^YZ-2w}vO#&;Eh9SAAAAReRPLAh|C{?&%oc zbu}2B{4|iYgwyQ&eo2@g9NN-a?|3|Zl)vuQQDh{Fo0c17X3Urp^E{u!bsi;_?9&%< zxlH5To@A55-=F&A621T@cS(}x>Yc#4~ZGRskvGPAYAnuROX7Tw>Jr|()If7hlXZU z;uf{MgkgbO!&Yh*(S5|E&;4q(I-~|Bn00C%B5ZC0C#6+|En0n+REpnuY>A|SiNu-v zt?uTFao6?Zt3sy3-u0G~+uyzJa18HcoAsJ#sm86Y1>XM`-_1wjkO6BSg=$v8ynRi3 z4JO)d-Y%xSxE2|9bw}Xmq5w|B9m}x~zohEouDooZ2|Y@&>90%KvUvAjn>$1xa4y|* zgZrrK&f4=Q9-i#+@O>P)?8++WZK}p-vp-$FxBn&5EMFS*`$D#-XAsx4vr<}2AlW@lAtiqxk*gpFTDws5OGX{IH_0S30 z>DCcc@dNw5eA_G75JwBeV$^KytSF74_5@765j^cdX(>gTxJ=D15Uul5oP^j$eCB;A zy|E$mE1lx}s5sBTzV%9>fp>l((RZ~N$~#dQVoo!eT*InJo%h~`bGn(C1zNwoaqzEO zVtt+IYZLjn+63!{ZP@f(4)wVhGmr7FU8D`D4_kd$5z0;z%nZEnHGqd;Oud}RWBc`y ziA0POcqNkHQWBI7HI0J=jmyl5?c?Pn=!3{jn02AwuqCfv7X9iyE8F3&y2B) z_@z^z;h)DY@b%~*gkD(Co%Hl&`ON0|%FI3f8$ANIQ9K(z1&-gb8G893xIboWfxUiR zs+ZKlEt_c|hx-0aOLePL4!W;lQQV1s7&Y!8wjU;)7?#x$8o?B;;|Ui=+w92yRK*_@ z#E%CrA&S=DtCbFHPY7?8nID{>!}7HPuOvNMeJ|K-VRysuL-)D2-91rqy%mOCoj~Ue zF$b_#)%zmxN=Y3geXN~s672Z=F>%1I-a5!HRk!DrSWnu0DDGWwr%uor*z#KN25Z^i lX_t+VBangmn?~O%1Zv==P|@b(%2MTz?1npvt#CS>_-|FYsagO4 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/braised_prison_vegetables.png b/src/main/resources/assets/blacksugarmod/textures/item/braised_prison_vegetables.png new file mode 100644 index 0000000000000000000000000000000000000000..709163dba83a485fef74e1e95f1da49711a4d6a5 GIT binary patch literal 2837 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/carcinogenic_marshmallow.png b/src/main/resources/assets/blacksugarmod/textures/item/carcinogenic_marshmallow.png new file mode 100644 index 0000000000000000000000000000000000000000..4bd8ee7fd4273a342591ca3337d54643bf381c9a GIT binary patch literal 1721 zcmY*adt8&(8U7NvUj{0d{1i0=3>}b!0GTBtA(&VKlUpEiQHr@IKrSY+iKrB0fQ2}U zl)GFa1(ZPmWyp#H(PjZDL`0%1P}EfrQ3S0r3WR;>{B_$O?>X=7JnwU!^T+ujCMwL{ zW|s{B0QTWj3Ju)hCbO~tS6OD}Pv8cT(ZUV_nlZNpFfikVMuq}FSF!B|!yJsQCDbGt z0PM*(86@TM&K&SSfgnCno)~!;&k_sK47QlbK`Vt4up0n^LzEH*E1e^UGdVngh~V|Q zZ@>#KU=zF&aFKqI5;BJ`pk_)rahXx^tju&)5Zfz+Xm1m&#DfSzj+_Bk3Nu79ypn+U z1sD(drZfgY43@IFcpBxC4;^4cK=9>q2_Az{C=_T#09q{NVX#3#K^Q-OjK4n$>_Ev* ziR26=N+k3606^i$SW%@@P)tSu8->NP87Kxj z0E=P=1h5a_upj$#u}s8=@p1w8zw<@14>Ev)U`!PZ7VT%EZ1VBZQUM2KVH!!q2LDq3 zzg#fJMC5;n5&x3`?+SXqDr1uAS9LieP*Me`o$ptbw&1h%g;PS~6T`F>BeDs)lP+Z5 zco8|!d@qobOiL5)^1e&no2F*NVt!|raZ6Voaw|`h_`LkW%i0s)Fh_2O>e}yEB|E|# z`Bg3!e4qRINYD2r7Xuew?{yW{?%Iho|5pE|?)2E&*s1BYO|!=%to3+YadKnoret#2 zrbJ(yF&;JyJ!0SBcBW;|&KbOMVYp*z1heHzT^lTU6?*|!V4YWUGmeK@yZfr+k7`@j z%lkya$%&SzWB9W#zHO4OkNlYGoH+OVeN-RH;0bsQ47h6+Uo6e^ZO6gtrAyP%^s@=% z$(;42xhpc>wV~Q!#5)mb^?iTQ`OfAOD9z&idodl)h!SX{HUW4k_@s3EOv z^E+@L621CWUESVk(sJIRcqcz%R=e?@`p$mc35lEKc826J5-^)NP<&qZ;DJ+IT%2cVIF~!`xLt+4lKoGszdu;vpJ`*NlCM60`SZg^V`J#s zPyC)pDpM}ldhW1Be|qzLC+TWDlgT`%E8drDDC_GeEQCfhB?aK|5%^m7+A+uF2+z_| zx%T(4dTPlq8@78lOa2q&3kt?^c8in?*^-TtC+Rk3d+08+?zv=N7Z#gsraRHuLluiL zU5S_YfrYT*qRoWftj(V%s;a7DPPOr3>9_6_ICzNV3T}3jy zdeM=o!dB=J+DA_2?;!a`W7ao)ec?#m@H1(5&nK~TH=TP~MAw0mj})IHaTPv}%RVrQ z8J#n7^r&@M^$_ki%b%73j}87vkG6~|Q$dLM?W z*wSGMf#?i$c>DG*qX#1^%B{`zIBzr%RjgQgTMCK77YNk-{dMIA`yr)~VrA;#oVOAPOXz@;Erb6Q<>zNG3f zasp-0g_R)c=5rEN*zd+hC5r}l1t#?nr7PL9tQv`{+K;PhBF3K$X!Snr68f+u&3wE2 zj-)W;Tdx(R%6|N_tfhhM<6Q>5aoajTjZ*n5*ELDs&wsvr3<{jnH1dJL!L%IZnVsW& zpSpPlCDtwhooWepN!7m^tndXI#9L9DFYf}6;7^(@5Rn(ouVC?SEGwY~bpNHx=)ARK z+GEZR=}l^Ns3Py7v?U%M5~)JHBpHkN9m^LXt)w&r)biPa7J6y`}aqZcEh zm$f-Uz-?xFsHVN$&LMRM8+_(u*k5NOTD|{V_9f=)kiCnZkCv{j)=XXTz6~w7(an%| zna}!@yNW#D=>>5!G+=pyaYSvsNTdI|)(*GYF~rJZvHSi2McaQf0}4rCb-~td2j*=+ zQK&_dZ|=4`Z)n_x9a#g{d!eM1+UR;Vk}ui)Tc^Uz*FO+&w3ZTT;uaL?@oXZc&C%8L Oe}o^3qG%2tKlg7f>h2i; literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/charcoal_grilled_turtle.png b/src/main/resources/assets/blacksugarmod/textures/item/charcoal_grilled_turtle.png new file mode 100644 index 0000000000000000000000000000000000000000..405ab3dbc604f906f3b81479722a0768f4b523c0 GIT binary patch literal 1977 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 QV14x_1{UZtJ-3^G1GXjCm;e9( literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/crispy_bro.png b/src/main/resources/assets/blacksugarmod/textures/item/crispy_bro.png new file mode 100644 index 0000000000000000000000000000000000000000..e78eb017d0eace5e909e479189be889b984cc0b1 GIT binary patch literal 1677 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=FbuAj}xMNVpNGp*=Gsq9nrC$0|8LS1&OoKPgqOBDVmjnt{Q_ zzM>#8IXksPAt^OIGtXB2{qFth3YjUk>fxro2EGN(sTr9bRYj@6RemAKRoTgwDeCri zyj(UFRzMSSQ%e#RDspr3imfVamB0pD0ofp7eI+}aqLehNAQv~N3Lwu`DWjyMz)D}g zyu4hm+*mKaC|%#s($Z4jz)0W7NEfI=x41H|B(Xv_uUHvsfJi^MBT&`V?*5(W8)NaQ$q`*G{Yn%sP!e8 zX$brCilM;(3=n;gjJ~0s0m#W9wv~TTW-8DXAS>+*ZNTy zBqBfXa6fWd%q{FG(kmS)edEQsmIudr3zHumYdyx!YEtOP(X%H@A?hCIlzlmK#SSgr zHihr4&8?Z$cH+jlw@yYZkgYrE`)=>^n)`q6zpr_2{rrHEic(^)KhKSOs})zTnsj#_ zf05PRpVv8WZ`v2iAkth|b0fv4_Nn9KyX8Bdl)UiJs$I<2#LA;IDfms%N!4@I8%2OjEZqRLI!pX|-)%WB5LBM)!fO#`pV8x0`u? z-W3*k^Mla}Az4|*1HR`HOx)t1zufop*v|tDGCK=CX2ix8ELD107|wn~px@mg#^7>9 zu*=_H$F|<&o7T;^p~obDVB&l9 z<3h-kfBWR_?)Z6j&etcI5m!E(|FmuH;fIR7el0)$?5>^JFC7w;ku}M`{*LqMUA#q` zKkqoZ?X326XZzb58$bUlSl}$&&;BLjc>Amlo@^zfHJ2xUHtsSY*kfTa$igP_k0kxe)8z*^?TE;nGai; zn)R%RR5)}_<;TnZ^BI*Zee>eDYz+;ki!?^AYvH?{P~7XWu-zfjbnoN)muk1qzbn0; zNt5C6!VCLPb$INW^fV!oiDBKmob6xFnkMx;4EqyqcKz-7ElZRay)ybyp1 zx7V#?J@!+8p=!A1=I? zE4}^hiEf4l=2dC;?Zxk0>dK1w$k4X(1hbdd>H{1VH61g~>{_Jq*id&}j)}L|p%@vF zjfWpv*L*r0rI zJsTr$7{|7Iz5V>ldrsv48!ZlN+vh{V?HZof(;D)Gekk?RL5QZoaNFp(mcJJFsk>_odUz zc7kS`oXV~R_y4rl6o35k@ZYkwS7L(cWqU82GPM@_^QBmnq2O!CZd0!9-O|_g?XCUo bQ1-iCi}!ga%L4NrP@UlE>gTe~DWM4fjiTZp literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/dough.png b/src/main/resources/assets/blacksugarmod/textures/item/dough.png new file mode 100644 index 0000000000000000000000000000000000000000..1db6779139ab8a5cbf17e0231e11da61130b6108 GIT binary patch literal 1679 zcmY*ad05hC9RJ~cL<=o#&I-{)P5gnxRN}~k1d}YKiJ49=5k)`&L7NLxbIx_U(w;oh zRnt84DM)G3q0?!ad#t(TZOhp<%URhxYCl@fjz7Nd`@P=J_w#< z*LMIR0y!^TBvXi_5~LB3!<8x(WRy}V;u8}&i3Bd6Prz_Fcs>S)<8v?^J|2hRBU)3*$%%j`X(vzZ?lP68R4? z%HJ92u8{YSGDeyHQCA>=BvnD$c^8-1LeF-B5faE^hu%GN_t-kx+Kz+T#T%uWSme=4 z*M#sPZWUsrNfxnxJrg_d=4So2VES-t^qEebt2bMRPF8S&=x#XTde{`U&(icZDPDD- z>{Hvi1kbIq%|A7)sC|<0L(NhQ{Mh=8H+QHv7yHNjHTh0j*hSJND`)=<-{DKIwXdSh zuAK&Z#AXg{*B58qJ)VkOPMU00eQ4gKULFkYCb1^kJ3ro+@bjf2xS`y%z;c8ika@uc zXmA296j#`Jj?&7hv3rAOhnHzUMZAvWf8b@Ewjz0MyGalA)1|)UTelp4AM(D;pxqz@ zocd_GMIIkIQ@p&0e#XRXKh<*>)aC;C`Az+8c$_j zW#`D8p6c#G0J_TRuci>QCZDg?QYkpu#IO)FIrquT&}J)kcYSGgK@-+gQ=)meR@(1S z`RIJnBc`LNy9=0RB5r*BU}hub#K-_*h`mUJty`%D1S;)+rm{I`nXq`&XL625N6Fh{d-X zG`i|MtvZ}*AUWEbBP;ePdna=e><=-U`0P2Qw5IIS43!fKj;MYz+_Ja?KlhnFD1P0- zuGsC?#m6lT&-^>5{J}q0{ZU#sYPZ+G`u+->U3oI9^y_dPSNrnL)k?TWEgOjgL>#y>9ON>b=K#Kjvu=*mG^8<_+Q1LE6laI#+8u-BoI~HbT9ju_yto&he3k*?{?h)>}zhI&%5#!w-hM4ZR_a?BD!|tlw(4GjT zV^nU9%a^+2(-e)R486+fR;3H#{XCaktec1CFkMcUJ7>Ol&H~kWLrV1i*AqJz(o(B) zi)gOQxUhVj<#Xod6G^e9Z9tlI>KJKt@Q$UIrcLQD?B*jV9Rty$BhAx3w%!}5>sZXK z@o|az)-Sp*MqVN9JhHuTJbSd~&dbiQX}jvl(Z|f$)KRlW#)tUq7>#8NFy32=&)pK; z@SFLoUskkI^PV@b1FI=z55)&SEBk8?qKfgs# zw7Sjv*}VROm)!6z6pNs5MvAX|PEgzAc{PG@u`AE6`i(7BuJrK=sjyL! Vr`HFHr*p<%fkE39(h!tz=r3r*$WZ_Q literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/fragrant_starfish_skewer.png b/src/main/resources/assets/blacksugarmod/textures/item/fragrant_starfish_skewer.png new file mode 100644 index 0000000000000000000000000000000000000000..407fe17e19d25a3e276ee574d045ff1d0ad8d08c GIT binary patch literal 1679 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/malicious_kitten.png b/src/main/resources/assets/blacksugarmod/textures/item/malicious_kitten.png new file mode 100644 index 0000000000000000000000000000000000000000..5c1ddeefe0a4813fc491b83ce8213c0c744e19cd GIT binary patch literal 2262 zcmY*bdpy&7AO9J-EinnnbqTp_hKXgfSZlh#b6K8K6e*-fSRx&A zkXs?;){!9uQXAm{9a^AKt6 z9g&t4oeU1=qezJ{JRI$SnnCp?ks}d&%DiMkI$*nc5_3aA*`-f3>AuUpth7*7rub znYz*JsUe|G96I$B=Ols52`5`q^ldS6vNmj#2qBWnBxM=^fTAR+|5lYt{(raLR|*eG{;C{?t@&PWWx=CAz!#cbd^ zi~P@GnEymXcNJNGGqXd}-|SMOM3k~b+!^N;fB`^q+!=R_;NvK`av~ycY~Pcl#mQA+ zpgjp>c`BRlc1rqikEFQUz0AEmLSr7G>aL-V=Q6poW?7OCn>geBQ#rrStLlDbvk{M9 zDPMr-@zT9u*eUPir2NafG!Gl`jDoAdZ3*rwQ%7c{;*?lp?Ud8PH;mOUQ^JiY@ol(t zs-;{iHm&2`as#j9TAs4(p$0Fdj%rIEl}Vkj-g%cimqW-5cimy;^B2OGECwi{CTOh;niQ`py&A^-foeAzY@nt^!;s3A#-IGMef1rfy<{R{s9*NpAlEND+ zBZ~&e)w2S0LdpiHhM zEZ8l~BWq+tI*_~}P3ToOqSH?txRuW^$d-YO-;Xx}CXojD7sX92ESzB8SkGQ6_~Exl zI_DZ`jj;#k~n%bnN3$mq=MiH`K6uI4-(qc3*Xeu`_=dHfqgZDw3d#6Gs zo@9;#sIGVTsDh5$KpF?Es8fao?n}3c&qMgBb($lkxYENN!ojKAXWNms>xq_XV#!j= zJY?ikuUyr6o|eh`o~8Kf;mN*vj$EG{1owfsc1atIO|A zC^q(=S+9utmDZj$Gow^>+|!y7cCq4Ye970_D{Oggn4e#%QCR6y7r{(oJ!xgB!ghVF zA$tT*;FiMp9tXPp)?0#H%-Y?9TJHw}n5nqwSNn?$%(oZL*<7q`Z{`W}V+hcP z>%(-C+_k>NPz$x3fZwof_)>q^>}y5maC^^K15L5vC5yzwO+-&AKZnPIDk@H^4(62d z2@XT4vM(brHTylZi(Texttv>smAMg93}%qkmhjctQ|GGDJ^$`53xeVz&@iFV1IwF5 z+TjmfjxSWnrTX5eYa$z+x08X)Z+($5m2YClD0&Lm0scN&oE%8mT+gV>3(1m=`ceK2 zX`lNr-auW-hF>?_eW9nja0{!Xi7r^ouT2D-vV#r0ze7zxqgjTsYV~w2$&fh`_)N1! zU8|tK*K{qFRuh~+aH3$GQ=y#2Oo;%G5w`c=UAK<1F`W0e-p#&F>nr0$(} zAL4VQ6Tf}?V|=a9isZ5QSRTXKoM;G7tJcR^VzawzYnER7-dSRzV%j9~rO6;4TiX&k`VK|!PUF^pXR$shWUR!< zj--qnRz48|)&J#=aJsV<6j;m|-#lK2Gvg6+8a(N8_P`;pu$*NfM zl|qh$H7@-*xkr_MB)q?Ey~cr8o^7j~qHp zYqqP?a;eyxqYoHD+eV0SgD>xnR=>wxud31S1LaFBY7=8L3&2(p@Sa3wy{l69W51AB z7JlriPtUqvA0!;_JYg=!e>OL#+Y*Nc-|yXAO>`Owsh5aCYGwl+A?2W9Y-=#Xu>z!i zV84R^4&geYx~w2Fe%F9vbV8gsq>?(sXnD7?>KF5!UhP~8i9cL&G#AtoXKQb`kB?lD zjw$ZEWib=q0iJ(Wg4A1p)J04cI|$6okGd(Ot9r%ti<*+Xwu`>z8?EV9Tg>dryp-iW zDWmdyYD!F)30aBBu~v>)Cf>8=Y-^U|($W$!F37Mr^^l%E zl;V(4c%!(pB{?xMQ8DB5@5^bYYr&)T3Z~be>i5f}AboqMrtz8$QNMr{~ej<WNhh#}GH8mO7- e{7>YP>GrM)<%MKti0;nk!uj|~T#a2|>c0WvQ|d(k literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/marshmallow.png b/src/main/resources/assets/blacksugarmod/textures/item/marshmallow.png new file mode 100644 index 0000000000000000000000000000000000000000..7e0da58ed8b7d089c4ba2437be53244e4bfe9602 GIT binary patch literal 1645 zcmY*Z4Ls9n9G^vD9Ain|TI0N(ZDw9~n`})+7L7Hpu~#kjX46JjM=vrdC1rJrGbyK2 zD$;V~oaD+%>PmW{u3RGIE#cgMcYV6M&*%9)zt`vc`#s<1^Ldn!8$wKtZHz%6kZCA| zOanArCx%ObU7D3O2`D`&ErbNB)!MxQ9Q_m`l?VdW6+-5j27qrQro>7?Ap2aM=p|NI z<^Tuw@uOp8G1PDzTO>d+IU*Jpr4WdLY7hv&Mj>XhQ@JuYi<`n15?n^FwYb3f9D)nO zhw4ccujOvxQ?k;zQCS%wS6 zAU>VL!_mm=K2-o70kK6U6XVcmxm=EtV^N~?6f`CvAOP*@h4%770u@MUrclOIAca!L zPXJ`Dl%38O%lIN8TnETxi85paL`DXmgX1xIJ}eH$2gzb$IYug*^I-d(np=%k4!T+8AUks1d4f3DC z0{@8scLl7^%;;$P%q~|5P$~zw^C(t9fM*khl8MnVA?+m*Y0K%b8{ZCUo0_e{YQTjd zw)ero#$b!xP$y@nb5Hv74-hS_9vtmHw8aS{*#}{nXgr@HuYatMZE*NdH95ai?cK+Ctfg>FXM+M3$9Ect zXN_#N1$=L8wXcfi=L^%$YQQSTndXMF%9>Q`?)cK#G46r%9qZ5;YKDgB5f?QQA>XVJ zP5VLG?W)^;E)EMpcl2#W9O=9;*Kbrx&VyYG&Tg%Vqt(HVf`f^h>(#b;71Y8a@bz}| zgSB@X-M%7fJD^`Ll z%_b*TedXogDTEN@$`D{neb=^rabfl)}C(#5wN!4^v z*2l}M^m}X!US^$}3RoDwyFbpqBr0B&cRo2xz@!07{id!l;k7celP6DuEObjQUs}aJ z)4Q|Z`q`1*%J4+D0@u70RcB&fl*7w1aR=;nZrAe@_lsklUgY#NlFJL`p1(DyIP1Ps zGhJJE+$<;OR?AdC+0lx8n_CxiGYTdbweN2@o7>9o$u5RjY+tvKdH$H3+M4gu;O$`} z8C5&5YOIGwDz-_iY;g(ZN&OZUfoBVc<^^H~7&LV!ZAXYQa*$bC)RJL2ZbC9%-9C2U zZTYc*KT&sKRTFVP+FIMx?fyx<@p*qxW>c@KBs_TX_2UN&Gvo>FFK&_aJusIwnI}Jr ziwOH7a>C}HfZW5c44$fe+VCnN_U5cxB$++IgVyJh;dO{1e6;;>`pT{EEjifr;u6i0 zzRWfo<+2bDpZHCSaSnys>E(8)HPiOlQ(eN5KL%~lQI`o%3>3X*Bm5A&9Y*+C-%v7Iy3XuzP9J-aNRozK@aK zzM#&pFRhrZ|m-Aj%ss&{PN1#>0QxtwlD1o_82B_^n~jFo{6X9?E;!=P0_!QAhJU*Nbr&0%nof3 o@cETn$Jt4XXnhL4uF9<~>7Kbsw(B*^0o|V;8oYsAOG@7L7dPO=3;+NC literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/pickled_turtle.png b/src/main/resources/assets/blacksugarmod/textures/item/pickled_turtle.png new file mode 100644 index 0000000000000000000000000000000000000000..4e34cbe040daaaa3422541a171b86431a3ae4eab GIT binary patch literal 1370 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 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/sakaban_turtle.png b/src/main/resources/assets/blacksugarmod/textures/item/sakaban_turtle.png new file mode 100644 index 0000000000000000000000000000000000000000..d6390222d5a1b88191aa2e88de1eb9905610e050 GIT binary patch literal 1378 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=FbuAj}xMNVpNGp*=Gsq9nrC$0|8LS1&OoKPgqOBDVmjnt{Q_ zzM>#8IXksPAt^OIGtXB2{qFth3YjUk>fxro2EGN(sTr9bRYj@6RemAKRoTgwDeCri zyj(UFRzMSSQ%e#RDspr3imfVamB0pD0ofp7eI+}aqLehNAQv~N3Lwu`DWjyMz)D}g zyu4hm+*mKaC|%#s($Z4jz)0W7NEfI=x41H|B(Xv_uUHvsfJi^MBT&`V?*5(W8)NaQ$q`*G{Yn%sP!e8 zX$brCilM;(3=n;gjJ~0s0m#W9wv~TTW-8DXAS>+*ZNTy4@&yE9;gaqFxlmGAF-W~b7%j5(e?X^dZ!4r37;w85okNNEcAeFVR3D<0F&m@ zgfuDpd3p|8qt0&DnLYc~g0kI5uivjZ`N>pE0rgZGNXn4xQM`lkOyK0#!Uy# zb}(&c>5s_RyP8t*^wrXEeOh(8BGo!Yk-oU}8v8LDrMVV|=TPWul4+MwpZ_~ z8*jP&&nJ)l)qmRmc~C1MJ|W$*?G&?VS>~iiNjkcFIn)Utlrk!Wx5>H$DHLlXG)^=VyhfUol>&W^OF>5Z~{@n+3kooo9cmBT7`@V0-@k56W zac|GBcUgV)n2ymYE{WG?j;?qw|2EMpIP-M&)a5R=ZtLRfd)J(ZjER{uN6;hq_2zkz zrPe`O2HYNp)M6to*DU*W<=;PL**EWB_Fi9~xlc}Yr^@tdMbA%4)2k&NctILUKY zz~}S{DQDAyC)Igq&aK~*Uhw_+-Z+27mUz{x>BVtkGiQFU+M6HjWiRep_~PC1cmIyu ztuOu_-?ivRW_Gr>q1*cstLdBHDzylNtiLXr9I`enc=uhg1zP{!bH*1Q{oiKK=r8VT U*dJ6m2~^N|y85}Sb4q9e03YW?2mk;8 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/scallion.png b/src/main/resources/assets/blacksugarmod/textures/item/scallion.png new file mode 100644 index 0000000000000000000000000000000000000000..cbfe79e45cd7b260ca89217c7b49b6dbd5dfc4c8 GIT binary patch literal 1926 zcmY*ac{tnY7XEc{$5L91q9aOLqf1snDvhMJks{WpRH=p}q?*V`NVw=?X{h1p2*$pZ zDy^l~p`zEcRaHf8t$lQCS6dVfMNBfc&)j?eINw>n_nhxNe|+)Ij<(8*hZF$-P(Dkr zc9m*9naKY`dUC?USEXtf$JN#nsCcC_FLn0%TM#V(pgLJ;iy|lW71)IH8~^~t$z+#z zq55^{g_{f#nM)=*VElrZFbXxumj>fA+0tqNz~cFAieDg&tLIDeXRyo-7n@rR^%zuh zLk|-og2=X_1uzKV!8EsUN0MK7pr0Al5RX$<#PTsx1SXA3(c?3(us9gLIruMNjMSEe z;b0s#m`caETL191Lh6}=1Gro^1`g-(crYFc78L9cN1BVc4hdmUF?0&u#Ft7nf%;NVR45Wjr9dfE6cS2B zp{QsR&NgrM zUvVL%S<4T`eD7_r$1^{owx$~C}K%NNP|9n6z9)?jeqjp2BCgG|AAfuw}k8nD33t?Y5hau@`!IF|I+ zh(X^?Dv4pd6I1bSLEFI-ZTUP1>IA#1p61%nXyNNp9IP2d?@X^w=*o}(gn|!??9{pxe*Iiy zGq9Z5e!E@8s~;kfT=pK*a;w)Uc2@fVuRSwY5uNwqRD@(ME$`!IN3Pk6!VT21OrfOQ6SPISa)F6>;V2DlJy2r-lt8VTM5wivtRGz38LGj1v%M;lA_>x^F#?{Hjk`6yF+{#I%nqJk)(V&t%W_Za=9#B9g;8nxu*TqR3O!5 z4+$bDO~sS{sXIBC7u0D?vSll)KTzJXjF;S&e5uD@Njtf4t8CM&t})i`9_W`%RvIA!=W=omVSKZju(M(BD>kd!3m^jP3F z!G4r1s(M~9t~I3)qO5T4=%;L*1iiG5lq|7hCQ_r|rG3<@yLX?Khi44bzI-V}wO7~f zxTxlHswZyQKHc>Q;kBk9Kl`bcc?y@VT(vidAqyB(%pdfeqBKXG)&Ir@xO|m zH72Y<8+ty!M;|TCQ7KRY)Z9%=3aYVB>$-fNENh_Ad~CmDi5ERp6$6v5$gSwGk>Nw( zG%-t+`TFf9xMKd=Yb%RLvZW?K?&Y?38{=-eUY*_^cVrRjtCu+=&;JnPLH%*G;qSKI zd59{|1C<_}%KL@QcXKxChE&nz8{XZ!LMPVSYFA2_z#L{RCIay&Ipim_-!11J*!=B% zAtntK3_If%?S7|cwW1qFo4AM&>Tm87;PkE(?JiYRp_hx<{*lFSzn$OBE9KTwkVVqX zV88rmH9Z%P^D$mq8+x~?SnLp^rrM{Hb6T1-K4)6;YW3XJ8gP?*1NqGHSXW$J!sLSM z+(ewVCQ#))rlM$dKHtmv5W<mLUV#gL#*|p zEV{|Cz}71!oC<*@b=TE%1+>zAb2N|Q4_?N+-H z*LTPuljH!3zbHcbx44vFtNEYvX8L IVR`AspG1##b^rhX literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/blacksugarmod/textures/item/starfish_skewer.png b/src/main/resources/assets/blacksugarmod/textures/item/starfish_skewer.png new file mode 100644 index 0000000000000000000000000000000000000000..2da9f3df7f4862ec88875ad9001df87a1e09a8b7 GIT binary patch literal 1895 zcmY*adpy&7AOFeyI^;G7Nx7RDt+UOLHrblFjfms2+1QeeUE0v8P?XCtSv5kAI-v_8 zx^a-BizDS;$B|1V_e)55cs$#AdY$Jve|)~5>-YV6f8YOn&-r?Ls;d~P005wl$6@^? z-c)Kz3X+qPl(ZsoG8});{XkWh(Uc^Si*YBq13*o#>IPX}k}JpK4s!s&I9+NoVP)G> zBo{Im0m0m0q8BQP6=zSTvM4lrL0r6K8UWC4f_QRNERAbQp~WzmE|v?Ank`KkR2R!2 zIMIO^kD<{SxFj}>l;j-{l@uF=q*}VUs;i&{C<#IwjY~Ea#2saFPy!dTzkpGaSXzdf zxuV(BXp}$pz_$rW=3++Ya^q1@D4)-_=R4W6*fCHT5{ZO5I6@sAA(9CQCy~h|3m{C+ zu5SQX8Yha)i03j`Oj9W!nZn|6UCekq1{D=ej)qgHR5*k}cA`RHFe({BraHkOR3|6u z_iz}(F&aiO`?j9Ti2mPxCg+Tamm~68)`=RHnbxr7=PogPNkKYKw{qon&Jw8G zeT5#xr?+kB_1V5PA-n*r=RRjlEKP@pa#SkzyL)6t@yOv!=iC0e^16)nGaf>BdLUL) ziw4@JVlEWQX+Lw`l#@*X+CPv^j?5$1-txP)ijt#E7TpZRV@Htqk`LAX_dpr7@7bw~ z!c$ENW1gP85phL!5n*$1u*)d1_vA1kZd|Y7!DHXOv26mJ{-rDC=6I9Girso@&6);x2Amc}9lv_w*dB-J z^q&Pfu)Gre!PY-IPFR+;8ye%56Pq~*FHyXC2uwfGZkRtIZA-b&5WEg zGN=$8U+zle9B9N{Y>?GSQQnrekucvEc)WqCXZI13j&PRAJ_qOW9*iQATm5|w{*YVY zuDmAyO5B)JuYJEP>=woA3EsD$Krv>-1@WNwyNe1I!s%Lrr(>vs+@4yAg6&0bPEUpUJW^L9 ztD%45mhX1MXkQAm=x*BFO#t;HWZ(Yz=K1yc5qm0oJ!p8jd|MxL zrz{ZWvmH}GhZ5n39IM$Zvyb%y$5!hWvU}=AG@q;B)*W+jAq0NfZM@*bF6)jezt!&c zYq%lwcyFJTI&k)2&wTv9t(PX~PQq1sT5P0zT^0MRnmj_kR<~rPX%z7Stc$lKBY!k3 z43BN=Zr3=V_s+D^YWFgveU}Y-Rsm1y*N%D_|0L4SfK-_81%G3?gs|0J%UzK5tX8dD z8eCd&hnMu(v~Ui~Ci=K^&fXGUE|MKyQt~mo+Qmjy-dfyOYPUrga0!7PC15hhCOPu>f74@Wp>&QD@hx z^AoR-`=N0Y_N0e8rI-trdU+1Ej@Je)yD@*tnK?Jo-VENc|I7ytUl z?{jymtD)tK;)VPU){6}FNH6mW=MVTpslS+BNaeZ>m-qkJ=2I!+GWa$jE%1h)FZpjy z8C7x4onRQ*D#2hQ*9Sg4=(P;5_}Mb#Js^CrRh zl##-FAtOoKP^Y1zjc8!DGe_vQrSA3aJI&mzi6@5;uaTw2)MwX-Kdk;MOF32&mNf*8yjtdM#o#yde?84W*#4B zc7XTr6~J#Vc5$*^57erecpl2VV9lP$d#7=5%UZ!7(wdBK$ekzr9{hYszVFykWsmug zx*J!rv{Yj&_C8M0fs&Y?>rNsZ$3b;IZRHwCRXarcuIOSE7Q2%7ZGU`GF9o|2efi;L fn!m{9%feK|