generated from neoforged/MDK
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
lilypuree
committed
Dec 24, 2023
1 parent
04be58d
commit 94ff9c7
Showing
103 changed files
with
2,544 additions
and
383 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,12 @@ | ||
# METABOLISM | ||
|
||
Installation information | ||
======= | ||
[**Metabolism**](https://en.wikipedia.org/wiki/Metabolism) (/məˈtæbəlɪzəm/, from Greek: μεταβολή *metabolē*, "change") | ||
is the set of life-sustaining chemical reactions in organisms. | ||
|
||
This template repository can be directly cloned to get you started with a new | ||
mod. Simply create a new repository cloned from this one, by following the | ||
instructions at [github](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template). | ||
|
||
|
||
Once you have your clone, simply open the repository in the IDE of your choice. The usual recommendation for an IDE is either IntelliJ IDEA or Eclipse. | ||
A mod that adds a new temperature system, plus an overhaul of hunger & food! | ||
|
||
> **Note**: For IDEs other than Intellij IDEA, you must run the `ideBeforeRun` task first from the terminal (such as `./gradlew ideBeforeRun`) for the run configs to work. | ||
|
||
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/NeoForged/NeoForm/blob/main/Mojang.md | ||
|
||
Additional Resources: | ||
========== | ||
Community Documentation: https://docs.neoforged.net/ | ||
NeoForged Discord: https://discord.neoforged.net/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,21 @@ | ||
# Sets default memory used for gradle commands. Can be overridden by user or command line properties. | ||
#org.gradle.jvmargs= | ||
org.gradle.jvmargs=-Xmx3G | ||
org.gradle.daemon=false | ||
org.gradle.debug=false | ||
|
||
## Environment Properties | ||
|
||
# The Minecraft version must agree with the Neo version to get a valid artifact | ||
minecraft_version=1.20.2 | ||
# 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.20.2,1.21) | ||
# The Neo version must agree with the Minecraft version to get a valid artifact | ||
neo_version=20.2.86 | ||
# The Neo version range can use any version of Neo as bounds or match the loader version range | ||
neo_version_range=[20.2,) | ||
# The loader version range can only use the major version of Neo/FML as bounds | ||
loader_version_range=[1,) | ||
minecraft_version=1.20.1 | ||
minecraft_version_range=[1.20.1,1.21) | ||
forge_version=47.2.0 | ||
forge_version_range=[47,) | ||
loader_version_range=[47,) | ||
|
||
## Mod Properties | ||
mapping_channel=parchment | ||
mapping_version=2023.09.03-1.20.1 | ||
|
||
# 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=examplemod | ||
# The human-readable display name for the mod. | ||
mod_name=Example 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=1.0.0 | ||
# 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.example.examplemod | ||
# The authors of the mod. This is a simple text string that is used for display purposes in the mod list. | ||
mod_authors=YourNameHere, OtherNameHere | ||
# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. | ||
mod_description=Example mod description.\nNewline characters can be used and will be replaced properly. | ||
# Pack version - this changes each minecraft release, in general. | ||
pack_format_number=18 | ||
## Mod Properties | ||
mod_id=metabolism | ||
mod_name=Metabolism | ||
mod_license=MIT | ||
mod_version=1.20.1-0.0.0-ALPHA | ||
mod_group_id=lilypuree.metabolism | ||
mod_authors=Lilypuree | ||
mod_description=a temperature & hunger overhaul mod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
pluginManagement { | ||
repositories { | ||
mavenLocal() | ||
gradlePluginPortal() | ||
maven { url = 'https://maven.neoforged.net/releases' } | ||
maven { | ||
name = 'MinecraftForge' | ||
url = 'https://maven.minecraftforge.net/' | ||
} | ||
maven { url = 'https://maven.parchmentmc.org' } // Add this line | ||
maven { | ||
name = 'Sponge Snapshots' | ||
url = 'https://repo.spongepowered.org/repository/maven-public/' | ||
} | ||
} | ||
} | ||
|
||
plugins { | ||
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0' | ||
} | ||
} |
Oops, something went wrong.