Initial commit

This commit is contained in:
2025-04-21 23:05:40 +02:00
commit 07af324f01
39 changed files with 1615 additions and 0 deletions

View File

@@ -0,0 +1 @@
public-f net.minecraft.data.recipes.RecipeProvider getName()Ljava/lang/String;

View File

@@ -0,0 +1,33 @@
modLoader="javafml" #mandatory
loaderVersion = "[0,)"
license="LGPL3"
[[mods]] #mandatory
modId="${mod_id}" #mandatory
version="${file.jarVersion}" #mandatory
displayName="${mod_name}" #mandatory
logoFile="logo.png" #optional
credits="Thanks to the Creators of Create" #optional
authors="oierbravo" #optional
description='''
Create addon
'''
[[dependencies."${mod_id}"]]
modId="neoforge"
type="required"
versionRange="${neo_version_range}"
ordering="NONE"
side="BOTH"
[[dependencies."${mod_id}"]]
modId="minecraft"
type="required"
versionRange="${minecraft_version_range}"
ordering="NONE"
side="BOTH"
[[dependencies."${mod_id}"]]
modId = "create"
mandatory = true
versionRange="[6.0.4,6.1.0)"
ordering = "AFTER"
side = "BOTH"

View File

@@ -0,0 +1,9 @@
{
"sources": [
{
"type": "directory",
"source": "fluid",
"prefix": "fluid/"
}
]
}

View File

@@ -0,0 +1,9 @@
{
"sources": [
{
"type": "directory",
"source": "fluid",
"prefix": "fluid/"
}
]
}

BIN
src/main/resources/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 KiB

View File

@@ -0,0 +1,13 @@
{
"required": true,
"priority": 1100,
"package": "com.oierbravo.{{MECHANICAL_ID}}.mixin",
"compatibilityLevel": "JAVA_16",
"refmap": "{{MECHANICAL_ID}}.refmap.json",
"mixins": [],
"client": [],
"injectors": {
"defaultRequire": 1
},
"minVersion": "0.8"
}