Initial commit
This commit is contained in:
commit
2dcb88ccec
5
.gitattributes
vendored
Normal file
5
.gitattributes
vendored
Normal file
|
|
@ -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
|
||||||
25
.gitignore
vendored
Normal file
25
.gitignore
vendored
Normal file
|
|
@ -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
|
||||||
127
build.gradle
Normal file
127
build.gradle
Normal file
|
|
@ -0,0 +1,127 @@
|
||||||
|
plugins {
|
||||||
|
id 'idea'
|
||||||
|
id 'net.minecraftforge.gradle' version '[6.0,6.2)'
|
||||||
|
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
|
||||||
|
id 'org.spongepowered.mixin' version '0.7.+'
|
||||||
|
}
|
||||||
|
|
||||||
|
version = '1.0'
|
||||||
|
group = 'team.rusty.exnihiloreborn'
|
||||||
|
base {
|
||||||
|
archivesName = 'exnihiloreborn'
|
||||||
|
}
|
||||||
|
|
||||||
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
||||||
|
|
||||||
|
minecraft {
|
||||||
|
mappings channel: 'parchment', version: "$parchment_mappings-$mc_version"
|
||||||
|
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
|
||||||
|
|
||||||
|
runs {
|
||||||
|
copyIdeResources = true
|
||||||
|
|
||||||
|
client {
|
||||||
|
workingDirectory project.file('run')
|
||||||
|
|
||||||
|
property 'forge.logging.console.level', 'debug'
|
||||||
|
|
||||||
|
mods {
|
||||||
|
exnihiloreborn {
|
||||||
|
source sourceSets.main
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
workingDirectory project.file('run/server')
|
||||||
|
|
||||||
|
property 'forge.logging.console.level', 'debug'
|
||||||
|
|
||||||
|
mods {
|
||||||
|
exnihiloreborn {
|
||||||
|
source sourceSets.main
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
data {
|
||||||
|
workingDirectory project.file('run')
|
||||||
|
|
||||||
|
property 'forge.logging.console.level', 'debug'
|
||||||
|
|
||||||
|
args '--mod', 'exnihiloreborn', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
|
||||||
|
|
||||||
|
mods {
|
||||||
|
exnihiloreborn {
|
||||||
|
source sourceSets.main
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Include resources generated by data generators.
|
||||||
|
sourceSets.main.resources { srcDir 'src/generated/resources' }
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
name = 'McJty maven'
|
||||||
|
url = 'https://maven.k-4u.nl'
|
||||||
|
content { includeGroup 'mcjty.theoneprobe' }
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
name = 'jei'
|
||||||
|
url = 'https://maven.blamejared.com/'
|
||||||
|
content { includeGroup "mezz.jei" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
minecraft("net.minecraftforge:forge:${mc_version}-${forge_version}")
|
||||||
|
|
||||||
|
// TOP
|
||||||
|
implementation(fg.deobf("mcjty.theoneprobe:theoneprobe:1.20.0-${top_version}") {
|
||||||
|
transitive = false
|
||||||
|
})
|
||||||
|
// JEI OPTIONAL
|
||||||
|
compileOnly(fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}"))
|
||||||
|
compileOnly(fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}"))
|
||||||
|
// at runtime, use the full JEI jar for Forge
|
||||||
|
runtimeOnly(fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}"))
|
||||||
|
}
|
||||||
|
|
||||||
|
def replaceProperties = [ mc_version: mc_version, mod_version: version ]
|
||||||
|
|
||||||
|
processResources {
|
||||||
|
inputs.properties replaceProperties
|
||||||
|
replaceProperties.put 'project', project
|
||||||
|
|
||||||
|
filesMatching(['META-INF/mods.toml']) {
|
||||||
|
expand replaceProperties
|
||||||
|
}
|
||||||
|
|
||||||
|
// Minify JSON resources
|
||||||
|
// Actual reduction in file size is just a few KB, but why not?
|
||||||
|
doLast {
|
||||||
|
fileTree(dir: outputs.files.asPath, include: "**/*.json").each {
|
||||||
|
File file ->
|
||||||
|
//noinspection UnnecessaryQualifiedReference
|
||||||
|
file.text = groovy.json.JsonOutput.toJson(new groovy.json.JsonSlurper().parse(file))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
manifest {
|
||||||
|
attributes([
|
||||||
|
"Specification-Title": "exnihiloreborn",
|
||||||
|
"Specification-Vendor": "exnihilorebornsareus",
|
||||||
|
"Specification-Version": "1", // We are version 1 of ourselves
|
||||||
|
"Implementation-Title": project.name,
|
||||||
|
"Implementation-Version": "${version}",
|
||||||
|
"Implementation-Vendor" :"exnihilorebornsareus",
|
||||||
|
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
|
||||||
|
])
|
||||||
|
}
|
||||||
|
}
|
||||||
6
changelog.md
Normal file
6
changelog.md
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
## Ex Nihilo Reborn - 1.0
|
||||||
|
- Ex Nihilo Reborn is a port mixed of the original Ex Nihilo from 1.7.10
|
||||||
|
and Ex Nihilo Adscensio for 1.10.2. I was unimpressed with Ex Nihilo Sequentia,
|
||||||
|
so I made this.
|
||||||
|
- Removed Andesite, Granite, and Diorite pebbles
|
||||||
|
- No coral seeds
|
||||||
15
gradle.properties
Normal file
15
gradle.properties
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
|
||||||
|
# This is required to provide enough memory for the Minecraft decompilation process.
|
||||||
|
org.gradle.jvmargs=-Xmx3G
|
||||||
|
org.gradle.daemon=false
|
||||||
|
org.gradle.cache=true
|
||||||
|
|
||||||
|
mc_version=1.20.1
|
||||||
|
forge_version=47.0.34
|
||||||
|
parchment_mappings=1.20.1-2023.06.26
|
||||||
|
|
||||||
|
geckolib_version=4.2
|
||||||
|
modonomicon_version=1.36.0
|
||||||
|
jei_version=15.0.0.12
|
||||||
|
curios_version=5.2.0-beta.3
|
||||||
|
top_version=9.0.0-1
|
||||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
Binary file not shown.
5
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
5
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
185
gradlew
vendored
Normal file
185
gradlew
vendored
Normal file
|
|
@ -0,0 +1,185 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright 2015 the original author or authors.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
##
|
||||||
|
## Gradle start up script for UN*X
|
||||||
|
##
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
# Attempt to set APP_HOME
|
||||||
|
# Resolve links: $0 may be a link
|
||||||
|
PRG="$0"
|
||||||
|
# Need this for relative symlinks.
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG=`dirname "$PRG"`"/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
SAVED="`pwd`"
|
||||||
|
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||||
|
APP_HOME="`pwd -P`"
|
||||||
|
cd "$SAVED" >/dev/null
|
||||||
|
|
||||||
|
APP_NAME="Gradle"
|
||||||
|
APP_BASE_NAME=`basename "$0"`
|
||||||
|
|
||||||
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
|
|
||||||
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
|
MAX_FD="maximum"
|
||||||
|
|
||||||
|
warn () {
|
||||||
|
echo "$*"
|
||||||
|
}
|
||||||
|
|
||||||
|
die () {
|
||||||
|
echo
|
||||||
|
echo "$*"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# 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
|
||||||
|
;;
|
||||||
|
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"
|
||||||
|
which java >/dev/null 2>&1 || 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
|
||||||
|
|
||||||
|
# Increase the maximum file descriptors if we can.
|
||||||
|
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
|
||||||
|
MAX_FD_LIMIT=`ulimit -H -n`
|
||||||
|
if [ $? -eq 0 ] ; then
|
||||||
|
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||||
|
MAX_FD="$MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
ulimit -n $MAX_FD
|
||||||
|
if [ $? -ne 0 ] ; then
|
||||||
|
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Darwin, add options to specify how the application appears in the dock
|
||||||
|
if $darwin; then
|
||||||
|
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin or MSYS, switch paths to Windows format before running java
|
||||||
|
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
|
||||||
|
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||||
|
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||||
|
|
||||||
|
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||||
|
|
||||||
|
# We build the pattern for arguments to be converted via cygpath
|
||||||
|
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||||
|
SEP=""
|
||||||
|
for dir in $ROOTDIRSRAW ; do
|
||||||
|
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||||
|
SEP="|"
|
||||||
|
done
|
||||||
|
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||||
|
# Add a user-defined pattern to the cygpath arguments
|
||||||
|
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||||
|
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||||
|
fi
|
||||||
|
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||||
|
i=0
|
||||||
|
for arg in "$@" ; do
|
||||||
|
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||||
|
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||||
|
|
||||||
|
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||||
|
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||||
|
else
|
||||||
|
eval `echo args$i`="\"$arg\""
|
||||||
|
fi
|
||||||
|
i=`expr $i + 1`
|
||||||
|
done
|
||||||
|
case $i in
|
||||||
|
0) set -- ;;
|
||||||
|
1) set -- "$args0" ;;
|
||||||
|
2) set -- "$args0" "$args1" ;;
|
||||||
|
3) set -- "$args0" "$args1" "$args2" ;;
|
||||||
|
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||||
|
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||||
|
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||||
|
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||||
|
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||||
|
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Escape application args
|
||||||
|
save () {
|
||||||
|
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
||||||
|
echo " "
|
||||||
|
}
|
||||||
|
APP_ARGS=`save "$@"`
|
||||||
|
|
||||||
|
# Collect all arguments for the java command, following the shell quoting and substitution rules
|
||||||
|
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
|
||||||
|
|
||||||
|
exec "$JAVACMD" "$@"
|
||||||
89
gradlew.bat
vendored
Normal file
89
gradlew.bat
vendored
Normal file
|
|
@ -0,0 +1,89 @@
|
||||||
|
@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=.
|
||||||
|
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%" == "0" goto execute
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:findJavaFromJavaHome
|
||||||
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
|
if exist "%JAVA_EXE%" goto execute
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
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%"=="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!
|
||||||
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:mainEnd
|
||||||
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
|
:omega
|
||||||
11
settings.gradle
Normal file
11
settings.gradle
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
gradlePluginPortal()
|
||||||
|
maven { url = 'https://maven.minecraftforge.net/' }
|
||||||
|
maven { url = 'https://maven.parchmentmc.org' }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
plugins {
|
||||||
|
//id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0'
|
||||||
|
}
|
||||||
308
src/generated/resources/.cache/cache
Normal file
308
src/generated/resources/.cache/cache
Normal file
|
|
@ -0,0 +1,308 @@
|
||||||
|
6b1f7c2a40a8907e7f7408f1abfb28078caa4fff assets/exnihiloreborn/blockstates/acacia_barrel.json
|
||||||
|
4cfcca92876cd40dce2731bf17e1c12bde0dc813 assets/exnihiloreborn/blockstates/acacia_crucible.json
|
||||||
|
ef543c60f5f20a84037814c027cfdecca0f4cea0 assets/exnihiloreborn/blockstates/acacia_sieve.json
|
||||||
|
239790a7c18c748b660d8ef88104bea785b6c8b2 assets/exnihiloreborn/blockstates/birch_barrel.json
|
||||||
|
d00f325339290b49a550cbe16457fcf99e5d5a0e assets/exnihiloreborn/blockstates/birch_crucible.json
|
||||||
|
da9be2724dd0b84eecab228d82785599313a025d assets/exnihiloreborn/blockstates/birch_sieve.json
|
||||||
|
96fb45b1314378aaa7fb3860ee0c551137607d23 assets/exnihiloreborn/blockstates/crimson_barrel.json
|
||||||
|
5dda0004c1720107f61245c74d9f382febb7c9ea assets/exnihiloreborn/blockstates/crimson_crucible.json
|
||||||
|
2fbf799c3aa62833b89eedcda3841115eb51d846 assets/exnihiloreborn/blockstates/crimson_sieve.json
|
||||||
|
cc9c3f04c5b8dab09cbe27daa63acd46d53d55e2 assets/exnihiloreborn/blockstates/crushed_end_stone.json
|
||||||
|
0cc83d101a7ba1c53e4233520603cb8ec90ea4e5 assets/exnihiloreborn/blockstates/crushed_netherrack.json
|
||||||
|
c57daf6b8fcfdedc131961f69c73b6507952afe3 assets/exnihiloreborn/blockstates/dark_oak_barrel.json
|
||||||
|
2e621058efc29a09a1a7ef63c8beff29629e949f assets/exnihiloreborn/blockstates/dark_oak_crucible.json
|
||||||
|
631b32a1d0ffaa6870a33b49c01ef90bcb1af498 assets/exnihiloreborn/blockstates/dark_oak_sieve.json
|
||||||
|
b80f3a9a366a319ffb13b430ac450f7e9a8da1c7 assets/exnihiloreborn/blockstates/dust.json
|
||||||
|
d6e60487cb7b9fe4895677bc27cf7ae460f4a6c8 assets/exnihiloreborn/blockstates/jungle_barrel.json
|
||||||
|
304d271ad49bc8295de2d10e16eb91506e1a3049 assets/exnihiloreborn/blockstates/jungle_crucible.json
|
||||||
|
bbad544438efbffb530fbafb3733069782c8a75f assets/exnihiloreborn/blockstates/jungle_sieve.json
|
||||||
|
7aa72fb4e265c728322964fdf9fd6ee36156cd00 assets/exnihiloreborn/blockstates/oak_barrel.json
|
||||||
|
21ad905736d2fdd2df8eb5a5e8263c6c1c23d799 assets/exnihiloreborn/blockstates/oak_crucible.json
|
||||||
|
3c2c217a2309840bb1d94dddd376f948617d43b8 assets/exnihiloreborn/blockstates/oak_sieve.json
|
||||||
|
1b11dc53dbabd2844e6763f47cae3388ad0c5264 assets/exnihiloreborn/blockstates/porcelain_crucible.json
|
||||||
|
859f034cece7abfa991b8b3cef4f194bbfafa2e8 assets/exnihiloreborn/blockstates/spruce_barrel.json
|
||||||
|
b60e62238d282b373cacdcaaa8f5cdfcf8773304 assets/exnihiloreborn/blockstates/spruce_crucible.json
|
||||||
|
b87591386e02d4f86a3faef2b43b89011d055542 assets/exnihiloreborn/blockstates/spruce_sieve.json
|
||||||
|
72a1cca44f9264a87045d73b6ba4b4422f893f7a assets/exnihiloreborn/blockstates/stone_barrel.json
|
||||||
|
035bba6565158e71f78ddc64421004001b72f9bd assets/exnihiloreborn/blockstates/unfired_crucible.json
|
||||||
|
43f536765740a10e87376f1868a352e9b3578e3b assets/exnihiloreborn/blockstates/warped_barrel.json
|
||||||
|
3da9a7f055c1ef45bddbbe4d2caab4010e4a94ba assets/exnihiloreborn/blockstates/warped_crucible.json
|
||||||
|
5bf22e4b5f24f6e634a7a5d2ffb507160d7df19b assets/exnihiloreborn/blockstates/warped_sieve.json
|
||||||
|
8593319de75b48dd4f6cd75c29344891b173b0e3 assets/exnihiloreborn/lang/en_us.json
|
||||||
|
fc7629ecbb61ad05a717b5399e494746aebd46f2 assets/exnihiloreborn/models/block/acacia_barrel.json
|
||||||
|
2faac013888461275178b85d135bee8c4587a1d3 assets/exnihiloreborn/models/block/acacia_crucible.json
|
||||||
|
8774297c443953ac2add65bfdd4eded703fbb412 assets/exnihiloreborn/models/block/acacia_sieve.json
|
||||||
|
0a0fd97607320822d7f126f6422922df0225c69a assets/exnihiloreborn/models/block/birch_barrel.json
|
||||||
|
732bd9803ef2351896e97f277eefc9f0857b34b0 assets/exnihiloreborn/models/block/birch_crucible.json
|
||||||
|
b03c2fe3e19cb42da6329bc0312b8bece38b0a01 assets/exnihiloreborn/models/block/birch_sieve.json
|
||||||
|
e78e763781a1dcd1919f9b466faa124048c703f0 assets/exnihiloreborn/models/block/crimson_barrel.json
|
||||||
|
d61d2a148163e9315d8ebd058323a59697503a8d assets/exnihiloreborn/models/block/crimson_crucible.json
|
||||||
|
ec509d5d0ce8307f4db0373effd841962fb444b2 assets/exnihiloreborn/models/block/crimson_sieve.json
|
||||||
|
a2dd7dc4b93718c1fa541cbbc4b707a0b10c7a45 assets/exnihiloreborn/models/block/crushed_end_stone.json
|
||||||
|
4a8f2f59570b6ee3abdd9332c422f0c4bd922a70 assets/exnihiloreborn/models/block/crushed_netherrack.json
|
||||||
|
da1a0e75d98233de9afc951a09d760ed8b17ba80 assets/exnihiloreborn/models/block/dark_oak_barrel.json
|
||||||
|
fcfa75f17fbf9ef1ab688920c9ad274f4a6af7c6 assets/exnihiloreborn/models/block/dark_oak_crucible.json
|
||||||
|
c55835b1aeba6642ddffe80282819cc31e75f1a1 assets/exnihiloreborn/models/block/dark_oak_sieve.json
|
||||||
|
bfc71b617371fc9b58281dab8db17e3022ed5976 assets/exnihiloreborn/models/block/dust.json
|
||||||
|
916d957dd5700f934d8b2e821762c812a23f244d assets/exnihiloreborn/models/block/jungle_barrel.json
|
||||||
|
63c0cbd8217e3b639b3a3187cd99a805f0cece29 assets/exnihiloreborn/models/block/jungle_crucible.json
|
||||||
|
b805f2bc24a1565fa0e86eeb5653e0d46a78e993 assets/exnihiloreborn/models/block/jungle_sieve.json
|
||||||
|
f8d2bd98ad407c49566ae911feba7abc531a4cd5 assets/exnihiloreborn/models/block/oak_barrel.json
|
||||||
|
08525e523958ca7b6c7540c2bef11f28fb7502c0 assets/exnihiloreborn/models/block/oak_crucible.json
|
||||||
|
39f9c13ade872068dbb48ecf7dc98c19d11fab75 assets/exnihiloreborn/models/block/oak_sieve.json
|
||||||
|
f124d29de3f40103c7e47b98c28f02f752e92f6c assets/exnihiloreborn/models/block/porcelain_crucible.json
|
||||||
|
34d343e599b93fad9b765dce84501504be0217c0 assets/exnihiloreborn/models/block/spruce_barrel.json
|
||||||
|
86245ab87ce1595f217d9a9d9c21f4d2303dfefe assets/exnihiloreborn/models/block/spruce_crucible.json
|
||||||
|
40db06387ec10438a8feb79ffdd6b53cd07e582d assets/exnihiloreborn/models/block/spruce_sieve.json
|
||||||
|
b2acd16c3cf321faee10b2a3863ce2797e1a026e assets/exnihiloreborn/models/block/stone_barrel.json
|
||||||
|
f454ed0ed5fa37fd1339f18063fb1cfdfd164669 assets/exnihiloreborn/models/block/unfired_crucible.json
|
||||||
|
ad9c5cf97b42805238a7edea2fdaeeb03e6da7d3 assets/exnihiloreborn/models/block/warped_barrel.json
|
||||||
|
953a84335205c9b8581d793d5c844f895a4f3135 assets/exnihiloreborn/models/block/warped_crucible.json
|
||||||
|
a89c05d07b7e05c6aaf2bb197aedb10786e1128f assets/exnihiloreborn/models/block/warped_sieve.json
|
||||||
|
b6b1c57f668edf98740db76fd14f133eaffd0720 assets/exnihiloreborn/models/item/acacia_barrel.json
|
||||||
|
183d0697b952c37b5c6818adb9fa8f6333693528 assets/exnihiloreborn/models/item/acacia_crucible.json
|
||||||
|
056527f91834d397e6e6d58ed593304290379d4a assets/exnihiloreborn/models/item/acacia_sieve.json
|
||||||
|
009913aff8f2b1c986022ae220711a6ae0a5b7b0 assets/exnihiloreborn/models/item/birch_barrel.json
|
||||||
|
38cbfac78e620cd843f87fb06bb82d0b782b10ce assets/exnihiloreborn/models/item/birch_crucible.json
|
||||||
|
1e55d3001b89131196e2633c5ca90b39a0fd3d85 assets/exnihiloreborn/models/item/birch_sieve.json
|
||||||
|
c5b025888aa5205fd99aa22ced491ab5d15d8367 assets/exnihiloreborn/models/item/bone_crook.json
|
||||||
|
14b3d5e284b7b3d39951712a1f1f7c4e1ff17d48 assets/exnihiloreborn/models/item/cooked_silk_worm.json
|
||||||
|
6bf1e8bafd9b964e601768304131f4f16d45cd0e assets/exnihiloreborn/models/item/crimson_barrel.json
|
||||||
|
a98fd77c49e09c5a3ddb17ff128157bd60ca9a8c assets/exnihiloreborn/models/item/crimson_crucible.json
|
||||||
|
b9a31f1db41dbd0b59f867b008ec55792061bdaa assets/exnihiloreborn/models/item/crimson_sieve.json
|
||||||
|
1cd6f833e1d0c8751cfc358d91d964c897de58d4 assets/exnihiloreborn/models/item/crook.json
|
||||||
|
28d934726ab844081edb590c59f3dcc3c2dc6bfb assets/exnihiloreborn/models/item/crushed_end_stone.json
|
||||||
|
6e2ecc834f0e35ed8f0f24b1bb2382c68f359a17 assets/exnihiloreborn/models/item/crushed_netherrack.json
|
||||||
|
3b66ea2aae7c884567ba388bf64e89c627d9ce23 assets/exnihiloreborn/models/item/dark_oak_barrel.json
|
||||||
|
a37fde390decb12fde8466cc3379ee12ab5fe25d assets/exnihiloreborn/models/item/dark_oak_crucible.json
|
||||||
|
8d83269151e363c2bdd9d0c428f856a0a05791fe assets/exnihiloreborn/models/item/dark_oak_sieve.json
|
||||||
|
e7c623c33a07c856eb70bb68c5504d64c1131d6a assets/exnihiloreborn/models/item/diamond_hammer.json
|
||||||
|
ce06221b61a1e59776244f6cd7297730dc6c44f7 assets/exnihiloreborn/models/item/dust.json
|
||||||
|
34b81e1056dc4a84b7cf40ca711e81a4d52d6113 assets/exnihiloreborn/models/item/golden_hammer.json
|
||||||
|
c568879b6ac167affec3e14eb12e5119178c8369 assets/exnihiloreborn/models/item/iron_hammer.json
|
||||||
|
f07bda7d8acb0858f4f5141496ec1b8f1ad8adca assets/exnihiloreborn/models/item/jungle_barrel.json
|
||||||
|
d6add4e04cec2661b245b69d228acc7237da42dc assets/exnihiloreborn/models/item/jungle_crucible.json
|
||||||
|
123aafb9e4c2d7b84a11788eb125f1dd4fb0f02f assets/exnihiloreborn/models/item/jungle_sieve.json
|
||||||
|
70120521c811abb2e8c81a6b06eb7d5c14219db4 assets/exnihiloreborn/models/item/oak_barrel.json
|
||||||
|
307de756c26a215396ab04a905ac79df5e96a948 assets/exnihiloreborn/models/item/oak_crucible.json
|
||||||
|
cabe1fe16d343bcd9338dcc1c7c52b9f992110e4 assets/exnihiloreborn/models/item/oak_sieve.json
|
||||||
|
6c25f161c7adc7db3961bbd9a24146b8edeb32b6 assets/exnihiloreborn/models/item/porcelain_crucible.json
|
||||||
|
d0baa6801590a4581fa94f168df5183730589fb1 assets/exnihiloreborn/models/item/silk_worm.json
|
||||||
|
8e0cecb3176800ff5972704e7251dffa7253d2e1 assets/exnihiloreborn/models/item/spruce_barrel.json
|
||||||
|
b853e1b5a36df4b5660e0fc413a9df9a145ce3f9 assets/exnihiloreborn/models/item/spruce_crucible.json
|
||||||
|
cc1c573870dac3f2a5c3e8e80964eb494cb2c3e9 assets/exnihiloreborn/models/item/spruce_sieve.json
|
||||||
|
7a1b6abcd79c1c797a0884380c926482e2323fb1 assets/exnihiloreborn/models/item/stone_barrel.json
|
||||||
|
b6aa4986ab295a968d7fb1630023714240a7b03f assets/exnihiloreborn/models/item/stone_hammer.json
|
||||||
|
b69a214d853d74c17a1a92114ab4c2f1316162fe assets/exnihiloreborn/models/item/unfired_crucible.json
|
||||||
|
42e0adade5d4e9f8c5bc0309ab9e82e375d77696 assets/exnihiloreborn/models/item/warped_barrel.json
|
||||||
|
afed51f68ebb12aaeffe6f8141b9c21ec950fb4f assets/exnihiloreborn/models/item/warped_crucible.json
|
||||||
|
b9fcf4827195310e0fc6120171bc0242bc440ef7 assets/exnihiloreborn/models/item/warped_sieve.json
|
||||||
|
fb15c1f086ed59aeb62879c7160f28a3d7ef4de3 assets/exnihiloreborn/models/item/wooden_hammer.json
|
||||||
|
6b13f0abd30f8e3935c86963e3b5b7a4258bd7dd data/exnihiloreborn/advancements/recipes/exnihiloreborn/acacia_barrel.json
|
||||||
|
5c134ce0d7c57e569bbf1bb9a6905976b34c2540 data/exnihiloreborn/advancements/recipes/exnihiloreborn/acacia_crucible.json
|
||||||
|
cbd050075da9b73b9738af87c8bb98b42510f452 data/exnihiloreborn/advancements/recipes/exnihiloreborn/birch_barrel.json
|
||||||
|
ee0e9d1c8c34cd7ff43b9ee286d9aa0a44dd6407 data/exnihiloreborn/advancements/recipes/exnihiloreborn/birch_crucible.json
|
||||||
|
bb7c50bcb94ee585343de89c7aca1713bc451b71 data/exnihiloreborn/advancements/recipes/exnihiloreborn/bone_crook.json
|
||||||
|
bcc07ba16eb241fe27411e70e9802fa9ccf1c725 data/exnihiloreborn/advancements/recipes/exnihiloreborn/compressed_crook.json
|
||||||
|
966e85a52859f9e071130353134d823b8e6d37f5 data/exnihiloreborn/advancements/recipes/exnihiloreborn/cooked_silk_worm.json
|
||||||
|
2eeffb066842df5bd36818c751e7e900bfab573c data/exnihiloreborn/advancements/recipes/exnihiloreborn/crimson_barrel.json
|
||||||
|
07fb507a770c9d70e80bd1e7f3c1b50090087521 data/exnihiloreborn/advancements/recipes/exnihiloreborn/crimson_crucible.json
|
||||||
|
4738a5e12744f6f0bc1411bd4a6d2d09f8c98930 data/exnihiloreborn/advancements/recipes/exnihiloreborn/crook.json
|
||||||
|
285be8d87ddf835429c7d6d61f5246c94faa54a3 data/exnihiloreborn/advancements/recipes/exnihiloreborn/dark_oak_barrel.json
|
||||||
|
01bc75c0be5fa8d224cedbc963f07e80a5fbd7ac data/exnihiloreborn/advancements/recipes/exnihiloreborn/dark_oak_crucible.json
|
||||||
|
ecc1a50dc52ef324615180e1b8caf4666d6bb0c6 data/exnihiloreborn/advancements/recipes/exnihiloreborn/diamond_hammer.json
|
||||||
|
f6b903bc4e0549a39d1319fea690090c52450373 data/exnihiloreborn/advancements/recipes/exnihiloreborn/golden_hammer.json
|
||||||
|
ea82d82f3598de41a34b675a87979bcf11c11908 data/exnihiloreborn/advancements/recipes/exnihiloreborn/iron_hammer.json
|
||||||
|
fa64e83b81957793f3e280e3295f70fb5a378e12 data/exnihiloreborn/advancements/recipes/exnihiloreborn/jungle_barrel.json
|
||||||
|
0ba940ea12af29bacb95bcf0256335e3deaf7eaf data/exnihiloreborn/advancements/recipes/exnihiloreborn/jungle_crucible.json
|
||||||
|
6c3cd676b4b31c9758a12b1f2207aa2b5a2f6dcc data/exnihiloreborn/advancements/recipes/exnihiloreborn/oak_barrel.json
|
||||||
|
c8ed20329333ddf22c2258ed797c1d3bb28490fe data/exnihiloreborn/advancements/recipes/exnihiloreborn/oak_crucible.json
|
||||||
|
bcbc1214981633751fbdbad75c1e15b2cc2c5e9c data/exnihiloreborn/advancements/recipes/exnihiloreborn/porcelain_crucible.json
|
||||||
|
e0de3a8f65d6f0ce24d3a73daa9ad49cd8f1eab0 data/exnihiloreborn/advancements/recipes/exnihiloreborn/spruce_barrel.json
|
||||||
|
8f9a667b15d0ca9e61d55514be28d3d68ab960be data/exnihiloreborn/advancements/recipes/exnihiloreborn/spruce_crucible.json
|
||||||
|
53237e2f0c0332e2b651a70caada4bf0883cd7d8 data/exnihiloreborn/advancements/recipes/exnihiloreborn/stone_barrel.json
|
||||||
|
1d6f6b945d4c8aea67e256309a2833ad62e40111 data/exnihiloreborn/advancements/recipes/exnihiloreborn/stone_hammer.json
|
||||||
|
23cad98d77125e56b162f66a4f7c063aaf976050 data/exnihiloreborn/advancements/recipes/exnihiloreborn/unfired_crucible.json
|
||||||
|
a833117f7ea1ea35025691aa1e9392de75b4d27a data/exnihiloreborn/advancements/recipes/exnihiloreborn/warped_barrel.json
|
||||||
|
95709fa9f528fe8864a380e47271fa136a4d23a4 data/exnihiloreborn/advancements/recipes/exnihiloreborn/warped_crucible.json
|
||||||
|
6bb59781f6303c94205223365921e3197f07eace data/exnihiloreborn/advancements/recipes/exnihiloreborn/wooden_hammer.json
|
||||||
|
7e1a9f4c6014042f1b37e13e5f41d7f1aa1c3782 data/exnihiloreborn/loot_tables/blocks/acacia_barrel.json
|
||||||
|
55e3f3cfedf47ad775d1354ea0850fa6e2da1515 data/exnihiloreborn/loot_tables/blocks/birch_barrel.json
|
||||||
|
56f8a57d4951f080a470c6a993aded60978da8c5 data/exnihiloreborn/loot_tables/blocks/compressed_cobblestone.json
|
||||||
|
96e3fd87da7d782ee296f92e0d21f7126952203c data/exnihiloreborn/loot_tables/blocks/compressed_dirt.json
|
||||||
|
7dcf5bcc109a8232bad0eb5da20452751e28f742 data/exnihiloreborn/loot_tables/blocks/compressed_dust.json
|
||||||
|
d3c6080124dec154a147f7b387f7b45f7a69b08f data/exnihiloreborn/loot_tables/blocks/compressed_sand.json
|
||||||
|
13b8c702c4a29592805d50ad6be1fb418a762d68 data/exnihiloreborn/loot_tables/blocks/crimson_barrel.json
|
||||||
|
0df0157da6efb67e302174b78a11336042b55029 data/exnihiloreborn/loot_tables/blocks/dark_oak_barrel.json
|
||||||
|
153332e35013ac8ce00c3c7d9e96fcf2b7418f12 data/exnihiloreborn/loot_tables/blocks/dust.json
|
||||||
|
3f997adf0dbd796a553c901d44bf344d0758393a data/exnihiloreborn/loot_tables/blocks/infested_leaves.json
|
||||||
|
b72effb758675549b6bed2a131f9bbe3e46ea505 data/exnihiloreborn/loot_tables/blocks/jungle_barrel.json
|
||||||
|
cf78b1f62fe2f14a3aeeab9c55a594d4fafd965d data/exnihiloreborn/loot_tables/blocks/oak_barrel.json
|
||||||
|
12541930dfff7ddf4fdaaeeb744ef361e9a85dcb data/exnihiloreborn/loot_tables/blocks/spruce_barrel.json
|
||||||
|
5bc1d6f1f8f190d6da258c215b450156cb915853 data/exnihiloreborn/loot_tables/blocks/stone_barrel.json
|
||||||
|
bb4e1d6e0d46871a50fd12a0ee6ec2522044fd05 data/exnihiloreborn/loot_tables/blocks/warped_barrel.json
|
||||||
|
80cd88ac7cdf83c4d85ed33eaec23b1e5a30be37 data/exnihiloreborn/recipes/acacia_barrel.json
|
||||||
|
00289c1036ea6eb7b7bc352dfe730aefabcfccf3 data/exnihiloreborn/recipes/acacia_crucible.json
|
||||||
|
9a5593056cd0123fc99ceee4e8b4e0baab451e77 data/exnihiloreborn/recipes/barrel_compost/apple.json
|
||||||
|
17484460671baa5c0030bad675d7ef998c39df8b data/exnihiloreborn/recipes/barrel_compost/bread.json
|
||||||
|
924c20ccecc4549c3da5ebecbdd98bb737c896d4 data/exnihiloreborn/recipes/barrel_compost/cookie.json
|
||||||
|
ef70f45c9dae5e819ae41a3fce333cfdea509e4a data/exnihiloreborn/recipes/barrel_compost/kelp.json
|
||||||
|
7fa9a414885aeeba54fd530d895620f436991dcc data/exnihiloreborn/recipes/barrel_compost/leaves.json
|
||||||
|
153fcdc950855b9f18e417e249daa1bf22ee3af1 data/exnihiloreborn/recipes/barrel_compost/melon.json
|
||||||
|
d48c313e8904ac474d823ab9cb3f0028df15356f data/exnihiloreborn/recipes/barrel_compost/melon_slice.json
|
||||||
|
53d049cf51ddc6902503dafffc5298704dab0dc2 data/exnihiloreborn/recipes/barrel_compost/mushrooms.json
|
||||||
|
93c059428567a58439cfd7c999eb75a298a2419e data/exnihiloreborn/recipes/barrel_compost/nether_wart.json
|
||||||
|
5bf24aacd0eee32a5f8c89b22f108cb9715366d6 data/exnihiloreborn/recipes/barrel_compost/pumpkin.json
|
||||||
|
9bd10d56444191c6f88d9c8839446675de4eef37 data/exnihiloreborn/recipes/barrel_compost/pumpkin_pie.json
|
||||||
|
ff828be14e992c890b3066ac0f24f0f8d2f465e5 data/exnihiloreborn/recipes/barrel_compost/saplings.json
|
||||||
|
729c7a6d72e29103b1c6d265e02238ad1e8add20 data/exnihiloreborn/recipes/barrel_compost/seagrass.json
|
||||||
|
62ead8b6d3747c3467e7e14f6f34c816bfcbcd40 data/exnihiloreborn/recipes/barrel_compost/seeds.json
|
||||||
|
b8c51d6410b50dee022db5ccac01b9800bade308 data/exnihiloreborn/recipes/barrel_compost/silk_worms.json
|
||||||
|
2d14fef43c12935f895bfd958a14bb3ca5fc9223 data/exnihiloreborn/recipes/barrel_compost/small_flowers.json
|
||||||
|
fbe5d2c7c275df5683b20b1e15f12bec2f426f6d data/exnihiloreborn/recipes/barrel_compost/spider_eye.json
|
||||||
|
d3ab57bca3495e7537716f168554ce6ae9f72f9f data/exnihiloreborn/recipes/barrel_compost/sweet_berries.json
|
||||||
|
6f6f93ffa5bcc28948106e6efc0fe275b7fecb2e data/exnihiloreborn/recipes/barrel_compost/tall_flowers.json
|
||||||
|
74ddc2ca01f0e2a35e609633bc7a67793c63f473 data/exnihiloreborn/recipes/barrel_compost/wheat.json
|
||||||
|
00f9ee47d01b26ff9fdb01032c2629c9701ff5a1 data/exnihiloreborn/recipes/birch_barrel.json
|
||||||
|
c9d521c98e634eaee6a64a5ac152902ba10dd694 data/exnihiloreborn/recipes/birch_crucible.json
|
||||||
|
00c545fb1552eda6d048d2360ae59c8fc837dc7e data/exnihiloreborn/recipes/bone_crook.json
|
||||||
|
eeed21a616d81213a7fc605b51b0c18e46bde843 data/exnihiloreborn/recipes/compressed_crook.json
|
||||||
|
0830189e0e494f36030ed2511639528df4473d13 data/exnihiloreborn/recipes/cooked_silk_worm.json
|
||||||
|
327708e5cc4c5cb2c1c3ba88bb3cf3939039ec2b data/exnihiloreborn/recipes/crimson_barrel.json
|
||||||
|
37cc68ed5337fdf24bafeee830b327009ebaa33e data/exnihiloreborn/recipes/crimson_crucible.json
|
||||||
|
9f1f7d3b1498aea50cd4aca636fe97ff495073b3 data/exnihiloreborn/recipes/crook.json
|
||||||
|
3de823e6a637550f483788fbbf0bcf3eb754344f data/exnihiloreborn/recipes/dark_oak_barrel.json
|
||||||
|
91505bedc6771829bd6e2e3ced6e992c107c96b7 data/exnihiloreborn/recipes/dark_oak_crucible.json
|
||||||
|
2c6e77c878721480afc9f90262db4c037d651237 data/exnihiloreborn/recipes/diamond_hammer.json
|
||||||
|
4bfc3eabfc36a2d19f0c55227f0e4a322d823962 data/exnihiloreborn/recipes/golden_hammer.json
|
||||||
|
f57cb3b8bf65c90a48cc388152840f7b11ce3556 data/exnihiloreborn/recipes/hammer/crushing_red_sandstone.json
|
||||||
|
23e4048ef09ed61a26ba66da7aadd5adfb522415 data/exnihiloreborn/recipes/hammer/crushing_sandstone.json
|
||||||
|
2d4174edc94e859a604bed46199db915a6927260 data/exnihiloreborn/recipes/hammer/crushing_stone_bricks.json
|
||||||
|
b69e7d7dda133d91b025d36ef84566ac44f7f6dc data/exnihiloreborn/recipes/hammer/dust.json
|
||||||
|
f487e8a70d29641a70d76f274957ba42286963e0 data/exnihiloreborn/recipes/hammer/gravel.json
|
||||||
|
12e8c032a7db4148d0006d66ff1fbd0373935803 data/exnihiloreborn/recipes/hammer/sand.json
|
||||||
|
281e8e15a3159a508fe4262ad2ce2113d7ceac3c data/exnihiloreborn/recipes/hammer/stone_pebbles.json
|
||||||
|
ced6fb12c0fbc529e98572cbd3452891e0564fe7 data/exnihiloreborn/recipes/iron_hammer.json
|
||||||
|
c918efafcf434580d9b47d0a1ec3dbfdb28045f6 data/exnihiloreborn/recipes/jungle_barrel.json
|
||||||
|
a19f3bc2479dcacc247de14ba6869ffc001c8dea data/exnihiloreborn/recipes/jungle_crucible.json
|
||||||
|
d829ab200ba6efdc0d1a9758759289363c132f5d data/exnihiloreborn/recipes/lava_crucible/cobblestone.json
|
||||||
|
ffaec302cf020443f66ca28f8e8a8ed427bbd89b data/exnihiloreborn/recipes/lava_crucible/gravel.json
|
||||||
|
b3ebb98ef1ea9ac7e49d77d23ec0e984faf6537e data/exnihiloreborn/recipes/lava_crucible/netherrack.json
|
||||||
|
f8bb7bbed78bf4dae074eaa05326d803337a489c data/exnihiloreborn/recipes/lava_crucible/stone.json
|
||||||
|
af075fdc2fdc2cd328c6e7d5d22044780b5a00b9 data/exnihiloreborn/recipes/oak_barrel.json
|
||||||
|
70bc1f2f8c7d3da8eada077d8658185a8d6b5055 data/exnihiloreborn/recipes/oak_crucible.json
|
||||||
|
c05d612814c3125dc7c4e1a370cd073d3a63300c data/exnihiloreborn/recipes/porcelain_crucible.json
|
||||||
|
62037aa67646438cc78d36b3fc481f5e3d2f8fe5 data/exnihiloreborn/recipes/sieve/beetroot_seeds.json
|
||||||
|
60d53c7435b74119da7d0d94bf994831ad8eaed8 data/exnihiloreborn/recipes/sieve/melon_seeds.json
|
||||||
|
8c3674b088a37bf1fa425ac09c014a56d3799612 data/exnihiloreborn/recipes/sieve/pumpkin_seeds.json
|
||||||
|
0c3425075a3cdd2170d75d3a0db1798ccce457d7 data/exnihiloreborn/recipes/sieve/stone_pebble.json
|
||||||
|
8e15ced335e2cbd6cd529f5f87484e22d9a53a87 data/exnihiloreborn/recipes/sieve/wheat_seeds.json
|
||||||
|
300c398ab36fc28e82f8cb8896dc904e600495d5 data/exnihiloreborn/recipes/spruce_barrel.json
|
||||||
|
a6b1b5fc9a290b5f8603510daf8d9399b4de9c10 data/exnihiloreborn/recipes/spruce_crucible.json
|
||||||
|
5de67d9a1ebd11bd5eacb443f94be5a47823e552 data/exnihiloreborn/recipes/stone_barrel.json
|
||||||
|
2e5789cb2eb0ba068bbf4f53d970b68fe2388e9e data/exnihiloreborn/recipes/stone_hammer.json
|
||||||
|
e08d2edc60f419dd2a508de85316391d67b9c207 data/exnihiloreborn/recipes/unfired_crucible.json
|
||||||
|
655c330907b76195e87fa161d146cb0100033ca4 data/exnihiloreborn/recipes/warped_barrel.json
|
||||||
|
a3e0957d9b6c1f42fed4d067bf9e9d9f318c4f93 data/exnihiloreborn/recipes/warped_crucible.json
|
||||||
|
f04fcb9681c6ff62234de6a4c63ac34bbb9b5d36 data/exnihiloreborn/recipes/water_crucible/apple.json
|
||||||
|
da94cf0fc55ba1eee518547737498bf97a7f4f86 data/exnihiloreborn/recipes/water_crucible/cactus.json
|
||||||
|
a142cf2209793519f0bce78be556a94f6537d4e8 data/exnihiloreborn/recipes/water_crucible/leaves.json
|
||||||
|
4287d1f9c6c075c455ad09494e61c972f084d779 data/exnihiloreborn/recipes/water_crucible/melon.json
|
||||||
|
854fded794e66307815bf312c49178f9913ac000 data/exnihiloreborn/recipes/water_crucible/melon_slice.json
|
||||||
|
7ca6f356f6aa83273998591beab8297eb0939e63 data/exnihiloreborn/recipes/water_crucible/pumpkin.json
|
||||||
|
0105732c70823f5d877c74e31bc7dca75016a02d data/exnihiloreborn/recipes/water_crucible/saplings.json
|
||||||
|
05b0098dcf57c14680657d6e4a53560ea4f93ed0 data/exnihiloreborn/recipes/water_crucible/small_flowers.json
|
||||||
|
89594753b56d1e8472441092228d11d8fb331740 data/exnihiloreborn/recipes/water_crucible/sweet_berries.json
|
||||||
|
356317e7828186a65e04c364f8b41466755cad82 data/exnihiloreborn/recipes/water_crucible/tall_flowers.json
|
||||||
|
8e71b4e52184f7b6997eca3c9b8df1b4d59d885b data/exnihiloreborn/recipes/wooden_hammer.json
|
||||||
|
28cc96bf923f4243eafb2f424562c080c13776b9 data/exnihiloreborn/tags/items/compressed_hammers.json
|
||||||
|
b66a5a958fc3d99897f32b6c50ead81d28a54434 data/exnihiloreborn/tags/items/crooks.json
|
||||||
|
98b73372f2e5fb304543394d7226cf167e489491 data/exnihiloreborn/tags/items/hammers.json
|
||||||
|
b05cd8294321449882aa1b4378b355a0357d29c0 data/minecraft/advancements/recipes/exnihiloreborn/cooked_silk_worm_from_smoking.json
|
||||||
|
d7f16a5ad2b46b72cc4270e809e342775fa1a91c data/minecraft/recipes/cooked_silk_worm_from_smoking.json
|
||||||
|
cc64a594a266c61f9b417095b48483644216923f data/minecraft/tags/blocks/acacia_logs.json
|
||||||
|
10bdf4ae09461a8befbc6db074f0c87810a179c8 data/minecraft/tags/blocks/anvil.json
|
||||||
|
98ed40a9ce70e2db6314eb20b0d798def90cd5ad data/minecraft/tags/blocks/bamboo_plantable_on.json
|
||||||
|
0bd4a7ad9fb3945080016c0c513a71666f1fa45c data/minecraft/tags/blocks/banners.json
|
||||||
|
eb26bd99d17e673ddcd07ef7f38dd6ebe4549404 data/minecraft/tags/blocks/base_stone_nether.json
|
||||||
|
5214bb43c66d495441732b69df204f2460edd494 data/minecraft/tags/blocks/base_stone_overworld.json
|
||||||
|
2c730d92b3c8bcae7f62381358d05a2994910647 data/minecraft/tags/blocks/beacon_base_blocks.json
|
||||||
|
cc19b2ce5b4f8d513515eaeff4f8aa1725b038b7 data/minecraft/tags/blocks/beds.json
|
||||||
|
28d9d739651aa47e95879352a12477c2955448bc data/minecraft/tags/blocks/bee_growables.json
|
||||||
|
7287fc69a24712818e7bb083eb0ec7eb8ad93d22 data/minecraft/tags/blocks/beehives.json
|
||||||
|
c4119acccb760f40cc53a372a663ef7202048573 data/minecraft/tags/blocks/birch_logs.json
|
||||||
|
331374fcc23ad23fe964854acef30097211d234e data/minecraft/tags/blocks/buttons.json
|
||||||
|
271abebf80b907324609fcf4515fd54d1256703e data/minecraft/tags/blocks/campfires.json
|
||||||
|
13952d80b58aeec6e0eedccd3ddf31a863df7945 data/minecraft/tags/blocks/carpets.json
|
||||||
|
f737e48a0a53d2326c89e7d22205ae282bf14ba8 data/minecraft/tags/blocks/climbable.json
|
||||||
|
351098f7d8142e1e4817b1f637a0f4d554cf0c7d data/minecraft/tags/blocks/coral_blocks.json
|
||||||
|
ffce4d9383da7dbaea8fc3beb3274a87f0fd58a6 data/minecraft/tags/blocks/coral_plants.json
|
||||||
|
8c2b7258d84870e024525f5c39a271c8d1229b63 data/minecraft/tags/blocks/corals.json
|
||||||
|
df61716e1ac18ac14aec90b5380f2912d003d3c6 data/minecraft/tags/blocks/crimson_stems.json
|
||||||
|
6a1d3975d7be1769c8ab82c38891f0eb5c4f7cf4 data/minecraft/tags/blocks/crops.json
|
||||||
|
66d8f495d38fd65a5d878009e381e229278a2e0e data/minecraft/tags/blocks/dark_oak_logs.json
|
||||||
|
41f37916879608eed7f4602ce79a1b21a14d0434 data/minecraft/tags/blocks/doors.json
|
||||||
|
09f673d40ce1656aa6762c7648373e1b2bca6245 data/minecraft/tags/blocks/dragon_immune.json
|
||||||
|
b9632e149fc25c3e732ed4c80577c3b88cba171d data/minecraft/tags/blocks/enderman_holdable.json
|
||||||
|
08f309abe5bee3cb77fa78626d0d11576b95eb31 data/minecraft/tags/blocks/fence_gates.json
|
||||||
|
8f291eb61c0fb314c0ad9c0253bcabbf93675a93 data/minecraft/tags/blocks/fences.json
|
||||||
|
515488fb4f5e6fdabfa79481571614283c3741a9 data/minecraft/tags/blocks/fire.json
|
||||||
|
e741db23dc6f63187460b39e2fd4b5989f6c268c data/minecraft/tags/blocks/flower_pots.json
|
||||||
|
14b8d5f845b0c48e3c62466258c5a1d508c59da5 data/minecraft/tags/blocks/flowers.json
|
||||||
|
62c882e7cfd5cd28d7640fe60c94e6817afb811e data/minecraft/tags/blocks/gold_ores.json
|
||||||
|
a53af57695f5ae2c7076fc645a798201f4eba593 data/minecraft/tags/blocks/guarded_by_piglins.json
|
||||||
|
07f68e4763cb27322af0824eae4a8d56e10b9246 data/minecraft/tags/blocks/hoglin_repellents.json
|
||||||
|
6a357118cbaf9faa2d0bd0495c5247dadce3fe52 data/minecraft/tags/blocks/ice.json
|
||||||
|
6a0a372baf9147d4b3e85cc46301e1e72c3b393c data/minecraft/tags/blocks/impermeable.json
|
||||||
|
98b39cf1f9ea43f3f4b22dbd718f3f8b30606fdd data/minecraft/tags/blocks/infiniburn_end.json
|
||||||
|
bb24015cb753c1592206891a800b04b5abda4339 data/minecraft/tags/blocks/infiniburn_nether.json
|
||||||
|
305fe272833afea72f97591d3555e3566f54eaba data/minecraft/tags/blocks/infiniburn_overworld.json
|
||||||
|
f26ca94468ebfc40099f3f2387a1a986403ffb36 data/minecraft/tags/blocks/jungle_logs.json
|
||||||
|
703bb97646721fc12e3c4ccd3dff9413add224f4 data/minecraft/tags/blocks/leaves.json
|
||||||
|
640c19329c7cbb0bb94a6416947857edc2ffea4d data/minecraft/tags/blocks/logs.json
|
||||||
|
db1ab1ed896a7e45212c93f307dee6f52d8dfa55 data/minecraft/tags/blocks/logs_that_burn.json
|
||||||
|
a61ce092a0cba8201832e3e71ea2dcfde6cbd867 data/minecraft/tags/blocks/mushroom_grow_block.json
|
||||||
|
40737af63de1cafd9baa1cef9bf08e7f5cf74079 data/minecraft/tags/blocks/non_flammable_wood.json
|
||||||
|
3885d5904ab09945dcff7697f01515438f30aeb2 data/minecraft/tags/blocks/nylium.json
|
||||||
|
6fb332fe9223f98ad2bfa07a673bd284f1a46127 data/minecraft/tags/blocks/oak_logs.json
|
||||||
|
b37b4708db0159c68602e2936ba133436a8b4dae data/minecraft/tags/blocks/piglin_repellents.json
|
||||||
|
4e29a5f501d2d4badb4090d06eddef9b25fe96d3 data/minecraft/tags/blocks/planks.json
|
||||||
|
e638584b6bd73b4740d21b71a2693044abe3d3ca data/minecraft/tags/blocks/portals.json
|
||||||
|
6d84dcae6236185e4b25df1c06bb34e5cbe04e8c data/minecraft/tags/blocks/pressure_plates.json
|
||||||
|
2d2c74dda901bbd6ba0c550c5382ab51a5a82745 data/minecraft/tags/blocks/prevent_mob_spawning_inside.json
|
||||||
|
fb703660094d60e13c6dcacee036356c207a0843 data/minecraft/tags/blocks/rails.json
|
||||||
|
b034b4a14f3411c66ed7088642d8369e157a4e93 data/minecraft/tags/blocks/sand.json
|
||||||
|
b5b0d52ba483e6d85bc0ff6ee81350a7120e708b data/minecraft/tags/blocks/saplings.json
|
||||||
|
6cc10fee1002cd63b3e1a791358c73fe7d671bb0 data/minecraft/tags/blocks/shulker_boxes.json
|
||||||
|
b22f77d82e51b5ba6d1b52e03f5912727b0457a4 data/minecraft/tags/blocks/signs.json
|
||||||
|
11aed5a73a4d9ab505170505f8b145edfb73a0c8 data/minecraft/tags/blocks/slabs.json
|
||||||
|
e9086500162394a98cfe9221e2081b49a277cc0c data/minecraft/tags/blocks/small_flowers.json
|
||||||
|
abe677791f6d916b3b307bd1270f4d6687516251 data/minecraft/tags/blocks/soul_fire_base_blocks.json
|
||||||
|
abe677791f6d916b3b307bd1270f4d6687516251 data/minecraft/tags/blocks/soul_speed_blocks.json
|
||||||
|
b004f3a3e1922a8b9a89b7b7cda7a7f2986d2f0a data/minecraft/tags/blocks/spruce_logs.json
|
||||||
|
1806d3b443a9654f81e8a0e9815a129ef17b33a6 data/minecraft/tags/blocks/stairs.json
|
||||||
|
d3e46da83d51b4d69b0c37e5dc4760934c36bf88 data/minecraft/tags/blocks/standing_signs.json
|
||||||
|
d35012ca4132eafef53e9ea68e84a7fc8fdd31f6 data/minecraft/tags/blocks/stone_bricks.json
|
||||||
|
a80bb35192330f6592610482814b73e32b5362b7 data/minecraft/tags/blocks/stone_pressure_plates.json
|
||||||
|
beb725be018ed98165b5c4c796b463baf18eba68 data/minecraft/tags/blocks/strider_warm_blocks.json
|
||||||
|
9b9d3f63cf193545f63194080fd1fc66ba69e7ff data/minecraft/tags/blocks/tall_flowers.json
|
||||||
|
15ee37a120b5ccd1d8986677bd26019e61b12bd5 data/minecraft/tags/blocks/trapdoors.json
|
||||||
|
dc3094aace807212a671548598e6ebf551f703d5 data/minecraft/tags/blocks/underwater_bonemeals.json
|
||||||
|
714c9ed3b16a4bbf99ed92a851c50e713f557f20 data/minecraft/tags/blocks/unstable_bottom_center.json
|
||||||
|
17248c8f056e7340f67ce50f0e3cedbc79832485 data/minecraft/tags/blocks/valid_spawn.json
|
||||||
|
cdaf7e91da81cec00b8d9bac65d54b6dd9f9d5b2 data/minecraft/tags/blocks/wall_corals.json
|
||||||
|
21b8bf0ef6b677f9b5b8d1e0398a6b4972c1ca1a data/minecraft/tags/blocks/wall_post_override.json
|
||||||
|
271c53cb9102f85dc318f1de46c2800ce3a1dc1f data/minecraft/tags/blocks/wall_signs.json
|
||||||
|
e3eeb6c6451a3d8d2c66ecf464bd8e8b7426c763 data/minecraft/tags/blocks/walls.json
|
||||||
|
fa0b5df5192cab3ac9a864f1ea9783ecf55db97c data/minecraft/tags/blocks/warped_stems.json
|
||||||
|
65d65a17100d9372f0adb5b1d6a91118ae9eb340 data/minecraft/tags/blocks/wart_blocks.json
|
||||||
|
dd2268ec7dfbec202c0946cfe4d7e29a6f904b89 data/minecraft/tags/blocks/wither_immune.json
|
||||||
|
abe677791f6d916b3b307bd1270f4d6687516251 data/minecraft/tags/blocks/wither_summon_base_blocks.json
|
||||||
|
b96e14548e654afcd1e02ff74c7087e65f90372a data/minecraft/tags/blocks/wooden_buttons.json
|
||||||
|
58c7f65650d0381cd95b86e8d1b2a9c40b61fcc3 data/minecraft/tags/blocks/wooden_doors.json
|
||||||
|
2395f3a3a34048c36bf81272e77d943de8d3f720 data/minecraft/tags/blocks/wooden_fences.json
|
||||||
|
1c30c5a0651b3223a562deb4e7389ab1675608cb data/minecraft/tags/blocks/wooden_pressure_plates.json
|
||||||
|
cd2a2d2457ca52209ebd0c54290d2c80579ad301 data/minecraft/tags/blocks/wooden_slabs.json
|
||||||
|
10a843d1d5098b35227da5304e96dc1156479a2d data/minecraft/tags/blocks/wooden_stairs.json
|
||||||
|
d25b93d3b70cb0c3ba7a8a0c93de95366c8dbccd data/minecraft/tags/blocks/wooden_trapdoors.json
|
||||||
|
721eaf2d7f45c4c481c9a86c14ebff6ffb83e3b3 data/minecraft/tags/blocks/wool.json
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/acacia_barrel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/acacia_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/acacia_sieve"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/birch_barrel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/birch_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/birch_sieve"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/crimson_barrel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/crimson_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/crimson_sieve"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/crushed_end_stone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/crushed_netherrack"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/dark_oak_barrel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/dark_oak_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/dark_oak_sieve"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/dust"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/jungle_barrel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/jungle_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/jungle_sieve"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/oak_barrel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/oak_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/oak_sieve"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/porcelain_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/spruce_barrel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/spruce_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/spruce_sieve"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/stone_barrel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/unfired_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/warped_barrel"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/warped_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"": {
|
||||||
|
"model": "exnihiloreborn:block/warped_sieve"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
"block.exnihiloreborn.acacia_barrel": "Acacia Barrel",
|
||||||
|
"block.exnihiloreborn.acacia_crucible": "Acacia Crucible",
|
||||||
|
"block.exnihiloreborn.birch_barrel": "Birch Barrel",
|
||||||
|
"block.exnihiloreborn.birch_crucible": "Birch Crucible",
|
||||||
|
"block.exnihiloreborn.compressed_cobblestone": "Compressed Cobblestone",
|
||||||
|
"block.exnihiloreborn.compressed_crushed_end_stone": "Compressed Crushed End Stone",
|
||||||
|
"block.exnihiloreborn.compressed_crushed_netherrack": "Compressed Crushed Netherrack",
|
||||||
|
"block.exnihiloreborn.compressed_dirt": "Compressed Dirt",
|
||||||
|
"block.exnihiloreborn.compressed_dust": "Compressed Dust",
|
||||||
|
"block.exnihiloreborn.compressed_sand": "Compressed Sand",
|
||||||
|
"block.exnihiloreborn.crimson_barrel": "Crimson Barrel",
|
||||||
|
"block.exnihiloreborn.crimson_crucible": "Crimson Crucible",
|
||||||
|
"block.exnihiloreborn.crushed_end_stone": "Crushed End Stone",
|
||||||
|
"block.exnihiloreborn.crushed_netherrack": "Crushed Netherrack",
|
||||||
|
"block.exnihiloreborn.dark_oak_barrel": "Dark_oak Barrel",
|
||||||
|
"block.exnihiloreborn.dark_oak_crucible": "Dark Oak Crucible",
|
||||||
|
"block.exnihiloreborn.dust": "Dust",
|
||||||
|
"block.exnihiloreborn.jungle_barrel": "Jungle Barrel",
|
||||||
|
"block.exnihiloreborn.jungle_crucible": "Jungle Crucible",
|
||||||
|
"block.exnihiloreborn.oak_barrel": "Oak Barrel",
|
||||||
|
"block.exnihiloreborn.oak_crucible": "Oak Crucible",
|
||||||
|
"block.exnihiloreborn.porcelain_crucible": "Porcelain Crucible",
|
||||||
|
"block.exnihiloreborn.spruce_barrel": "Spruce Barrel",
|
||||||
|
"block.exnihiloreborn.spruce_crucible": "Spruce Crucible",
|
||||||
|
"block.exnihiloreborn.stone_barrel": "Stone Barrel",
|
||||||
|
"block.exnihiloreborn.unfired_crucible": "Unfired Crucible",
|
||||||
|
"block.exnihiloreborn.warped_barrel": "Warped Barrel",
|
||||||
|
"block.exnihiloreborn.warped_crucible": "Warped Crucible",
|
||||||
|
"item.exnihiloreborn.bone_crook": "Bone Crook",
|
||||||
|
"item.exnihiloreborn.compressed_crook": "Compressed Crook",
|
||||||
|
"item.exnihiloreborn.compressed_diamond_hammer": "Compressed Diamond Hammer",
|
||||||
|
"item.exnihiloreborn.compressed_golden_hammer": "Compressed Golden Hammer",
|
||||||
|
"item.exnihiloreborn.compressed_iron_hammer": "Compressed Iron Hammer",
|
||||||
|
"item.exnihiloreborn.compressed_netherite_hammer": "Compressed Netherite Hammer",
|
||||||
|
"item.exnihiloreborn.compressed_stone_hammer": "Compressed Stone Hammer",
|
||||||
|
"item.exnihiloreborn.compressed_wooden_hammer": "Compressed Wooden Hammer",
|
||||||
|
"item.exnihiloreborn.cooked_silk_worm": "Cooked Silk Worm",
|
||||||
|
"item.exnihiloreborn.copper_ore_pieces": "Copper Ore Pieces",
|
||||||
|
"item.exnihiloreborn.crook": "Crook",
|
||||||
|
"item.exnihiloreborn.deepslate_pebble": "Deepslate Pebble",
|
||||||
|
"item.exnihiloreborn.diamond_hammer": "Diamond Hammer",
|
||||||
|
"item.exnihiloreborn.gold_ore_pieces": "Gold Ore Pieces",
|
||||||
|
"item.exnihiloreborn.golden_hammer": "Golden Hammer",
|
||||||
|
"item.exnihiloreborn.iron_hammer": "Iron Hammer",
|
||||||
|
"item.exnihiloreborn.iron_ore_pieces": "Iron Ore Pieces",
|
||||||
|
"item.exnihiloreborn.netherite_hammer": "Netherite Hammer",
|
||||||
|
"item.exnihiloreborn.silk_worm": "Silk Worm",
|
||||||
|
"item.exnihiloreborn.stone_hammer": "Stone Hammer",
|
||||||
|
"item.exnihiloreborn.stone_pebble": "Stone Pebble",
|
||||||
|
"item.exnihiloreborn.wooden_hammer": "Wooden Hammer"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_barrel",
|
||||||
|
"textures": {
|
||||||
|
"barrel": "minecraft:block/acacia_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "minecraft:block/acacia_log",
|
||||||
|
"top": "minecraft:block/acacia_log",
|
||||||
|
"bottom": "minecraft:block/acacia_log",
|
||||||
|
"side": "minecraft:block/acacia_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_sieve",
|
||||||
|
"textures": {
|
||||||
|
"texture": "minecraft:block/acacia_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_barrel",
|
||||||
|
"textures": {
|
||||||
|
"barrel": "minecraft:block/birch_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "minecraft:block/birch_log",
|
||||||
|
"top": "minecraft:block/birch_log",
|
||||||
|
"bottom": "minecraft:block/birch_log",
|
||||||
|
"side": "minecraft:block/birch_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_sieve",
|
||||||
|
"textures": {
|
||||||
|
"texture": "minecraft:block/birch_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_barrel",
|
||||||
|
"textures": {
|
||||||
|
"barrel": "minecraft:block/crimson_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "minecraft:block/crimson_stem",
|
||||||
|
"top": "minecraft:block/crimson_stem",
|
||||||
|
"bottom": "minecraft:block/crimson_stem",
|
||||||
|
"side": "minecraft:block/crimson_stem"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_sieve",
|
||||||
|
"textures": {
|
||||||
|
"texture": "minecraft:block/crimson_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:block/cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "exnihiloreborn:block/crushed_end_stone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:block/cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "exnihiloreborn:block/crushed_netherrack"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_barrel",
|
||||||
|
"textures": {
|
||||||
|
"barrel": "minecraft:block/dark_oak_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "minecraft:block/dark_oak_log",
|
||||||
|
"top": "minecraft:block/dark_oak_log",
|
||||||
|
"bottom": "minecraft:block/dark_oak_log",
|
||||||
|
"side": "minecraft:block/dark_oak_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_sieve",
|
||||||
|
"textures": {
|
||||||
|
"texture": "minecraft:block/dark_oak_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:block/cube_all",
|
||||||
|
"textures": {
|
||||||
|
"all": "exnihiloreborn:block/dust"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_barrel",
|
||||||
|
"textures": {
|
||||||
|
"barrel": "minecraft:block/jungle_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "minecraft:block/jungle_log",
|
||||||
|
"top": "minecraft:block/jungle_log",
|
||||||
|
"bottom": "minecraft:block/jungle_log",
|
||||||
|
"side": "minecraft:block/jungle_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_sieve",
|
||||||
|
"textures": {
|
||||||
|
"texture": "minecraft:block/jungle_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_barrel",
|
||||||
|
"textures": {
|
||||||
|
"barrel": "minecraft:block/oak_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "minecraft:block/oak_log",
|
||||||
|
"top": "minecraft:block/oak_log",
|
||||||
|
"bottom": "minecraft:block/oak_log",
|
||||||
|
"side": "minecraft:block/oak_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_sieve",
|
||||||
|
"textures": {
|
||||||
|
"texture": "minecraft:block/oak_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "exnihiloreborn:block/porcelain_crucible",
|
||||||
|
"top": "exnihiloreborn:block/porcelain_crucible",
|
||||||
|
"bottom": "exnihiloreborn:block/porcelain_crucible",
|
||||||
|
"side": "exnihiloreborn:block/porcelain_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_barrel",
|
||||||
|
"textures": {
|
||||||
|
"barrel": "minecraft:block/spruce_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "minecraft:block/spruce_log",
|
||||||
|
"top": "minecraft:block/spruce_log",
|
||||||
|
"bottom": "minecraft:block/spruce_log",
|
||||||
|
"side": "minecraft:block/spruce_log"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_sieve",
|
||||||
|
"textures": {
|
||||||
|
"texture": "minecraft:block/spruce_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_barrel",
|
||||||
|
"textures": {
|
||||||
|
"barrel": "minecraft:block/stone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "exnihiloreborn:block/unfired_crucible",
|
||||||
|
"top": "exnihiloreborn:block/unfired_crucible",
|
||||||
|
"bottom": "exnihiloreborn:block/unfired_crucible",
|
||||||
|
"side": "exnihiloreborn:block/unfired_crucible"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_barrel",
|
||||||
|
"textures": {
|
||||||
|
"barrel": "minecraft:block/warped_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_crucible",
|
||||||
|
"textures": {
|
||||||
|
"inside": "minecraft:block/warped_stem",
|
||||||
|
"top": "minecraft:block/warped_stem",
|
||||||
|
"bottom": "minecraft:block/warped_stem",
|
||||||
|
"side": "minecraft:block/warped_stem"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/template_sieve",
|
||||||
|
"textures": {
|
||||||
|
"texture": "minecraft:block/warped_planks"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/acacia_barrel"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/acacia_crucible"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/acacia_sieve"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/birch_barrel"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/birch_crucible"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/birch_sieve"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/handheld",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "exnihiloreborn:item/bone_crook"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "exnihiloreborn:item/cooked_silk_worm"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/crimson_barrel"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/crimson_crucible"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/crimson_sieve"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/handheld",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "exnihiloreborn:item/crook"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/crushed_end_stone"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/crushed_netherrack"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/dark_oak_barrel"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/dark_oak_crucible"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/dark_oak_sieve"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/handheld",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "exnihiloreborn:item/diamond_hammer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/dust"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/handheld",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "exnihiloreborn:item/golden_hammer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:item/handheld",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "exnihiloreborn:item/iron_hammer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/jungle_barrel"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/jungle_crucible"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/jungle_sieve"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/oak_barrel"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/oak_crucible"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/oak_sieve"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"parent": "exnihiloreborn:block/porcelain_crucible"
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user