Initial commit
This commit is contained in:
1
src/main/resources/META-INF/accesstransformer.cfg
Normal file
1
src/main/resources/META-INF/accesstransformer.cfg
Normal file
@@ -0,0 +1 @@
|
||||
public-f net.minecraft.data.recipes.RecipeProvider getName()Ljava/lang/String;
|
||||
33
src/main/resources/META-INF/neoforge.mods.toml
Normal file
33
src/main/resources/META-INF/neoforge.mods.toml
Normal 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"
|
||||
9
src/main/resources/assets/atlases/blocks.json
Normal file
9
src/main/resources/assets/atlases/blocks.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"sources": [
|
||||
{
|
||||
"type": "directory",
|
||||
"source": "fluid",
|
||||
"prefix": "fluid/"
|
||||
}
|
||||
]
|
||||
}
|
||||
9
src/main/resources/assets/minecraft/atlases/blocks.json
Normal file
9
src/main/resources/assets/minecraft/atlases/blocks.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"sources": [
|
||||
{
|
||||
"type": "directory",
|
||||
"source": "fluid",
|
||||
"prefix": "fluid/"
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
src/main/resources/logo.png
Normal file
BIN
src/main/resources/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 553 KiB |
13
src/main/resources/{{MECHANICAL_ID}}.mixins.json.jinja
Normal file
13
src/main/resources/{{MECHANICAL_ID}}.mixins.json.jinja
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user