mirror of
https://github.com/TeamMidnightDust/ThisRocks.git
synced 2025-12-16 19:05:10 +01:00
Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7b1fcfe647 | ||
|
|
1ef561be80 | ||
|
|
ea056019ec | ||
|
|
f09b349756 | ||
|
|
55cb0ec293 | ||
|
|
9e88035dba | ||
|
|
d18c72aad4 | ||
|
|
2056feac66 | ||
|
|
2e8f562270 | ||
|
|
ba7dc4ea23 | ||
|
|
353234fcd2 | ||
|
|
4f462a23bf | ||
|
|
458d91fd91 | ||
|
|
4dc7f9fa4e | ||
|
|
6c57822e82 | ||
|
|
f5a3f743a5 | ||
|
|
a2a834790c | ||
|
|
5616e19b21 |
4
.gitignore
vendored
Normal file → Executable file
4
.gitignore
vendored
Normal file → Executable file
@@ -1,5 +1,5 @@
|
||||
# gradle
|
||||
|
||||
build/
|
||||
.gradle/
|
||||
out/
|
||||
classes/
|
||||
@@ -21,4 +21,4 @@ bin/
|
||||
|
||||
# fabric
|
||||
|
||||
run/
|
||||
run/
|
||||
|
||||
2
README.md
Normal file → Executable file
2
README.md
Normal file → Executable file
@@ -1,2 +1,4 @@
|
||||
# This Rocks!
|
||||
https://www.curseforge.com/minecraft/mc-mods/this-rocks
|
||||
|
||||
This super amazing beautiful wonderful mod adds little rocks, sticks, pinecones and seashells to your world to make it feel more natural.
|
||||
|
||||
68
build.gradle
Normal file → Executable file
68
build.gradle
Normal file → Executable file
@@ -1,66 +1,70 @@
|
||||
plugins {
|
||||
id 'fabric-loom' version '0.4-SNAPSHOT'
|
||||
id 'fabric-loom' version '0.10-SNAPSHOT'
|
||||
id 'maven-publish'
|
||||
}
|
||||
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
|
||||
archivesBaseName = project.archives_base_name
|
||||
version = project.mod_version
|
||||
group = project.maven_group
|
||||
|
||||
minecraft {
|
||||
loom {
|
||||
accessWidenerPath = file("src/main/resources/thisrocks.accesswidener")
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven { url "https://maven.terraformersmc.com/releases" }
|
||||
maven { url "https://jitpack.io" }
|
||||
maven { url "https://maven.blamejared.com" }
|
||||
maven {
|
||||
url = "https://api.modrinth.com/maven"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
//to change the versions see the gradle.properties file
|
||||
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
||||
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
|
||||
modCompile "net.fabricmc:fabric-loader:${project.loader_version}"
|
||||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
||||
|
||||
// Fabric API. This is technically optional, but you probably want it anyway.
|
||||
modCompile "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||
|
||||
modImplementation "eu.midnightdust:midnight-hats:${midnighthats_version}"
|
||||
include "eu.midnightdust:midnight-hats:${midnighthats_version}"
|
||||
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
|
||||
|
||||
modImplementation "maven.modrinth:midnightlib:${midnightlib_version}"
|
||||
include "maven.modrinth:midnightlib:${midnightlib_version}"
|
||||
}
|
||||
|
||||
processResources {
|
||||
inputs.property "version", project.version
|
||||
|
||||
from(sourceSets.main.resources.srcDirs) {
|
||||
include "fabric.mod.json"
|
||||
filesMatching("fabric.mod.json") {
|
||||
expand "version": project.version
|
||||
}
|
||||
|
||||
from(sourceSets.main.resources.srcDirs) {
|
||||
exclude "fabric.mod.json"
|
||||
}
|
||||
}
|
||||
|
||||
// ensure that the encoding is set to UTF-8, no matter what the system default is
|
||||
// this fixes some edge cases with special characters not displaying correctly
|
||||
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = "UTF-8"
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
// ensure that the encoding is set to UTF-8, no matter what the system default is
|
||||
// this fixes some edge cases with special characters not displaying correctly
|
||||
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
|
||||
// If Javadoc is generated, this must be specified in that task too.
|
||||
it.options.encoding = "UTF-8"
|
||||
|
||||
// Minecraft 1.17 (21w19a) upwards uses Java 16.
|
||||
it.options.release = 16
|
||||
}
|
||||
|
||||
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
|
||||
// if it is present.
|
||||
// If you remove this task, sources will not be generated.
|
||||
task sourcesJar(type: Jar, dependsOn: classes) {
|
||||
classifier = "sources"
|
||||
from sourceSets.main.allSource
|
||||
java {
|
||||
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
|
||||
// if it is present.
|
||||
// If you remove this line, sources will not be generated.
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
jar {
|
||||
from "LICENSE"
|
||||
from("LICENSE") {
|
||||
rename { "${it}_${project.archivesBaseName}"}
|
||||
}
|
||||
}
|
||||
|
||||
// configure the maven publication
|
||||
@@ -77,9 +81,11 @@ publishing {
|
||||
}
|
||||
}
|
||||
|
||||
// select the repositories you want to publish to
|
||||
// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
|
||||
repositories {
|
||||
// uncomment to publish to the local maven
|
||||
// mavenLocal()
|
||||
// Add repositories to publish to here.
|
||||
// Notice: This block does NOT have the same function as the block in the top level.
|
||||
// The repositories here will be used for publishing your artifact, not for
|
||||
// retrieving dependencies.
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
12
gradle.properties
Normal file → Executable file
12
gradle.properties
Normal file → Executable file
@@ -3,16 +3,16 @@ org.gradle.jvmargs=-Xmx2G
|
||||
|
||||
# Fabric Properties
|
||||
# check these on https://fabricmc.net/use
|
||||
minecraft_version=1.16.4
|
||||
yarn_mappings=1.16.4+build.7
|
||||
loader_version=0.10.8
|
||||
minecraft_version=1.18-pre5
|
||||
yarn_mappings=1.18-pre5+build.2
|
||||
loader_version=0.12.5
|
||||
|
||||
# Mod Properties
|
||||
mod_version = 1.2.2
|
||||
mod_version = 1.5.2
|
||||
maven_group = eu.midnightdust.motschen
|
||||
archives_base_name = rocks
|
||||
|
||||
# Dependencies
|
||||
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
||||
fabric_version=0.17.2+build.396-1.16
|
||||
midnighthats_version=2.0.1
|
||||
fabric_version=0.42.8+1.18
|
||||
midnightlib_version=0.3.1
|
||||
|
||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file → Executable file
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file → Executable file
Binary file not shown.
2
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file → Executable file
2
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file → Executable file
@@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
270
gradlew
vendored
Normal file → Executable file
270
gradlew
vendored
Normal file → Executable file
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env sh
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Copyright 2015 the original author or authors.
|
||||
# Copyright © 2015-2021 the original authors.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
@@ -17,78 +17,113 @@
|
||||
#
|
||||
|
||||
##############################################################################
|
||||
##
|
||||
## Gradle start up script for UN*X
|
||||
##
|
||||
#
|
||||
# Gradle start up script for POSIX generated by Gradle.
|
||||
#
|
||||
# Important for running:
|
||||
#
|
||||
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
|
||||
# noncompliant, but you have some other compliant shell such as ksh or
|
||||
# bash, then to run this script, type that shell name before the whole
|
||||
# command line, like:
|
||||
#
|
||||
# ksh Gradle
|
||||
#
|
||||
# Busybox and similar reduced shells will NOT work, because this script
|
||||
# requires all of these POSIX shell features:
|
||||
# * functions;
|
||||
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
||||
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
||||
# * compound commands having a testable exit status, especially «case»;
|
||||
# * various built-in commands including «command», «set», and «ulimit».
|
||||
#
|
||||
# Important for patching:
|
||||
#
|
||||
# (2) This script targets any POSIX shell, so it avoids extensions provided
|
||||
# by Bash, Ksh, etc; in particular arrays are avoided.
|
||||
#
|
||||
# The "traditional" practice of packing multiple parameters into a
|
||||
# space-separated string is a well documented source of bugs and security
|
||||
# problems, so this is (mostly) avoided, by progressively accumulating
|
||||
# options in "$@", and eventually passing that to Java.
|
||||
#
|
||||
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
|
||||
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
|
||||
# see the in-line comments for details.
|
||||
#
|
||||
# There are tweaks for specific operating systems such as AIX, CygWin,
|
||||
# Darwin, MinGW, and NonStop.
|
||||
#
|
||||
# (3) This script is generated from the Groovy template
|
||||
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
# 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
|
||||
app_path=$0
|
||||
|
||||
# Need this for daisy-chained symlinks.
|
||||
while
|
||||
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
||||
[ -h "$app_path" ]
|
||||
do
|
||||
ls=$( ls -ld "$app_path" )
|
||||
link=${ls#*' -> '}
|
||||
case $link in #(
|
||||
/*) app_path=$link ;; #(
|
||||
*) app_path=$APP_HOME$link ;;
|
||||
esac
|
||||
done
|
||||
SAVED="`pwd`"
|
||||
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||
APP_HOME="`pwd -P`"
|
||||
cd "$SAVED" >/dev/null
|
||||
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||
|
||||
APP_NAME="Gradle"
|
||||
APP_BASE_NAME=`basename "$0"`
|
||||
APP_BASE_NAME=${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"
|
||||
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
|
||||
;;
|
||||
MINGW* )
|
||||
msys=true
|
||||
;;
|
||||
NONSTOP* )
|
||||
nonstop=true
|
||||
;;
|
||||
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"
|
||||
JAVACMD=$JAVA_HOME/jre/sh/java
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
JAVACMD=$JAVA_HOME/bin/java
|
||||
fi
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||
@@ -97,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD="java"
|
||||
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
|
||||
@@ -105,84 +140,95 @@ 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, switch paths to Windows format before running java
|
||||
if $cygwin ; 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=$((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" ;;
|
||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||
case $MAX_FD in #(
|
||||
max*)
|
||||
MAX_FD=$( ulimit -H -n ) ||
|
||||
warn "Could not query maximum file descriptor limit"
|
||||
esac
|
||||
case $MAX_FD in #(
|
||||
'' | soft) :;; #(
|
||||
*)
|
||||
ulimit -n "$MAX_FD" ||
|
||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||
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, 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.
|
||||
|
||||
# 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"
|
||||
# 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" )
|
||||
|
||||
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
|
||||
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
|
||||
cd "$(dirname "$0")"
|
||||
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
|
||||
|
||||
# Collect all arguments for the java command;
|
||||
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
||||
# shell script including quotes and variable substitutions, so put them in
|
||||
# double quotes to make sure that they get re-expanded; and
|
||||
# * put everything else in single quotes, so that it's not re-expanded.
|
||||
|
||||
set -- \
|
||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||
-classpath "$CLASSPATH" \
|
||||
org.gradle.wrapper.GradleWrapperMain \
|
||||
"$@"
|
||||
|
||||
# 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" "$@"
|
||||
|
||||
25
gradlew.bat
vendored
Normal file → Executable file
25
gradlew.bat
vendored
Normal file → Executable file
@@ -29,6 +29,9 @@ 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"
|
||||
|
||||
@@ -37,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
|
||||
|
||||
set JAVA_EXE=java.exe
|
||||
%JAVA_EXE% -version >NUL 2>&1
|
||||
if "%ERRORLEVEL%" == "0" goto init
|
||||
if "%ERRORLEVEL%" == "0" goto execute
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
@@ -51,7 +54,7 @@ goto fail
|
||||
set JAVA_HOME=%JAVA_HOME:"=%
|
||||
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||
|
||||
if exist "%JAVA_EXE%" goto init
|
||||
if exist "%JAVA_EXE%" goto execute
|
||||
|
||||
echo.
|
||||
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||
@@ -61,28 +64,14 @@ echo location of your Java installation.
|
||||
|
||||
goto fail
|
||||
|
||||
:init
|
||||
@rem Get command-line arguments, handling Windows variants
|
||||
|
||||
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||
|
||||
:win9xME_args
|
||||
@rem Slurp the command line arguments.
|
||||
set CMD_LINE_ARGS=
|
||||
set _SKIP=2
|
||||
|
||||
:win9xME_args_slurp
|
||||
if "x%~1" == "x" goto execute
|
||||
|
||||
set CMD_LINE_ARGS=%*
|
||||
|
||||
: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 %CMD_LINE_ARGS%
|
||||
"%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
|
||||
|
||||
0
settings.gradle
Normal file → Executable file
0
settings.gradle
Normal file → Executable file
10
src/main/java/eu/midnightdust/motschen/rocks/RocksClient.java
Normal file → Executable file
10
src/main/java/eu/midnightdust/motschen/rocks/RocksClient.java
Normal file → Executable file
@@ -1,14 +1,14 @@
|
||||
package eu.midnightdust.motschen.rocks;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.block.blockentity.BlockEntityInit;
|
||||
import eu.midnightdust.motschen.rocks.block.render.StarfishBlockEntityRenderer;
|
||||
import net.fabricmc.api.ClientModInitializer;
|
||||
import net.fabricmc.fabric.api.client.rendereregistry.v1.BlockEntityRendererRegistry;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.client.model.FabricModelPredicateProviderRegistry;
|
||||
import net.minecraft.util.Identifier;
|
||||
|
||||
public class RocksClient implements ClientModInitializer {
|
||||
|
||||
@Override
|
||||
public void onInitializeClient() {
|
||||
BlockEntityRendererRegistry.INSTANCE.register(BlockEntityInit.STARFISH_BE, StarfishBlockEntityRenderer::new);
|
||||
FabricModelPredicateProviderRegistry.register(RocksMain.Starfish.asItem(), new Identifier("red"), (stack, world, entity, seed) -> (stack.getNbt() != null && stack.getNbt().getString("variation").equals("red")) ? 1 : 0);
|
||||
FabricModelPredicateProviderRegistry.register(RocksMain.Starfish.asItem(), new Identifier("pink"), (stack, world, entity, seed) -> (stack.getNbt() != null && stack.getNbt().getString("variation").equals("pink")) ? 1 : 0);
|
||||
FabricModelPredicateProviderRegistry.register(RocksMain.Starfish.asItem(), new Identifier("orange"), (stack, world, entity, seed) -> (stack.getNbt() != null && stack.getNbt().getString("variation").equals("orange")) ? 1 : 0);
|
||||
}
|
||||
}
|
||||
|
||||
12
src/main/java/eu/midnightdust/motschen/rocks/RocksMain.java
Normal file → Executable file
12
src/main/java/eu/midnightdust/motschen/rocks/RocksMain.java
Normal file → Executable file
@@ -6,6 +6,7 @@ import eu.midnightdust.motschen.rocks.blockstates.RockVariation;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.SeashellVariation;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StarfishVariation;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StickVariation;
|
||||
import eu.midnightdust.motschen.rocks.config.RocksConfig;
|
||||
import eu.midnightdust.motschen.rocks.world.*;
|
||||
import eu.midnightdust.motschen.rocks.world.configured_feature.MiscFeatures;
|
||||
import eu.midnightdust.motschen.rocks.world.configured_feature.NetherFeatures;
|
||||
@@ -20,9 +21,7 @@ import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
|
||||
public class RocksMain implements ModInitializer {
|
||||
|
||||
public static final String MOD_ID = "rocks";
|
||||
|
||||
public static final ItemGroup RocksGroup = FabricItemGroupBuilder.build(new Identifier(MOD_ID, "rocks"), () -> new ItemStack(RocksMain.Rock));
|
||||
|
||||
public static final EnumProperty<RockVariation> ROCK_VARIATION = EnumProperty.of("variation", RockVariation.class);
|
||||
@@ -47,6 +46,8 @@ public class RocksMain implements ModInitializer {
|
||||
public static Block AcaciaStick = new Stick();
|
||||
public static Block JungleStick = new Stick();
|
||||
public static Block DarkOakStick = new Stick();
|
||||
public static Block CrimsonStick = new Stick();
|
||||
public static Block WarpedStick = new Stick();
|
||||
|
||||
public static Block Pinecone = new Pinecone();
|
||||
public static Block Seashell = new Seashell();
|
||||
@@ -66,6 +67,8 @@ public class RocksMain implements ModInitializer {
|
||||
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
RocksConfig.init("rocks", RocksConfig.class);
|
||||
|
||||
Registry.register(Registry.BLOCK, new Identifier(MOD_ID,"rock"), Rock);
|
||||
Registry.register(Registry.ITEM, new Identifier(MOD_ID,"rock"), new BlockItem(Rock, new Item.Settings().group(RocksMain.RocksGroup)));
|
||||
Registry.register(Registry.BLOCK, new Identifier(MOD_ID,"granite_rock"), GraniteRock);
|
||||
@@ -99,6 +102,10 @@ public class RocksMain implements ModInitializer {
|
||||
Registry.register(Registry.ITEM, new Identifier(MOD_ID,"jungle_stick"), new BlockItem(JungleStick, new Item.Settings().group(RocksMain.RocksGroup)));
|
||||
Registry.register(Registry.BLOCK, new Identifier(MOD_ID,"dark_oak_stick"), DarkOakStick);
|
||||
Registry.register(Registry.ITEM, new Identifier(MOD_ID,"dark_oak_stick"), new BlockItem(DarkOakStick, new Item.Settings().group(RocksMain.RocksGroup)));
|
||||
Registry.register(Registry.BLOCK, new Identifier(MOD_ID,"crimson_stick"), CrimsonStick);
|
||||
Registry.register(Registry.ITEM, new Identifier(MOD_ID,"crimson_stick"), new BlockItem(CrimsonStick, new Item.Settings().group(RocksMain.RocksGroup)));
|
||||
Registry.register(Registry.BLOCK, new Identifier(MOD_ID,"warped_stick"), WarpedStick);
|
||||
Registry.register(Registry.ITEM, new Identifier(MOD_ID,"warped_stick"), new BlockItem(WarpedStick, new Item.Settings().group(RocksMain.RocksGroup)));
|
||||
|
||||
Registry.register(Registry.BLOCK, new Identifier(MOD_ID,"geyser"), Geyser);
|
||||
Registry.register(Registry.ITEM, new Identifier(MOD_ID,"geyser"), new BlockItem(Geyser, new Item.Settings().group(RocksMain.RocksGroup)));
|
||||
@@ -126,7 +133,6 @@ public class RocksMain implements ModInitializer {
|
||||
StickFeatures.init();
|
||||
MiscFeatures.init();
|
||||
NetherFeatures.init();
|
||||
|
||||
FeatureInjector.init();
|
||||
BlockEntityInit.init();
|
||||
}
|
||||
|
||||
28
src/main/java/eu/midnightdust/motschen/rocks/block/NetherGeyser.java
Normal file → Executable file
28
src/main/java/eu/midnightdust/motschen/rocks/block/NetherGeyser.java
Normal file → Executable file
@@ -1,9 +1,12 @@
|
||||
package eu.midnightdust.motschen.rocks.block;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.block.blockentity.BlockEntityInit;
|
||||
import eu.midnightdust.motschen.rocks.block.blockentity.NetherGeyserBlockEntity;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.sound.BlockSoundGroup;
|
||||
import net.minecraft.state.StateManager;
|
||||
@@ -12,9 +15,13 @@ import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldView;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
public class NetherGeyser extends Block implements BlockEntityProvider {
|
||||
import java.util.Objects;
|
||||
|
||||
public class NetherGeyser extends BlockWithEntity implements BlockEntityProvider {
|
||||
|
||||
private static final VoxelShape SHAPE;
|
||||
public static final BooleanProperty ACTIVE = BooleanProperty.of("active");
|
||||
@@ -24,13 +31,20 @@ public class NetherGeyser extends Block implements BlockEntityProvider {
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(ACTIVE, false));
|
||||
}
|
||||
@Override
|
||||
public BlockEntity createBlockEntity(BlockView view) {
|
||||
return new NetherGeyserBlockEntity();
|
||||
public BlockRenderType getRenderType(BlockState state) {
|
||||
return BlockRenderType.MODEL;
|
||||
}
|
||||
@Override
|
||||
public BlockEntity createBlockEntity(BlockPos pos, BlockState state) {
|
||||
return new NetherGeyserBlockEntity(pos, state);
|
||||
}
|
||||
@Nullable
|
||||
public <T extends BlockEntity> BlockEntityTicker<T> getTicker(World world, BlockState state, BlockEntityType<T> type) {
|
||||
return checkType(type, BlockEntityInit.NETHER_GEYSER_BE, NetherGeyserBlockEntity::tick);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
return super.getPlacementState(itemPlacementContext)
|
||||
return Objects.requireNonNull(super.getPlacementState(itemPlacementContext))
|
||||
.with(ACTIVE, false);
|
||||
}
|
||||
|
||||
@@ -43,9 +57,7 @@ public class NetherGeyser extends Block implements BlockEntityProvider {
|
||||
return SHAPE;
|
||||
}
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(5, 0, 5, 11, 1, 11);
|
||||
|
||||
SHAPE = shape;
|
||||
SHAPE = createCuboidShape(5, 0, 5, 11, 1, 11);
|
||||
}
|
||||
|
||||
public boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) {
|
||||
|
||||
26
src/main/java/eu/midnightdust/motschen/rocks/block/OverworldGeyser.java
Normal file → Executable file
26
src/main/java/eu/midnightdust/motschen/rocks/block/OverworldGeyser.java
Normal file → Executable file
@@ -1,9 +1,12 @@
|
||||
package eu.midnightdust.motschen.rocks.block;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.block.blockentity.BlockEntityInit;
|
||||
import eu.midnightdust.motschen.rocks.block.blockentity.OverworldGeyserBlockEntity;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.sound.BlockSoundGroup;
|
||||
import net.minecraft.state.StateManager;
|
||||
@@ -14,9 +17,13 @@ import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.util.shape.VoxelShapes;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldView;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
public class OverworldGeyser extends Block implements BlockEntityProvider {
|
||||
import java.util.Objects;
|
||||
|
||||
public class OverworldGeyser extends BlockWithEntity implements BlockEntityProvider {
|
||||
|
||||
private static final VoxelShape SHAPE;
|
||||
private static final VoxelShape SNOWY_SHAPE;
|
||||
@@ -28,13 +35,20 @@ public class OverworldGeyser extends Block implements BlockEntityProvider {
|
||||
this.setDefaultState(this.stateManager.getDefaultState().with(ACTIVE, false).with(SNOWY, false));
|
||||
}
|
||||
@Override
|
||||
public BlockEntity createBlockEntity(BlockView view) {
|
||||
return new OverworldGeyserBlockEntity();
|
||||
public BlockRenderType getRenderType(BlockState state) {
|
||||
return BlockRenderType.MODEL;
|
||||
}
|
||||
@Override
|
||||
public BlockEntity createBlockEntity(BlockPos pos, BlockState state) {
|
||||
return new OverworldGeyserBlockEntity(pos, state);
|
||||
}
|
||||
@Nullable
|
||||
public <T extends BlockEntity> BlockEntityTicker<T> getTicker(World world, BlockState state, BlockEntityType<T> type) {
|
||||
return checkType(type, BlockEntityInit.OVERWORLD_GEYSER_BE, OverworldGeyserBlockEntity::tick);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
return super.getPlacementState(itemPlacementContext)
|
||||
return Objects.requireNonNull(super.getPlacementState(itemPlacementContext))
|
||||
.with(ACTIVE, false).with(SNOWY, false);
|
||||
}
|
||||
|
||||
@@ -44,7 +58,7 @@ public class OverworldGeyser extends Block implements BlockEntityProvider {
|
||||
}
|
||||
@Override
|
||||
public VoxelShape getOutlineShape(BlockState state, BlockView view, BlockPos pos, ShapeContext context) {
|
||||
if (state.get(SNOWY) == true) {return SNOWY_SHAPE;}
|
||||
if (state.get(SNOWY)) {return SNOWY_SHAPE;}
|
||||
else return SHAPE;
|
||||
}
|
||||
static {
|
||||
|
||||
8
src/main/java/eu/midnightdust/motschen/rocks/block/Pinecone.java
Normal file → Executable file
8
src/main/java/eu/midnightdust/motschen/rocks/block/Pinecone.java
Normal file → Executable file
@@ -7,6 +7,7 @@ import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.WorldAccess;
|
||||
import net.minecraft.world.WorldView;
|
||||
|
||||
public class Pinecone extends Block {
|
||||
@@ -23,12 +24,13 @@ public class Pinecone extends Block {
|
||||
return SHAPE;
|
||||
}
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(0, 0, 0, 16, 3, 16);
|
||||
|
||||
SHAPE = shape;
|
||||
SHAPE = createCuboidShape(0, 0, 0, 16, 3, 16);
|
||||
}
|
||||
|
||||
public boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) {
|
||||
return world.getBlockState(pos.down()).isSideSolidFullSquare(world,pos,Direction.UP);
|
||||
}
|
||||
public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState newState, WorldAccess world, BlockPos pos, BlockPos posFrom) {
|
||||
return !state.canPlaceAt(world, pos) ? Blocks.AIR.getDefaultState() : super.getStateForNeighborUpdate(state, direction, newState, world, pos, posFrom);
|
||||
}
|
||||
}
|
||||
|
||||
12
src/main/java/eu/midnightdust/motschen/rocks/block/Rock.java
Normal file → Executable file
12
src/main/java/eu/midnightdust/motschen/rocks/block/Rock.java
Normal file → Executable file
@@ -17,8 +17,11 @@ import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldAccess;
|
||||
import net.minecraft.world.WorldView;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class Rock extends Block {
|
||||
|
||||
private static final VoxelShape SHAPE;
|
||||
@@ -31,7 +34,7 @@ public class Rock extends Block {
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
return super.getPlacementState(itemPlacementContext)
|
||||
return Objects.requireNonNull(super.getPlacementState(itemPlacementContext))
|
||||
.with(ROCK_VARIATION, RockVariation.TINY);
|
||||
}
|
||||
public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) {
|
||||
@@ -62,12 +65,13 @@ public class Rock extends Block {
|
||||
return SHAPE;
|
||||
}
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(0, 0, 0, 16, 3, 16);
|
||||
|
||||
SHAPE = shape;
|
||||
SHAPE = createCuboidShape(0, 0, 0, 16, 3, 16);
|
||||
}
|
||||
|
||||
public boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) {
|
||||
return world.getBlockState(pos.down()).isSideSolidFullSquare(world,pos,Direction.UP);
|
||||
}
|
||||
public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState newState, WorldAccess world, BlockPos pos, BlockPos posFrom) {
|
||||
return !state.canPlaceAt(world, pos) ? Blocks.AIR.getDefaultState() : super.getStateForNeighborUpdate(state, direction, newState, world, pos, posFrom);
|
||||
}
|
||||
}
|
||||
|
||||
12
src/main/java/eu/midnightdust/motschen/rocks/block/Seashell.java
Normal file → Executable file
12
src/main/java/eu/midnightdust/motschen/rocks/block/Seashell.java
Normal file → Executable file
@@ -21,8 +21,11 @@ import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldAccess;
|
||||
import net.minecraft.world.WorldView;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class Seashell extends Block implements Waterloggable {
|
||||
|
||||
private static final VoxelShape SHAPE;
|
||||
@@ -42,7 +45,7 @@ public class Seashell extends Block implements Waterloggable {
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
FluidState fluidState = itemPlacementContext.getWorld().getFluidState(itemPlacementContext.getBlockPos());
|
||||
return super.getPlacementState(itemPlacementContext)
|
||||
return Objects.requireNonNull(super.getPlacementState(itemPlacementContext))
|
||||
.with(SEASHELL_VARIATION, SeashellVariation.PINK).with(WATERLOGGED, fluidState.getFluid() == Fluids.WATER);
|
||||
}
|
||||
|
||||
@@ -71,12 +74,13 @@ public class Seashell extends Block implements Waterloggable {
|
||||
return SHAPE;
|
||||
}
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(0, 0, 0, 16, 3, 16);
|
||||
|
||||
SHAPE = shape;
|
||||
SHAPE = createCuboidShape(0, 0, 0, 16, 3, 16);
|
||||
}
|
||||
|
||||
public boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) {
|
||||
return world.getBlockState(pos.down()).isSideSolidFullSquare(world,pos,Direction.UP);
|
||||
}
|
||||
public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState newState, WorldAccess world, BlockPos pos, BlockPos posFrom) {
|
||||
return !state.canPlaceAt(world, pos) ? Blocks.AIR.getDefaultState() : super.getStateForNeighborUpdate(state, direction, newState, world, pos, posFrom);
|
||||
}
|
||||
}
|
||||
|
||||
40
src/main/java/eu/midnightdust/motschen/rocks/block/Starfish.java
Normal file → Executable file
40
src/main/java/eu/midnightdust/motschen/rocks/block/Starfish.java
Normal file → Executable file
@@ -1,15 +1,17 @@
|
||||
package eu.midnightdust.motschen.rocks.block;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.RocksMain;
|
||||
import eu.midnightdust.motschen.rocks.block.blockentity.StarfishBlockEntity;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StarfishVariation;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.fluid.FluidState;
|
||||
import net.minecraft.fluid.Fluids;
|
||||
import net.minecraft.item.ItemPlacementContext;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NbtCompound;
|
||||
import net.minecraft.nbt.NbtElement;
|
||||
import net.minecraft.nbt.NbtString;
|
||||
import net.minecraft.sound.BlockSoundGroup;
|
||||
import net.minecraft.state.StateManager;
|
||||
import net.minecraft.state.property.BooleanProperty;
|
||||
@@ -23,9 +25,12 @@ import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldAccess;
|
||||
import net.minecraft.world.WorldView;
|
||||
|
||||
public class Starfish extends Block implements BlockEntityProvider, Waterloggable {
|
||||
import java.util.Objects;
|
||||
|
||||
public class Starfish extends Block implements Waterloggable {
|
||||
|
||||
private static final VoxelShape SHAPE;
|
||||
private static final EnumProperty<StarfishVariation> STARFISH_VARIATION = RocksMain.STARFISH_VARIATION;
|
||||
@@ -41,16 +46,24 @@ public class Starfish extends Block implements BlockEntityProvider, Waterloggabl
|
||||
return blockState_1.get(WATERLOGGED) ? Fluids.WATER.getStill(true) : super.getFluidState(blockState_1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockEntity createBlockEntity(BlockView view) {
|
||||
return new StarfishBlockEntity();
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
ItemStack stack = itemPlacementContext.getStack();
|
||||
StarfishVariation variation = StarfishVariation.RED;
|
||||
if (stack.getNbt() != null) {
|
||||
var optionalVariation = STARFISH_VARIATION.parse(stack.getNbt().getString("variation"));
|
||||
if (optionalVariation.isPresent()) variation = optionalVariation.get();
|
||||
}
|
||||
FluidState fluidState = itemPlacementContext.getWorld().getFluidState(itemPlacementContext.getBlockPos());
|
||||
return super.getPlacementState(itemPlacementContext)
|
||||
.with(STARFISH_VARIATION, StarfishVariation.RED).with(WATERLOGGED, fluidState.getFluid() == Fluids.WATER);
|
||||
return Objects.requireNonNull(super.getPlacementState(itemPlacementContext))
|
||||
.with(STARFISH_VARIATION, variation).with(WATERLOGGED, fluidState.getFluid() == Fluids.WATER);
|
||||
}
|
||||
@Override
|
||||
public ItemStack getPickStack(BlockView world, BlockPos pos, BlockState state) {
|
||||
ItemStack stack = new ItemStack(this);
|
||||
stack.getOrCreateNbt().putString("variation", state.get(STARFISH_VARIATION).asString());
|
||||
LOGGER.info(state.get(STARFISH_VARIATION).asString());
|
||||
return stack;
|
||||
}
|
||||
|
||||
public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) {
|
||||
@@ -78,12 +91,13 @@ public class Starfish extends Block implements BlockEntityProvider, Waterloggabl
|
||||
return SHAPE;
|
||||
}
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(0, 0, 0, 16, 1, 16);
|
||||
|
||||
SHAPE = shape;
|
||||
SHAPE = createCuboidShape(0, 0, 0, 16, 1, 16);
|
||||
}
|
||||
|
||||
public boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) {
|
||||
return world.getBlockState(pos.down()).isSideSolidFullSquare(world,pos,Direction.UP);
|
||||
}
|
||||
public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState newState, WorldAccess world, BlockPos pos, BlockPos posFrom) {
|
||||
return !state.canPlaceAt(world, pos) ? Blocks.AIR.getDefaultState() : super.getStateForNeighborUpdate(state, direction, newState, world, pos, posFrom);
|
||||
}
|
||||
}
|
||||
|
||||
12
src/main/java/eu/midnightdust/motschen/rocks/block/Stick.java
Normal file → Executable file
12
src/main/java/eu/midnightdust/motschen/rocks/block/Stick.java
Normal file → Executable file
@@ -17,8 +17,11 @@ import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.util.shape.VoxelShape;
|
||||
import net.minecraft.world.BlockView;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldAccess;
|
||||
import net.minecraft.world.WorldView;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
public class Stick extends Block {
|
||||
|
||||
private static final VoxelShape SHAPE;
|
||||
@@ -31,7 +34,7 @@ public class Stick extends Block {
|
||||
|
||||
@Override
|
||||
public BlockState getPlacementState(ItemPlacementContext itemPlacementContext) {
|
||||
return super.getPlacementState(itemPlacementContext)
|
||||
return Objects.requireNonNull(super.getPlacementState(itemPlacementContext))
|
||||
.with(STICK_VARIATION, StickVariation.SMALL);
|
||||
}
|
||||
public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) {
|
||||
@@ -59,12 +62,13 @@ public class Stick extends Block {
|
||||
return SHAPE;
|
||||
}
|
||||
static {
|
||||
VoxelShape shape = createCuboidShape(0, 0, 0, 16, 1, 16);
|
||||
|
||||
SHAPE = shape;
|
||||
SHAPE = createCuboidShape(0, 0, 0, 16, 1, 16);
|
||||
}
|
||||
|
||||
public boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) {
|
||||
return world.getBlockState(pos.down()).isSideSolidFullSquare(world,pos,Direction.UP);
|
||||
}
|
||||
public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState newState, WorldAccess world, BlockPos pos, BlockPos posFrom) {
|
||||
return !state.canPlaceAt(world, pos) ? Blocks.AIR.getDefaultState() : super.getStateForNeighborUpdate(state, direction, newState, world, pos, posFrom);
|
||||
}
|
||||
}
|
||||
|
||||
7
src/main/java/eu/midnightdust/motschen/rocks/block/blockentity/BlockEntityInit.java
Normal file → Executable file
7
src/main/java/eu/midnightdust/motschen/rocks/block/blockentity/BlockEntityInit.java
Normal file → Executable file
@@ -1,18 +1,17 @@
|
||||
package eu.midnightdust.motschen.rocks.block.blockentity;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.RocksMain;
|
||||
import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder;
|
||||
import net.minecraft.block.entity.BlockEntityType;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
|
||||
public class BlockEntityInit {
|
||||
public static BlockEntityType<StarfishBlockEntity> STARFISH_BE;
|
||||
public static BlockEntityType<OverworldGeyserBlockEntity> OVERWORLD_GEYSER_BE;
|
||||
public static BlockEntityType<NetherGeyserBlockEntity> NETHER_GEYSER_BE;
|
||||
|
||||
public static void init() {
|
||||
STARFISH_BE = Registry.register(Registry.BLOCK_ENTITY_TYPE, new Identifier(RocksMain.MOD_ID,"starfish_blockentity"), BlockEntityType.Builder.create(StarfishBlockEntity::new, RocksMain.Starfish).build(null));
|
||||
OVERWORLD_GEYSER_BE = Registry.register(Registry.BLOCK_ENTITY_TYPE, new Identifier(RocksMain.MOD_ID,"overworld_geyser_blockentity"), BlockEntityType.Builder.create(OverworldGeyserBlockEntity::new, RocksMain.Geyser).build(null));
|
||||
NETHER_GEYSER_BE = Registry.register(Registry.BLOCK_ENTITY_TYPE, new Identifier(RocksMain.MOD_ID,"nether_geyser_blockentity"), BlockEntityType.Builder.create(NetherGeyserBlockEntity::new, RocksMain.NetherGeyser).build(null));
|
||||
OVERWORLD_GEYSER_BE = Registry.register(Registry.BLOCK_ENTITY_TYPE, new Identifier(RocksMain.MOD_ID,"overworld_geyser_blockentity"), FabricBlockEntityTypeBuilder.create(OverworldGeyserBlockEntity::new, RocksMain.Geyser).build(null));
|
||||
NETHER_GEYSER_BE = Registry.register(Registry.BLOCK_ENTITY_TYPE, new Identifier(RocksMain.MOD_ID,"nether_geyser_blockentity"), FabricBlockEntityTypeBuilder.create(NetherGeyserBlockEntity::new, RocksMain.NetherGeyser).build(null));
|
||||
}
|
||||
}
|
||||
|
||||
62
src/main/java/eu/midnightdust/motschen/rocks/block/blockentity/NetherGeyserBlockEntity.java
Normal file → Executable file
62
src/main/java/eu/midnightdust/motschen/rocks/block/blockentity/NetherGeyserBlockEntity.java
Normal file → Executable file
@@ -1,49 +1,51 @@
|
||||
package eu.midnightdust.motschen.rocks.block.blockentity;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.RocksMain;
|
||||
import eu.midnightdust.motschen.rocks.block.NetherGeyser;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
import net.minecraft.entity.damage.DamageSource;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.particle.ParticleTypes;
|
||||
import net.minecraft.util.Tickable;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
public class NetherGeyserBlockEntity extends BlockEntity implements Tickable {
|
||||
public class NetherGeyserBlockEntity extends BlockEntity {
|
||||
private int countdown = 0;
|
||||
|
||||
public NetherGeyserBlockEntity() {
|
||||
super(BlockEntityInit.NETHER_GEYSER_BE);
|
||||
public NetherGeyserBlockEntity(BlockPos pos, BlockState state) {
|
||||
super(BlockEntityInit.NETHER_GEYSER_BE, pos, state);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void tick() {
|
||||
BlockPos pos = this.pos;
|
||||
PlayerEntity player = this.world.getClosestPlayer(pos.getX()+0.5,pos.getY()+0.5, pos.getZ()+0.5,3,true);
|
||||
PlayerEntity player2 = this.world.getClosestPlayer(pos.getX()+0.5,pos.getY()+0.5, pos.getZ()+0.5,1,true);
|
||||
BlockState state = this.world.getBlockState(pos);
|
||||
public static void tick(World world, BlockPos pos, BlockState state, NetherGeyserBlockEntity blockEntity) {
|
||||
assert world != null;
|
||||
if (world.getBlockState(pos).getBlock() == RocksMain.NetherGeyser) {
|
||||
PlayerEntity player = world.getClosestPlayer(pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, 3, true);
|
||||
PlayerEntity player2 = world.getClosestPlayer(pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, 1, true);
|
||||
|
||||
if (player != null) {
|
||||
world.setBlockState(pos, state.with(NetherGeyser.ACTIVE, true));
|
||||
player.damage(DamageSource.ON_FIRE,1);
|
||||
if (player2 != null) {
|
||||
player2.damage(DamageSource.ON_FIRE,4);
|
||||
}
|
||||
countdown = 1000;
|
||||
}
|
||||
else {
|
||||
if (countdown > 0) {
|
||||
countdown = countdown - 1;
|
||||
}
|
||||
if (countdown == 0) {
|
||||
world.setBlockState(pos, state.with(NetherGeyser.ACTIVE, false));
|
||||
}
|
||||
}
|
||||
|
||||
if (Boolean.TRUE.equals(state.get(NetherGeyser.ACTIVE))) {
|
||||
world.addParticle(ParticleTypes.LAVA,pos.getX()+0.5,pos.getY()+0.1,pos.getZ()+0.5,1,1.5,1);
|
||||
world.addParticle(ParticleTypes.LAVA,pos.getX()+0.5,pos.getY()+1.0,pos.getZ()+0.5,1,1.5,1);
|
||||
world.addParticle(ParticleTypes.SMOKE,pos.getX()+0.5,pos.getY()+0.1,pos.getZ()+0.5,0,0.3,0);
|
||||
if (player != null) {
|
||||
world.setBlockState(pos, state.with(NetherGeyser.ACTIVE, true));
|
||||
|
||||
player.damage(DamageSource.ON_FIRE, 1);
|
||||
if (player2 != null) {
|
||||
player2.damage(DamageSource.ON_FIRE, 4);
|
||||
}
|
||||
blockEntity.countdown = 1000;
|
||||
} else {
|
||||
if (blockEntity.countdown > 0) {
|
||||
blockEntity.countdown = blockEntity.countdown - 1;
|
||||
}
|
||||
if (blockEntity.countdown == 0) {
|
||||
world.setBlockState(pos, state.with(NetherGeyser.ACTIVE, false));
|
||||
}
|
||||
}
|
||||
|
||||
if (state.get(NetherGeyser.ACTIVE)) {
|
||||
world.addParticle(ParticleTypes.LAVA, pos.getX() + 0.5, pos.getY() + 0.1, pos.getZ() + 0.5, 1, 1.5, 1);
|
||||
world.addParticle(ParticleTypes.LAVA, pos.getX() + 0.5, pos.getY() + 1.0, pos.getZ() + 0.5, 1, 1.5, 1);
|
||||
world.addParticle(ParticleTypes.SMOKE, pos.getX() + 0.5, pos.getY() + 0.1, pos.getZ() + 0.5, 0, 0.3, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
62
src/main/java/eu/midnightdust/motschen/rocks/block/blockentity/OverworldGeyserBlockEntity.java
Normal file → Executable file
62
src/main/java/eu/midnightdust/motschen/rocks/block/blockentity/OverworldGeyserBlockEntity.java
Normal file → Executable file
@@ -1,5 +1,6 @@
|
||||
package eu.midnightdust.motschen.rocks.block.blockentity;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.RocksMain;
|
||||
import eu.midnightdust.motschen.rocks.block.OverworldGeyser;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
@@ -7,48 +8,43 @@ import net.minecraft.entity.effect.StatusEffectInstance;
|
||||
import net.minecraft.entity.effect.StatusEffects;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.particle.ParticleTypes;
|
||||
import net.minecraft.util.Tickable;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
public class OverworldGeyserBlockEntity extends BlockEntity implements Tickable {
|
||||
private int countdown = 0;
|
||||
public class OverworldGeyserBlockEntity extends BlockEntity {
|
||||
public int countdown = 0;
|
||||
|
||||
public OverworldGeyserBlockEntity() {
|
||||
super(BlockEntityInit.OVERWORLD_GEYSER_BE);
|
||||
public OverworldGeyserBlockEntity(BlockPos pos, BlockState state) {
|
||||
super(BlockEntityInit.OVERWORLD_GEYSER_BE, pos, state);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void tick() {
|
||||
BlockPos pos = this.pos;
|
||||
PlayerEntity player = this.world.getClosestPlayer(pos.getX()+0.5,pos.getY()+0.5, pos.getZ()+0.5,3,true);
|
||||
PlayerEntity player2 = this.world.getClosestPlayer(pos.getX()+0.5,pos.getY()+0.5, pos.getZ()+0.5,8,true);
|
||||
PlayerEntity player3 = null;
|
||||
public static void tick(World world, BlockPos pos, BlockState state, OverworldGeyserBlockEntity blockEntity) {
|
||||
assert world != null;
|
||||
if (world.getBlockState(pos).getBlock() == RocksMain.Geyser) {
|
||||
PlayerEntity player = world.getClosestPlayer(pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, 3, true);
|
||||
PlayerEntity player2 = world.getClosestPlayer(pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5, 8, true);
|
||||
|
||||
if (player2 != null && player2.getY() >= pos.getY() && (pos.getX() <= player2.getX() && pos.getX()+1 >= player2.getX()) && (pos.getZ() <= player2.getZ() && pos.getZ()+1 >= player2.getZ())) {
|
||||
player3 = player2;
|
||||
}
|
||||
BlockState state = this.world.getBlockState(pos);
|
||||
if (player2 != null && player2.getY() >= pos.getY() && (pos.getX() <= player2.getX() && pos.getX() + 1 >= player2.getX()) && (pos.getZ() <= player2.getZ() && pos.getZ() + 1 >= player2.getZ())) {
|
||||
player2.addStatusEffect(new StatusEffectInstance(StatusEffects.LEVITATION, 2, 10, true, false, false));
|
||||
}
|
||||
|
||||
if (player != null) {
|
||||
world.setBlockState(pos, state.with(OverworldGeyser.ACTIVE, true));
|
||||
if (player3 != null) {
|
||||
player3.addStatusEffect(new StatusEffectInstance(StatusEffects.LEVITATION, 2, 12, true, false, false));
|
||||
if (player != null) {
|
||||
world.setBlockState(pos, state.with(OverworldGeyser.ACTIVE, true));
|
||||
blockEntity.countdown = 1000;
|
||||
} else {
|
||||
if (blockEntity.countdown > 0) {
|
||||
blockEntity.countdown = blockEntity.countdown - 1;
|
||||
}
|
||||
if (blockEntity.countdown == 0) {
|
||||
world.setBlockState(pos, state.with(OverworldGeyser.ACTIVE, false));
|
||||
}
|
||||
}
|
||||
countdown = 1000;
|
||||
}
|
||||
else {
|
||||
if (countdown > 0) {
|
||||
countdown = countdown - 1;
|
||||
}
|
||||
if (countdown == 0) {
|
||||
world.setBlockState(pos, state.with(OverworldGeyser.ACTIVE, false));
|
||||
}
|
||||
}
|
||||
|
||||
if (world != null && state.get(OverworldGeyser.ACTIVE) == true) {
|
||||
world.addParticle(ParticleTypes.SPIT,pos.getX()+0.5,pos.getY()+0.1,pos.getZ()+0.5,0,1.0,0);
|
||||
world.addParticle(ParticleTypes.SPIT,pos.getX()+0.5,pos.getY()+0.3,pos.getZ()+0.5,0,1.0,0);
|
||||
world.addParticle(ParticleTypes.SPLASH,pos.getX()+0.5,pos.getY()+1.0,pos.getZ()+0.5,-0.01,1.5,-0.01);
|
||||
if (state.get(OverworldGeyser.ACTIVE)) {
|
||||
world.addParticle(ParticleTypes.SPIT, pos.getX() + 0.5, pos.getY() + 0.1, pos.getZ() + 0.5, 0, 1.0, 0);
|
||||
world.addParticle(ParticleTypes.SPIT, pos.getX() + 0.5, pos.getY() + 0.3, pos.getZ() + 0.5, 0, 1.0, 0);
|
||||
world.addParticle(ParticleTypes.SPLASH, pos.getX() + 0.5, pos.getY() + 1.0, pos.getZ() + 0.5, -0.01, 1.5, -0.01);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
package eu.midnightdust.motschen.rocks.block.blockentity;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.RocksMain;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StarfishVariation;
|
||||
import net.minecraft.block.entity.BlockEntity;
|
||||
|
||||
public class StarfishBlockEntity extends BlockEntity {
|
||||
|
||||
public StarfishBlockEntity() {
|
||||
super(BlockEntityInit.STARFISH_BE);
|
||||
}
|
||||
|
||||
public StarfishVariation getVariation() {
|
||||
return this.world.getBlockState(pos).get(RocksMain.STARFISH_VARIATION);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,125 +0,0 @@
|
||||
package eu.midnightdust.motschen.rocks.block.render;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.block.blockentity.StarfishBlockEntity;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StarfishVariation;
|
||||
import net.fabricmc.api.EnvType;
|
||||
import net.fabricmc.api.Environment;
|
||||
import net.minecraft.client.model.ModelPart;
|
||||
import net.minecraft.client.render.RenderLayer;
|
||||
import net.minecraft.client.render.VertexConsumer;
|
||||
import net.minecraft.client.render.VertexConsumerProvider;
|
||||
import net.minecraft.client.render.block.entity.BlockEntityRenderDispatcher;
|
||||
import net.minecraft.client.render.block.entity.BlockEntityRenderer;
|
||||
import net.minecraft.client.util.math.MatrixStack;
|
||||
import net.minecraft.client.util.math.Vector3f;
|
||||
import net.minecraft.util.Identifier;
|
||||
|
||||
@Environment(EnvType.CLIENT)
|
||||
public class StarfishBlockEntityRenderer extends BlockEntityRenderer<StarfishBlockEntity> {
|
||||
private static final ModelPart side1;
|
||||
private static final ModelPart side2;
|
||||
private static final ModelPart side3;
|
||||
private static final ModelPart side4;
|
||||
private static final ModelPart side5;
|
||||
private static final ModelPart bb_main;
|
||||
|
||||
static {
|
||||
side1 = new ModelPart(16, 16, 0, 0);
|
||||
side1.setPivot(0.0F, 24.0F, 0.0F);
|
||||
side1.setTextureOffset(0, 0).addCuboid(-0.5F, -1.0F, 1.0F, 1.0F, 1.0F, 4.0F, 0.0F, false);
|
||||
side1.setTextureOffset(1, 1).addCuboid(-0.75F, -1.02F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
side1.setTextureOffset(1, 2).addCuboid(-1.0F, -0.99F, 1.0F, 2.0F, 1.0F, 2.0F, 0.0F, false);
|
||||
side1.setTextureOffset(1, 1).addCuboid(-0.25F, -1.01F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
|
||||
side2 = new ModelPart(16, 16, 0, 0);
|
||||
side2.setPivot(0.0F, 24.0F, 0.0F);
|
||||
setRotationAngle(side2, 0.0F, -1.2654F, 0.0F);
|
||||
side2.setTextureOffset(0, 0).addCuboid(-0.5F, -1.0F, 1.0F, 1.0F, 1.0F, 4.0F, 0.0F, false);
|
||||
side2.setTextureOffset(1, 1).addCuboid(-0.75F, -1.02F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
side2.setTextureOffset(1, 1).addCuboid(-0.25F, -1.01F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
side2.setTextureOffset(1, 2).addCuboid(-1.0F, -0.99F, 1.0F, 2.0F, 1.0F, 2.0F, 0.0F, false);
|
||||
|
||||
side3 = new ModelPart(16, 16, 0, 0);
|
||||
side3.setPivot(0.0F, 24.0F, 0.0F);
|
||||
setRotationAngle(side3, 0.0F, 1.2654F, 0.0F);
|
||||
side3.setTextureOffset(0, 0).addCuboid(-0.5F, -1.0F, 1.0F, 1.0F, 1.0F, 4.0F, 0.0F, false);
|
||||
side3.setTextureOffset(1, 1).addCuboid(-0.75F, -1.02F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
side3.setTextureOffset(1, 1).addCuboid(-0.25F, -1.01F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
side3.setTextureOffset(1, 2).addCuboid(-1.0F, -0.99F, 1.0F, 2.0F, 1.0F, 2.0F, 0.0F, false);
|
||||
|
||||
side4 = new ModelPart(16, 16, 0, 0);
|
||||
side4.setPivot(0.0F, 24.0F, 0.0F);
|
||||
setRotationAngle(side4, 0.0F, 2.5307F, 0.0F);
|
||||
side4.setTextureOffset(0, 0).addCuboid(-0.5F, -1.0F, 1.0F, 1.0F, 1.0F, 4.0F, 0.0F, false);
|
||||
side4.setTextureOffset(1, 1).addCuboid(-0.75F, -1.02F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
side4.setTextureOffset(1, 1).addCuboid(-0.25F, -1.01F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
side4.setTextureOffset(1, 2).addCuboid(-1.0F, -0.99F, 1.0F, 2.0F, 1.0F, 2.0F, 0.0F, false);
|
||||
|
||||
side5 = new ModelPart(16, 16, 0, 0);
|
||||
side5.setPivot(0.0F, 24.0F, 0.0F);
|
||||
setRotationAngle(side5, 0.0F, -2.5307F, 0.0F);
|
||||
side5.setTextureOffset(0, 0).addCuboid(-0.5F, -1.0F, 1.0F, 1.0F, 1.0F, 4.0F, 0.0F, false);
|
||||
side5.setTextureOffset(1, 1).addCuboid(-0.75F, -1.02F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
side5.setTextureOffset(1, 1).addCuboid(-0.25F, -1.01F, 1.0F, 1.0F, 1.0F, 3.0F, 0.0F, false);
|
||||
side5.setTextureOffset(1, 2).addCuboid(-1.0F, -0.99F, 1.0F, 2.0F, 1.0F, 2.0F, 0.0F, false);
|
||||
|
||||
bb_main = new ModelPart(16, 16, 0, 0);
|
||||
bb_main.setPivot(0.0F, 24.0F, 0.0F);
|
||||
bb_main.setTextureOffset(1, 2).addCuboid(-1.0F, -1.005F, -1.0F, 2.0F, 1.0F, 2.0F, 0.0F, false);
|
||||
bb_main.setTextureOffset(1, 2).addCuboid(-0.8F, -1.0F, -1.25F, 2.0F, 1.0F, 2.0F, 0.0F, false);
|
||||
bb_main.setTextureOffset(2, 2).addCuboid(-1.2F, -1.0F, -1.25F, 1.0F, 1.0F, 2.0F, 0.0F, false);
|
||||
}
|
||||
|
||||
public StarfishBlockEntityRenderer(BlockEntityRenderDispatcher blockEntityRenderDispatcher) {
|
||||
super(blockEntityRenderDispatcher);
|
||||
}
|
||||
@Override
|
||||
public void render(StarfishBlockEntity blockEntity, float tickDelta, MatrixStack matrixStack, VertexConsumerProvider vertexConsumers, int light, int overlay) {
|
||||
if (blockEntity.getVariation().equals(StarfishVariation.RED)) {
|
||||
matrixStack.push();
|
||||
VertexConsumer vertexConsumer = vertexConsumers.getBuffer(RenderLayer.getEntityCutoutNoCull(new Identifier("rocks:textures/block/starfish_red.png")));
|
||||
|
||||
matrixStack.translate(0.4, -1.44, 0.6);
|
||||
side1.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side2.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side3.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side4.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side5.render(matrixStack, vertexConsumer, light, overlay);
|
||||
bb_main.render(matrixStack, vertexConsumer, light, overlay);
|
||||
matrixStack.pop();
|
||||
}
|
||||
else if (blockEntity.getVariation().equals(StarfishVariation.PINK)) {
|
||||
matrixStack.push();
|
||||
VertexConsumer vertexConsumer = vertexConsumers.getBuffer(RenderLayer.getEntityCutoutNoCull(new Identifier("rocks:textures/block/starfish_pink.png")));
|
||||
|
||||
matrixStack.translate(0.4, -1.44, 0.4);
|
||||
matrixStack.multiply(Vector3f.POSITIVE_Y.getDegreesQuaternion(90));
|
||||
side1.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side2.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side3.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side4.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side5.render(matrixStack, vertexConsumer, light, overlay);
|
||||
bb_main.render(matrixStack, vertexConsumer, light, overlay);
|
||||
matrixStack.pop();
|
||||
}
|
||||
else {
|
||||
matrixStack.push();
|
||||
VertexConsumer vertexConsumer = vertexConsumers.getBuffer(RenderLayer.getEntityCutoutNoCull(new Identifier("rocks:textures/block/starfish_orange.png")));
|
||||
|
||||
matrixStack.translate(0.65, -1.44, 0.65);
|
||||
matrixStack.multiply(Vector3f.POSITIVE_Y.getDegreesQuaternion(123));
|
||||
side1.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side2.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side3.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side4.render(matrixStack, vertexConsumer, light, overlay);
|
||||
side5.render(matrixStack, vertexConsumer, light, overlay);
|
||||
bb_main.render(matrixStack, vertexConsumer, light, overlay);
|
||||
matrixStack.pop();
|
||||
}
|
||||
}
|
||||
public static void setRotationAngle(ModelPart bone, float x, float y, float z) {
|
||||
bone.pitch = x;
|
||||
bone.yaw = y;
|
||||
bone.roll = z;
|
||||
}
|
||||
}
|
||||
0
src/main/java/eu/midnightdust/motschen/rocks/blockstates/RockVariation.java
Normal file → Executable file
0
src/main/java/eu/midnightdust/motschen/rocks/blockstates/RockVariation.java
Normal file → Executable file
0
src/main/java/eu/midnightdust/motschen/rocks/blockstates/SeashellVariation.java
Normal file → Executable file
0
src/main/java/eu/midnightdust/motschen/rocks/blockstates/SeashellVariation.java
Normal file → Executable file
0
src/main/java/eu/midnightdust/motschen/rocks/blockstates/StarfishVariation.java
Normal file → Executable file
0
src/main/java/eu/midnightdust/motschen/rocks/blockstates/StarfishVariation.java
Normal file → Executable file
0
src/main/java/eu/midnightdust/motschen/rocks/blockstates/StickVariation.java
Normal file → Executable file
0
src/main/java/eu/midnightdust/motschen/rocks/blockstates/StickVariation.java
Normal file → Executable file
38
src/main/java/eu/midnightdust/motschen/rocks/config/RocksConfig.java
Executable file
38
src/main/java/eu/midnightdust/motschen/rocks/config/RocksConfig.java
Executable file
@@ -0,0 +1,38 @@
|
||||
package eu.midnightdust.motschen.rocks.config;
|
||||
|
||||
import eu.midnightdust.lib.config.MidnightConfig;
|
||||
|
||||
public class RocksConfig extends MidnightConfig {
|
||||
@Comment public static Comment needs_restart;
|
||||
|
||||
@Comment public static Comment rocks;
|
||||
@Entry(name = "block.rocks.rock") public static boolean rock = true;
|
||||
@Entry(name = "block.rocks.granite_rock") public static boolean granite_rock = true;
|
||||
@Entry(name = "block.rocks.diorite_rock") public static boolean diorite_rock = true;
|
||||
@Entry(name = "block.rocks.andesite_rock") public static boolean andesite_rock = true;
|
||||
@Entry(name = "block.rocks.sand_rock") public static boolean sand_rock = true;
|
||||
@Entry(name = "block.rocks.red_sand_rock") public static boolean red_sand_rock = true;
|
||||
@Entry(name = "block.rocks.gravel_rock") public static boolean gravel_rock = true;
|
||||
@Entry(name = "block.rocks.end_stone_rock") public static boolean end_stone_rock = true;
|
||||
@Entry(name = "block.rocks.netherrack_rock") public static boolean netherrack_rock = true;
|
||||
@Entry(name = "block.rocks.soul_soil_rock") public static boolean soul_soil_rock = true;
|
||||
|
||||
@Comment public static Comment sticks;
|
||||
@Entry(name = "block.rocks.oak_stick") public static boolean oak_stick = true;
|
||||
@Entry(name = "block.rocks.spruce_stick") public static boolean spruce_stick = true;
|
||||
@Entry(name = "block.rocks.birch_stick") public static boolean birch_stick = true;
|
||||
@Entry(name = "block.rocks.acacia_stick") public static boolean acacia_stick = true;
|
||||
@Entry(name = "block.rocks.jungle_stick") public static boolean jungle_stick = true;
|
||||
@Entry(name = "block.rocks.dark_oak_stick") public static boolean dark_oak_stick = true;
|
||||
@Entry(name = "block.rocks.crimson_stick") public static boolean crimson_stick = true;
|
||||
@Entry(name = "block.rocks.warped_stick") public static boolean warped_stick = true;
|
||||
|
||||
@Comment public static Comment misc;
|
||||
@Entry(name = "block.rocks.pinecone") public static boolean pinecone = true;
|
||||
@Entry(name = "block.rocks.geyser") public static boolean geyser = true;
|
||||
@Entry(name = "block.rocks.nether_geyser") public static boolean nether_geyser = true;
|
||||
@Entry(name = "block.rocks.seashell") public static boolean seashell = true;
|
||||
@Entry(name = "block.rocks.starfish") public static boolean starfish = true;
|
||||
@Entry public static boolean underwater_seashell = true;
|
||||
@Entry public static boolean underwater_starfish = true;
|
||||
}
|
||||
13
src/main/java/eu/midnightdust/motschen/rocks/item/StarfishItem.java
Executable file
13
src/main/java/eu/midnightdust/motschen/rocks/item/StarfishItem.java
Executable file
@@ -0,0 +1,13 @@
|
||||
package eu.midnightdust.motschen.rocks.item;
|
||||
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StarfishVariation;
|
||||
import net.minecraft.item.Item;
|
||||
|
||||
public class StarfishItem extends Item {
|
||||
public final StarfishVariation variation;
|
||||
|
||||
public StarfishItem(Settings settings, StarfishVariation variation) {
|
||||
super(settings);
|
||||
this.variation = variation;
|
||||
}
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
package eu.midnightdust.motschen.rocks.mixin;
|
||||
|
||||
import net.minecraft.world.biome.GenerationSettings;
|
||||
import net.minecraft.world.gen.feature.ConfiguredFeature;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.gen.Accessor;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.function.Supplier;
|
||||
|
||||
@Mixin(GenerationSettings.class)
|
||||
public interface GenerationSettingsAccessorMixin {
|
||||
|
||||
@Accessor
|
||||
List<List<Supplier<ConfiguredFeature<?, ?>>>> getFeatures();
|
||||
|
||||
@Accessor
|
||||
void setFeatures(List<List<Supplier<ConfiguredFeature<?, ?>>>> features);
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package eu.midnightdust.motschen.rocks.mixin;
|
||||
|
||||
import com.google.gson.JsonObject;
|
||||
import net.minecraft.client.render.model.json.ModelElement;
|
||||
import net.minecraft.util.JsonHelper;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.Overwrite;
|
||||
|
||||
@Mixin(value = ModelElement.Deserializer.class, priority = 2000)
|
||||
public class MixinModelElementDeserializer {
|
||||
|
||||
/**
|
||||
* @author Motschen
|
||||
* @reason Not cancellable
|
||||
* Unlimited rotation angles for starfish
|
||||
* Inspired by https://github.com/CottonMC/ModelsUnlocked/blob/master/src/main/java/io/github/cottonmc/modelsunlocked/mixin/ModelElementDeserializerMixin.java
|
||||
*/
|
||||
@Overwrite
|
||||
private float deserializeRotationAngle(JsonObject json) {
|
||||
return (JsonHelper.getFloat(json, "angle"));
|
||||
}
|
||||
}
|
||||
164
src/main/java/eu/midnightdust/motschen/rocks/world/FeatureInjector.java
Normal file → Executable file
164
src/main/java/eu/midnightdust/motschen/rocks/world/FeatureInjector.java
Normal file → Executable file
@@ -1,102 +1,96 @@
|
||||
package eu.midnightdust.motschen.rocks.world;
|
||||
|
||||
import com.google.common.collect.Lists;
|
||||
import eu.midnightdust.motschen.rocks.mixin.GenerationSettingsAccessorMixin;
|
||||
import eu.midnightdust.motschen.rocks.config.RocksConfig;
|
||||
import eu.midnightdust.motschen.rocks.world.configured_feature.MiscFeatures;
|
||||
import eu.midnightdust.motschen.rocks.world.configured_feature.NetherFeatures;
|
||||
import eu.midnightdust.motschen.rocks.world.configured_feature.RockFeatures;
|
||||
import eu.midnightdust.motschen.rocks.world.configured_feature.StickFeatures;
|
||||
import net.fabricmc.fabric.api.event.registry.RegistryEntryAddedCallback;
|
||||
import net.fabricmc.fabric.api.biome.v1.BiomeModifications;
|
||||
import net.fabricmc.fabric.api.biome.v1.BiomeSelectionContext;
|
||||
import net.minecraft.util.registry.BuiltinRegistries;
|
||||
import net.minecraft.world.biome.Biome;
|
||||
import net.minecraft.world.gen.GenerationStep;
|
||||
import net.minecraft.world.gen.feature.ConfiguredFeature;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.function.Supplier;
|
||||
import java.util.function.Predicate;
|
||||
|
||||
@SuppressWarnings({"OptionalGetWithoutIsPresent"})
|
||||
public class FeatureInjector {
|
||||
|
||||
public static void init() {
|
||||
BuiltinRegistries.BIOME.forEach(FeatureInjector::addRockToBiome);
|
||||
RegistryEntryAddedCallback.event(BuiltinRegistries.BIOME).register((i, identifier, biome) -> addRockToBiome(biome));
|
||||
}
|
||||
|
||||
private static void addRockToBiome(Biome biome) {
|
||||
// Rocks
|
||||
if (biome.getCategory() != Biome.Category.NETHER && biome.getCategory() != Biome.Category.THEEND && biome.getCategory() != Biome.Category.BEACH && biome.getCategory() != Biome.Category.DESERT && biome.getCategory() != Biome.Category.MESA && biome.getCategory() != Biome.Category.ICY && biome.getCategory() != Biome.Category.OCEAN) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, RockFeatures.ROCK_FEATURE);
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, RockFeatures.GRANITE_ROCK_FEATURE);
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, RockFeatures.DIORITE_ROCK_FEATURE);
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, RockFeatures.ANDESITE_ROCK_FEATURE);
|
||||
}
|
||||
if (biome.getCategory() == Biome.Category.BEACH || biome.getCategory() == Biome.Category.DESERT || biome.getCategory() == Biome.Category.MESA || biome.toString().contains("terrestria:lush_desert")) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, RockFeatures.SAND_ROCK_FEATURE);
|
||||
}
|
||||
if (biome.getCategory() == Biome.Category.MESA || biome.getCategory() == Biome.Category.DESERT || biome.toString().contains("terrestria:lush_desert")) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, RockFeatures.RED_SAND_ROCK_FEATURE);
|
||||
}
|
||||
if (biome.getCategory() == Biome.Category.THEEND) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, RockFeatures.END_STONE_ROCK_FEATURE);
|
||||
}
|
||||
// Sticks
|
||||
if (biome.toString().contains("minecraft:forest") || biome.toString().contains("minecraft:wooded_hills") ||
|
||||
biome.toString().contains("minecraft:wooded_mountains") || biome.toString().contains("minecraft:plains") ||
|
||||
biome.toString().contains("minecraft:flower_forest") || biome.toString().contains("minecraft:wooded_badlands_plateau") ||
|
||||
biome.toString().contains("minecraft:modified_wooded_badlands_plateau") || biome.getCategory() == Biome.Category.SWAMP) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, StickFeatures.OAK_STICK_FEATURE);
|
||||
}
|
||||
if (biome.toString().contains("minecraft:forest") || biome.toString().contains("minecraft:birch_forest") ||
|
||||
biome.toString().contains("minecraft:birch_forest_hills") || biome.toString().contains("minecraft:flower_forest")) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, StickFeatures.BIRCH_STICK_FEATURE);
|
||||
}
|
||||
if (biome.toString().contains("minecraft:wooded_mountains") || biome.getCategory() == Biome.Category.TAIGA) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, StickFeatures.SPRUCE_STICK_FEATURE);
|
||||
}
|
||||
if (biome.getCategory() == Biome.Category.SAVANNA) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, StickFeatures.ACACIA_STICK_FEATURE);
|
||||
}
|
||||
if (biome.getCategory() == Biome.Category.JUNGLE) {
|
||||
addRockFeature(biome, GenerationStep.Feature.UNDERGROUND_DECORATION, StickFeatures.JUNGLE_STICK_FEATURE);
|
||||
}
|
||||
if (biome.toString().contains("minecraft:dark_forest") || biome.toString().contains("minecraft:dark_forest_hills") ||
|
||||
biome.toString().contains("minecraft:dark_forest_mountains")) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, StickFeatures.DARK_OAK_STICK_FEATURE);
|
||||
}
|
||||
// Misc
|
||||
if (biome.getCategory() == Biome.Category.BEACH && !biome.toString().contains("minecraft:snowy_beach")) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, MiscFeatures.SEASHELL_FEATURE);
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, MiscFeatures.STARFISH_FEATURE);
|
||||
}
|
||||
if (biome.getCategory() == Biome.Category.OCEAN) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, MiscFeatures.UNDERWATER_STARFISH_FEATURE);
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, MiscFeatures.UNDERWATER_SEASHELL_FEATURE);
|
||||
}
|
||||
if (biome.getCategory() == Biome.Category.NETHER) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, NetherFeatures.NETHERRACK_ROCK_FEATURE);
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, NetherFeatures.SOUL_SOIL_ROCK_FEATURE);
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, NetherFeatures.NETHER_GRAVEL_ROCK_FEATURE);
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, NetherFeatures.NETHER_GEYSER_FEATURE);
|
||||
}
|
||||
if (biome.getCategory() != Biome.Category.NETHER) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, RockFeatures.GRAVEL_ROCK_FEATURE);
|
||||
}
|
||||
if (biome.getCategory() == Biome.Category.ICY) {
|
||||
addRockFeature(biome, GenerationStep.Feature.TOP_LAYER_MODIFICATION, MiscFeatures.SNOWY_GEYSER_FEATURE);
|
||||
}
|
||||
}
|
||||
Predicate<BiomeSelectionContext> rocks = (ctx -> {
|
||||
Biome.Category cat = ctx.getBiome().getCategory();
|
||||
return cat != Biome.Category.NETHER && cat != Biome.Category.THEEND && cat!= Biome.Category.BEACH && cat != Biome.Category.DESERT
|
||||
&& cat != Biome.Category.MESA && cat != Biome.Category.ICY && cat != Biome.Category.OCEAN ;});
|
||||
if (RocksConfig.rock) BiomeModifications.addFeature(rocks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(RockFeatures.ROCK_PLACED_FEATURE).get());
|
||||
if (RocksConfig.granite_rock) BiomeModifications.addFeature(rocks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(RockFeatures.GRANITE_ROCK_PLACED_FEATURE).get());
|
||||
if (RocksConfig.diorite_rock) BiomeModifications.addFeature(rocks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(RockFeatures.DIORITE_ROCK_PLACED_FEATURE).get());
|
||||
if (RocksConfig.andesite_rock) BiomeModifications.addFeature(rocks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(RockFeatures.ANDESITE_ROCK_PLACED_FEATURE).get());
|
||||
|
||||
public static void addRockFeature(Biome biome, GenerationStep.Feature step, ConfiguredFeature<?, ?> feature) {
|
||||
GenerationSettingsAccessorMixin generationSettingsAccessor = (GenerationSettingsAccessorMixin) biome.getGenerationSettings();
|
||||
int stepIndex = step.ordinal();
|
||||
List<List<Supplier<ConfiguredFeature<?, ?>>>> featuresByStep = new ArrayList<>( generationSettingsAccessor.getFeatures());
|
||||
while (featuresByStep.size() <= stepIndex) {
|
||||
featuresByStep.add(Lists.newArrayList());
|
||||
}
|
||||
List<Supplier<ConfiguredFeature<?, ?>>> features = new ArrayList<>(featuresByStep.get(stepIndex));
|
||||
features.add(() -> feature);
|
||||
featuresByStep.set(stepIndex, features);
|
||||
generationSettingsAccessor.setFeatures(featuresByStep);
|
||||
Predicate<BiomeSelectionContext> sand_rocks = (ctx -> {
|
||||
Biome.Category cat = ctx.getBiome().getCategory();
|
||||
return cat == Biome.Category.BEACH || cat == Biome.Category.DESERT || cat == Biome.Category.MESA || ctx.getBiomeKey().getValue().toString().contains("terrestria:lush_desert");
|
||||
});
|
||||
if (RocksConfig.sand_rock) BiomeModifications.addFeature(sand_rocks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(RockFeatures.SAND_ROCK_PLACED_FEATURE).get());
|
||||
|
||||
Predicate<BiomeSelectionContext> red_sand_rocks = (ctx -> {
|
||||
Biome.Category cat = ctx.getBiome().getCategory();
|
||||
return cat == Biome.Category.MESA || cat == Biome.Category.DESERT || ctx.getBiomeKey().getValue().toString().contains("terrestria:lush_desert");
|
||||
});
|
||||
if (RocksConfig.red_sand_rock) BiomeModifications.addFeature(red_sand_rocks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(RockFeatures.RED_SAND_ROCK_PLACED_FEATURE).get());
|
||||
|
||||
if (RocksConfig.end_stone_rock) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.THEEND, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(RockFeatures.END_STONE_ROCK_PLACED_FEATURE).get());
|
||||
|
||||
// Sticks
|
||||
Predicate<BiomeSelectionContext> oak_sticks = (ctx -> {
|
||||
String name = ctx.getBiomeKey().getValue().toString();
|
||||
Biome.Category cat = ctx.getBiome().getCategory();
|
||||
return name.contains("minecraft:forest") || name.contains("minecraft:wooded_hills") || name.contains("oak") ||
|
||||
name.contains("minecraft:wooded_mountains") || name.contains("minecraft:plains") ||
|
||||
name.contains("minecraft:flower_forest") || name.contains("minecraft:wooded_badlands_plateau") ||
|
||||
name.contains("minecraft:modified_wooded_badlands_plateau") || cat == Biome.Category.SWAMP;});
|
||||
if (RocksConfig.oak_stick) BiomeModifications.addFeature(oak_sticks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(StickFeatures.OAK_STICK_PLACED_FEATURE).get());
|
||||
|
||||
Predicate<BiomeSelectionContext> birch_sticks = (ctx -> {
|
||||
String name = ctx.getBiomeKey().getValue().toString();
|
||||
return name.contains("minecraft:forest") || name.contains("birch") || name.contains("minecraft:flower_forest");});
|
||||
if (RocksConfig.birch_stick) BiomeModifications.addFeature(birch_sticks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(StickFeatures.BIRCH_STICK_PLACED_FEATURE).get());
|
||||
|
||||
Predicate<BiomeSelectionContext> spruce_sticks = (ctx -> {
|
||||
String name = ctx.getBiomeKey().getValue().toString();
|
||||
Biome.Category cat = ctx.getBiome().getCategory();
|
||||
return name.contains("minecraft:wooded_mountains") || cat == Biome.Category.TAIGA;});
|
||||
if (RocksConfig.spruce_stick) BiomeModifications.addFeature(spruce_sticks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(StickFeatures.SPRUCE_STICK_PLACED_FEATURE).get());
|
||||
|
||||
if (RocksConfig.acacia_stick) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.SAVANNA, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(StickFeatures.ACACIA_STICK_PLACED_FEATURE).get());
|
||||
|
||||
if (RocksConfig.jungle_stick) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.JUNGLE, GenerationStep.Feature.UNDERGROUND_DECORATION, BuiltinRegistries.PLACED_FEATURE.getKey(StickFeatures.JUNGLE_STICK_PLACED_FEATURE).get());
|
||||
|
||||
Predicate<BiomeSelectionContext> dark_oak_sticks = (ctx -> {
|
||||
String name = ctx.getBiomeKey().getValue().toString();
|
||||
return name.contains("minecraft:dark_forest") || name.contains("minecraft:dark_forest_hills") ||
|
||||
name.contains("minecraft:dark_forest_mountains");});
|
||||
if (RocksConfig.dark_oak_stick) BiomeModifications.addFeature(dark_oak_sticks, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(StickFeatures.DARK_OAK_STICK_PLACED_FEATURE).get());
|
||||
|
||||
// Misc
|
||||
Predicate<BiomeSelectionContext> beach = (ctx -> {
|
||||
String name = ctx.getBiomeKey().getValue().toString();
|
||||
Biome.Category cat = ctx.getBiome().getCategory();
|
||||
return cat == Biome.Category.BEACH && !name.contains("snow");});
|
||||
if (RocksConfig.seashell) BiomeModifications.addFeature(beach, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(MiscFeatures.SEASHELL_PLACED_FEATURE).get());
|
||||
if (RocksConfig.starfish) BiomeModifications.addFeature(beach, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(MiscFeatures.STARFISH_PLACED_FEATURE).get());
|
||||
|
||||
if (RocksConfig.underwater_starfish) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.OCEAN, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(MiscFeatures.UNDERWATER_STARFISH_PLACED_FEATURE).get());
|
||||
if (RocksConfig.underwater_seashell) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.OCEAN, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(MiscFeatures.UNDERWATER_SEASHELL_PLACED_FEATURE).get());
|
||||
|
||||
if (RocksConfig.netherrack_rock) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.NETHER, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(NetherFeatures.NETHERRACK_ROCK_PLACED_FEATURE).get());
|
||||
if (RocksConfig.soul_soil_rock) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.NETHER, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(NetherFeatures.SOUL_SOIL_ROCK_PLACED_FEATURE).get());
|
||||
if (RocksConfig.gravel_rock) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.NETHER, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(NetherFeatures.NETHER_GRAVEL_ROCK_PLACED_FEATURE).get());
|
||||
if (RocksConfig.nether_geyser) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.NETHER, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(NetherFeatures.NETHER_GEYSER_PLACED_FEATURE).get());
|
||||
if (RocksConfig.warped_stick) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.NETHER, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(NetherFeatures.WARPED_STICK_PLACED_FEATURE).get());
|
||||
if (RocksConfig.crimson_stick) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.NETHER, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(NetherFeatures.CRIMSON_STICK_PLACED_FEATURE).get());
|
||||
|
||||
if (RocksConfig.gravel_rock) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() != Biome.Category.NETHER, GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(RockFeatures.GRAVEL_ROCK_PLACED_FEATURE).get());
|
||||
|
||||
if (RocksConfig.geyser) BiomeModifications.addFeature(ctx -> ctx.getBiome().getCategory() == Biome.Category.ICY || ctx.getBiomeKey().toString().contains("snowy"), GenerationStep.Feature.TOP_LAYER_MODIFICATION, BuiltinRegistries.PLACED_FEATURE.getKey(MiscFeatures.SNOWY_GEYSER_PLACED_FEATURE).get());
|
||||
}
|
||||
}
|
||||
22
src/main/java/eu/midnightdust/motschen/rocks/world/FeatureRegistry.java
Normal file → Executable file
22
src/main/java/eu/midnightdust/motschen/rocks/world/FeatureRegistry.java
Normal file → Executable file
@@ -5,7 +5,9 @@ import eu.midnightdust.motschen.rocks.blockstates.SeashellVariation;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StarfishVariation;
|
||||
import eu.midnightdust.motschen.rocks.world.feature.SnowFeature;
|
||||
import eu.midnightdust.motschen.rocks.world.feature.UnderwaterFeature;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.state.property.Properties;
|
||||
import net.minecraft.util.collection.DataPool;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
import net.minecraft.world.gen.ProbabilityConfig;
|
||||
import net.minecraft.world.gen.feature.Feature;
|
||||
@@ -22,18 +24,18 @@ public class FeatureRegistry<FC extends FeatureConfig> {
|
||||
return Registry.register(Registry.FEATURE, name, feature);
|
||||
}
|
||||
|
||||
private static final WeightedBlockStateProvider StarfishStates = new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION, StarfishVariation.RED).with(Properties.WATERLOGGED, true), 6)
|
||||
.addState(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.PINK).with(Properties.WATERLOGGED, true), 7)
|
||||
.addState(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.ORANGE).with(Properties.WATERLOGGED, true), 2);
|
||||
private static final WeightedBlockStateProvider StarfishStates = new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION, StarfishVariation.RED).with(Properties.WATERLOGGED, true), 6)
|
||||
.add(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.PINK).with(Properties.WATERLOGGED, true), 7)
|
||||
.add(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.ORANGE).with(Properties.WATERLOGGED, true), 2).build());
|
||||
|
||||
private static final WeightedBlockStateProvider SeashellStates = new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION, SeashellVariation.YELLOW).with(Properties.WATERLOGGED, true), 7)
|
||||
.addState(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.PINK).with(Properties.WATERLOGGED, true), 2)
|
||||
.addState(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.WHITE).with(Properties.WATERLOGGED, true), 6);
|
||||
private static final WeightedBlockStateProvider SeashellStates = new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION, SeashellVariation.YELLOW).with(Properties.WATERLOGGED, true), 7)
|
||||
.add(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.PINK).with(Properties.WATERLOGGED, true), 2)
|
||||
.add(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.WHITE).with(Properties.WATERLOGGED, true), 6).build());
|
||||
|
||||
private static final WeightedBlockStateProvider GeyserStates = new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.Geyser.getDefaultState().with(Properties.SNOWY, true), 1);
|
||||
private static final WeightedBlockStateProvider GeyserStates = new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.Geyser.getDefaultState().with(Properties.SNOWY, true), 1).build());
|
||||
|
||||
static {
|
||||
UNDERWATER_STARFISH_FEATURE = register("underwater_starfish", new UnderwaterFeature(ProbabilityConfig.CODEC, StarfishStates));
|
||||
|
||||
10
src/main/java/eu/midnightdust/motschen/rocks/world/RocksDecorators.java
Executable file
10
src/main/java/eu/midnightdust/motschen/rocks/world/RocksDecorators.java
Executable file
@@ -0,0 +1,10 @@
|
||||
package eu.midnightdust.motschen.rocks.world;
|
||||
|
||||
import net.minecraft.world.gen.YOffset;
|
||||
import net.minecraft.world.gen.decorator.RangeDecoratorConfig;
|
||||
import net.minecraft.world.gen.heightprovider.UniformHeightProvider;
|
||||
|
||||
public class RocksDecorators {
|
||||
//public static final RangeDecoratorConfig BOTTOM_TO_TOP_OFFSET_4 = new RangeDecoratorConfig(UniformHeightProvider.create(YOffset.aboveBottom(4), YOffset.belowTop(4)));
|
||||
//public static final ConfiguredDecorator<?> ROCK = (ConfiguredDecorator)((ConfiguredDecorator)Decorator.RANGE.configure(BOTTOM_TO_TOP_OFFSET_4).spreadHorizontally()).repeatRandomly(5);
|
||||
}
|
||||
59
src/main/java/eu/midnightdust/motschen/rocks/world/configured_feature/MiscFeatures.java
Normal file → Executable file
59
src/main/java/eu/midnightdust/motschen/rocks/world/configured_feature/MiscFeatures.java
Normal file → Executable file
@@ -1,42 +1,52 @@
|
||||
package eu.midnightdust.motschen.rocks.world.configured_feature;
|
||||
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import eu.midnightdust.motschen.rocks.RocksMain;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.SeashellVariation;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StarfishVariation;
|
||||
import eu.midnightdust.motschen.rocks.world.FeatureRegistry;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.Blocks;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.collection.DataPool;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.registry.BuiltinRegistries;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
import net.minecraft.world.gen.ProbabilityConfig;
|
||||
import net.minecraft.world.gen.blockpredicate.BlockPredicate;
|
||||
import net.minecraft.world.gen.decorator.*;
|
||||
import net.minecraft.world.gen.feature.*;
|
||||
import net.minecraft.world.gen.placer.SimpleBlockPlacer;
|
||||
import net.minecraft.world.gen.stateprovider.WeightedBlockStateProvider;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class MiscFeatures {
|
||||
public static ConfiguredFeature<?, ?> SEASHELL_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.YELLOW), 7)
|
||||
.addState(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.PINK), 2)
|
||||
.addState(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.WHITE), 6),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).whitelist(ImmutableSet.of(Blocks.SAND, Blocks.SANDSTONE, Blocks.RED_SAND, Blocks.RED_SANDSTONE))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> STARFISH_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.RED), 2)
|
||||
.addState(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.PINK), 6)
|
||||
.addState(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.ORANGE), 7),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).whitelist(ImmutableSet.of(Blocks.SAND, Blocks.SANDSTONE, Blocks.RED_SAND, Blocks.RED_SANDSTONE))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static List<PlacementModifier> placementModifiers = List.of(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
|
||||
public static ConfiguredFeature<?, ?> SEASHELL_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(96, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.YELLOW), 7)
|
||||
.add(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.PINK), 2)
|
||||
.add(RocksMain.Seashell.getDefaultState().with(RocksMain.SEASHELL_VARIATION,SeashellVariation.WHITE), 6).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.SAND, Blocks.SANDSTONE, Blocks.RED_SAND, Blocks.RED_SANDSTONE), new BlockPos(0, -1, 0)))
|
||||
)));
|
||||
public static ConfiguredFeature<?, ?> STARFISH_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(96, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.RED), 2)
|
||||
.add(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.PINK), 6)
|
||||
.add(RocksMain.Starfish.getDefaultState().with(RocksMain.STARFISH_VARIATION,StarfishVariation.ORANGE), 7).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.SAND, Blocks.SANDSTONE, Blocks.RED_SAND, Blocks.RED_SANDSTONE), new BlockPos(0, -1, 0)))
|
||||
)));
|
||||
|
||||
public static ConfiguredFeature<?, ?> UNDERWATER_STARFISH_FEATURE = FeatureRegistry.UNDERWATER_STARFISH_FEATURE.configure(new ProbabilityConfig(1));
|
||||
public static ConfiguredFeature<?, ?> UNDERWATER_SEASHELL_FEATURE = FeatureRegistry.UNDERWATER_SEASHELL_FEATURE.configure(new ProbabilityConfig(1));
|
||||
public static ConfiguredFeature<?, ?> SNOWY_GEYSER_FEATURE = FeatureRegistry.SNOWY_GEYSER_FEATURE.configure(new ProbabilityConfig(1)).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> SNOWY_GEYSER_FEATURE = FeatureRegistry.SNOWY_GEYSER_FEATURE.configure(new ProbabilityConfig(1));
|
||||
|
||||
public static PlacedFeature SEASHELL_PLACED_FEATURE = SEASHELL_FEATURE.withPlacement(placementModifiers);
|
||||
public static PlacedFeature STARFISH_PLACED_FEATURE = STARFISH_FEATURE.withPlacement(placementModifiers);
|
||||
public static PlacedFeature UNDERWATER_SEASHELL_PLACED_FEATURE = UNDERWATER_SEASHELL_FEATURE.withPlacement(placementModifiers);
|
||||
public static PlacedFeature UNDERWATER_STARFISH_PLACED_FEATURE = UNDERWATER_STARFISH_FEATURE.withPlacement(placementModifiers);
|
||||
public static PlacedFeature SNOWY_GEYSER_PLACED_FEATURE = SNOWY_GEYSER_FEATURE.withPlacement(placementModifiers);
|
||||
|
||||
public static void init() {
|
||||
Registry<ConfiguredFeature<?, ?>> registry = BuiltinRegistries.CONFIGURED_FEATURE;
|
||||
@@ -45,6 +55,13 @@ public class MiscFeatures {
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "underwater_starfish"), UNDERWATER_STARFISH_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "underwater_seashell"), UNDERWATER_SEASHELL_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "snowy_geyser"), SNOWY_GEYSER_FEATURE);
|
||||
|
||||
Registry<PlacedFeature> placedRegistry = BuiltinRegistries.PLACED_FEATURE;
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "seashell"), SEASHELL_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "starfish"), STARFISH_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "underwater_seashell"), UNDERWATER_SEASHELL_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "underwater_starfish"), UNDERWATER_STARFISH_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "snowy_geyser"),SNOWY_GEYSER_PLACED_FEATURE);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
108
src/main/java/eu/midnightdust/motschen/rocks/world/configured_feature/NetherFeatures.java
Normal file → Executable file
108
src/main/java/eu/midnightdust/motschen/rocks/world/configured_feature/NetherFeatures.java
Normal file → Executable file
@@ -1,66 +1,86 @@
|
||||
package eu.midnightdust.motschen.rocks.world.configured_feature;
|
||||
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import eu.midnightdust.motschen.rocks.RocksMain;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.RockVariation;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StickVariation;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.Blocks;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.collection.DataPool;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.registry.BuiltinRegistries;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
import net.minecraft.world.gen.feature.ConfiguredFeature;
|
||||
import net.minecraft.world.gen.feature.ConfiguredFeatures;
|
||||
import net.minecraft.world.gen.feature.Feature;
|
||||
import net.minecraft.world.gen.feature.RandomPatchFeatureConfig;
|
||||
import net.minecraft.world.gen.placer.SimpleBlockPlacer;
|
||||
import net.minecraft.world.gen.blockpredicate.BlockPredicate;
|
||||
import net.minecraft.world.gen.decorator.BiomePlacementModifier;
|
||||
import net.minecraft.world.gen.decorator.RarityFilterPlacementModifier;
|
||||
import net.minecraft.world.gen.decorator.SquarePlacementModifier;
|
||||
import net.minecraft.world.gen.feature.*;
|
||||
import net.minecraft.world.gen.stateprovider.WeightedBlockStateProvider;
|
||||
|
||||
public class NetherFeatures {
|
||||
|
||||
public static ConfiguredFeature<?, ?> NETHERRACK_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.NetherrackRock.getDefaultState().with(RocksMain.ROCK_VARIATION, RockVariation.TINY), 10)
|
||||
.addState(RocksMain.NetherrackRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.NetherrackRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.NetherrackRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.whitelist(ImmutableSet.of(Blocks.NETHERRACK,Blocks.WARPED_NYLIUM,Blocks.CRIMSON_NYLIUM)).cannotProject().build()).decorate(ConfiguredFeatures.Decorators.FIRE).repeat(128);
|
||||
public static ConfiguredFeature<?, ?> SOUL_SOIL_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.SoulSoilRock.getDefaultState().with(RocksMain.ROCK_VARIATION, RockVariation.TINY), 10)
|
||||
.addState(RocksMain.SoulSoilRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.SoulSoilRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.SoulSoilRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.whitelist(ImmutableSet.of(Blocks.SOUL_SOIL,Blocks.SOUL_SAND)).cannotProject().build()).decorate(ConfiguredFeatures.Decorators.FIRE).repeat(128);
|
||||
public static ConfiguredFeature<?, ?> NETHER_GRAVEL_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION, RockVariation.TINY), 10)
|
||||
.addState(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.whitelist(ImmutableSet.of(Blocks.GRAVEL)).cannotProject().build()).decorate(ConfiguredFeatures.Decorators.FIRE).repeat(128);
|
||||
public static ConfiguredFeature<?, ?> NETHER_GEYSER_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.NetherGeyser.getDefaultState(),1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.whitelist(ImmutableSet.of(Blocks.NETHERRACK)).cannotProject().build()).decorate(ConfiguredFeatures.Decorators.FIRE).repeat(16);
|
||||
public static ConfiguredFeature<?, ?> NETHERRACK_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(1024, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.NetherrackRock.getDefaultState().with(RocksMain.ROCK_VARIATION, RockVariation.TINY), 10)
|
||||
.add(RocksMain.NetherrackRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.NetherrackRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.NetherrackRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.NETHERRACK,Blocks.WARPED_NYLIUM,Blocks.CRIMSON_NYLIUM), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> SOUL_SOIL_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(1024, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.SoulSoilRock.getDefaultState().with(RocksMain.ROCK_VARIATION, RockVariation.TINY), 10)
|
||||
.add(RocksMain.SoulSoilRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.SoulSoilRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.SoulSoilRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.SOUL_SOIL,Blocks.SOUL_SAND), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> NETHER_GRAVEL_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(1024, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION, RockVariation.TINY), 10)
|
||||
.add(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.GRAVEL), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> NETHER_GEYSER_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(1024, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder().add(RocksMain.NetherGeyser.getDefaultState(), 1))))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.NETHERRACK), new BlockPos(0, -1, 0))))));
|
||||
|
||||
public static ConfiguredFeature<?, ?> WARPED_STICK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(1024, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.WarpedStick.getDefaultState().with(RocksMain.STICK_VARIATION, StickVariation.SMALL), 7)
|
||||
.add(RocksMain.WarpedStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.add(RocksMain.WarpedStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.WARPED_NYLIUM), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> CRIMSON_STICK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(1024, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.CrimsonStick.getDefaultState().with(RocksMain.STICK_VARIATION, StickVariation.SMALL), 7)
|
||||
.add(RocksMain.CrimsonStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.add(RocksMain.CrimsonStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.CRIMSON_NYLIUM), new BlockPos(0, -1, 0))))));
|
||||
|
||||
public static PlacedFeature NETHERRACK_ROCK_PLACED_FEATURE = NETHERRACK_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.BOTTOM_TO_120_RANGE, BiomePlacementModifier.of());
|
||||
public static PlacedFeature SOUL_SOIL_ROCK_PLACED_FEATURE = SOUL_SOIL_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.BOTTOM_TO_120_RANGE, BiomePlacementModifier.of());
|
||||
public static PlacedFeature NETHER_GRAVEL_ROCK_PLACED_FEATURE = NETHER_GRAVEL_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.BOTTOM_TO_120_RANGE, BiomePlacementModifier.of());
|
||||
public static PlacedFeature NETHER_GEYSER_PLACED_FEATURE = NETHER_GEYSER_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.BOTTOM_TO_120_RANGE, BiomePlacementModifier.of());
|
||||
public static PlacedFeature WARPED_STICK_PLACED_FEATURE = WARPED_STICK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.BOTTOM_TO_120_RANGE, BiomePlacementModifier.of());
|
||||
public static PlacedFeature CRIMSON_STICK_PLACED_FEATURE = CRIMSON_STICK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.BOTTOM_TO_120_RANGE, BiomePlacementModifier.of());
|
||||
|
||||
public static void init() {
|
||||
Registry<ConfiguredFeature<?, ?>> registry = BuiltinRegistries.CONFIGURED_FEATURE;
|
||||
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "netherrack_rock"), NETHERRACK_ROCK_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "soul_soil_rock"), SOUL_SOIL_ROCK_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "nether_gravel_rock"), NETHER_GRAVEL_ROCK_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "nether_geyser"), NETHER_GEYSER_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "warped_stick"), WARPED_STICK_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "crimson_stick"), CRIMSON_STICK_FEATURE);
|
||||
|
||||
Registry<PlacedFeature> placedRegistry = BuiltinRegistries.PLACED_FEATURE;
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "netherrack_rock"), NETHERRACK_ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "soul_soil_rock"), SOUL_SOIL_ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "nether_gravel_rock"), NETHER_GRAVEL_ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "nether_geyser"), NETHER_GEYSER_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "warped_stick"), WARPED_STICK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "crimson_stick"), CRIMSON_STICK_PLACED_FEATURE);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
165
src/main/java/eu/midnightdust/motschen/rocks/world/configured_feature/RockFeatures.java
Normal file → Executable file
165
src/main/java/eu/midnightdust/motschen/rocks/world/configured_feature/RockFeatures.java
Normal file → Executable file
@@ -1,97 +1,90 @@
|
||||
package eu.midnightdust.motschen.rocks.world.configured_feature;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
import eu.midnightdust.motschen.rocks.RocksMain;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.RockVariation;
|
||||
import eu.midnightdust.motschen.rocks.world.RocksDecorators;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.Blocks;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.collection.DataPool;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.registry.BuiltinRegistries;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
import net.minecraft.world.gen.blockpredicate.BlockPredicate;
|
||||
import net.minecraft.world.gen.decorator.BiomePlacementModifier;
|
||||
import net.minecraft.world.gen.decorator.RarityFilterPlacementModifier;
|
||||
import net.minecraft.world.gen.decorator.SquarePlacementModifier;
|
||||
import net.minecraft.world.gen.feature.*;
|
||||
import net.minecraft.world.gen.placer.SimpleBlockPlacer;
|
||||
import net.minecraft.world.gen.stateprovider.WeightedBlockStateProvider;
|
||||
|
||||
public class RockFeatures {
|
||||
public static ConfiguredFeature<?, ?> ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.Rock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.addState(RocksMain.Rock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.Rock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.Rock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).blacklist(ImmutableSet.of(Blocks.ICE.getDefaultState(),Blocks.SAND.getDefaultState(),Blocks.RED_SAND.getDefaultState()))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> GRANITE_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.GraniteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.addState(RocksMain.GraniteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.GraniteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.GraniteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).whitelist(ImmutableSet.of(Blocks.GRANITE))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> DIORITE_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.DioriteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.addState(RocksMain.DioriteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.DioriteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.DioriteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).whitelist(ImmutableSet.of(Blocks.DIORITE))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> ANDESITE_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.AndesiteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.addState(RocksMain.AndesiteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.AndesiteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.AndesiteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).whitelist(ImmutableSet.of(Blocks.ANDESITE))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> SAND_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.SandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.addState(RocksMain.SandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.SandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.SandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).whitelist(ImmutableSet.of(Blocks.SAND, Blocks.SANDSTONE))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> RED_SAND_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.RedSandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.addState(RocksMain.RedSandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.RedSandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.RedSandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).whitelist(ImmutableSet.of(Blocks.RED_SAND, Blocks.RED_SANDSTONE))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> END_STONE_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.EndstoneRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.addState(RocksMain.EndstoneRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.EndstoneRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.EndstoneRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> GRAVEL_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.addState(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.addState(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).whitelist(ImmutableSet.of(Blocks.GRAVEL))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.Rock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.add(RocksMain.Rock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.Rock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.Rock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.not(BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.ICE,Blocks.SAND,Blocks.RED_SAND), new BlockPos(0, -1, 0)))))));
|
||||
public static ConfiguredFeature<?, ?> GRANITE_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.GraniteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.add(RocksMain.GraniteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.GraniteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.GraniteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.GRANITE), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> DIORITE_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.DioriteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.add(RocksMain.DioriteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.DioriteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.DioriteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.DIORITE), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> ANDESITE_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.AndesiteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.add(RocksMain.AndesiteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.AndesiteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.AndesiteRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.ANDESITE), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> SAND_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.SandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.add(RocksMain.SandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.SandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.SandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.SAND, Blocks.SANDSTONE), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> RED_SAND_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.RedSandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.add(RocksMain.RedSandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.RedSandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.RedSandRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.RED_SAND, Blocks.RED_SANDSTONE), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> END_STONE_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.EndstoneRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.add(RocksMain.EndstoneRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.EndstoneRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.EndstoneRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())
|
||||
)).withPlacement()));
|
||||
public static ConfiguredFeature<?, ?> GRAVEL_ROCK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.TINY), 10)
|
||||
.add(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.SMALL), 7)
|
||||
.add(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.MEDIUM), 5)
|
||||
.add(RocksMain.GravelRock.getDefaultState().with(RocksMain.ROCK_VARIATION,RockVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.GRAVEL), new BlockPos(0, -1, 0))))));
|
||||
|
||||
public static PlacedFeature ROCK_PLACED_FEATURE = ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature GRANITE_ROCK_PLACED_FEATURE = GRANITE_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature DIORITE_ROCK_PLACED_FEATURE = DIORITE_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature ANDESITE_ROCK_PLACED_FEATURE = ANDESITE_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature SAND_ROCK_PLACED_FEATURE = SAND_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature RED_SAND_ROCK_PLACED_FEATURE = RED_SAND_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature END_STONE_ROCK_PLACED_FEATURE = END_STONE_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature GRAVEL_ROCK_PLACED_FEATURE = GRAVEL_ROCK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
|
||||
public static void init() {
|
||||
Registry<ConfiguredFeature<?, ?>> registry = BuiltinRegistries.CONFIGURED_FEATURE;
|
||||
@@ -103,6 +96,16 @@ public class RockFeatures {
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "red_sand_rock"), RED_SAND_ROCK_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "endstone_rock"), END_STONE_ROCK_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "gravel_rock"), GRAVEL_ROCK_FEATURE);
|
||||
|
||||
Registry<PlacedFeature> placedRegistry = BuiltinRegistries.PLACED_FEATURE;
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "rock"), ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "granite_rock"), GRANITE_ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "diorite_rock"), DIORITE_ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "andesite_rock"), ANDESITE_ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "sand_rock"), SAND_ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "red_sand_rock"), RED_SAND_ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "endstone_rock"), END_STONE_ROCK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "gravel_rock"), GRAVEL_ROCK_PLACED_FEATURE);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
122
src/main/java/eu/midnightdust/motschen/rocks/world/configured_feature/StickFeatures.java
Normal file → Executable file
122
src/main/java/eu/midnightdust/motschen/rocks/world/configured_feature/StickFeatures.java
Normal file → Executable file
@@ -1,75 +1,67 @@
|
||||
package eu.midnightdust.motschen.rocks.world.configured_feature;
|
||||
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import eu.midnightdust.motschen.rocks.RocksMain;
|
||||
import eu.midnightdust.motschen.rocks.blockstates.StickVariation;
|
||||
import net.minecraft.block.BlockState;
|
||||
import net.minecraft.block.Blocks;
|
||||
import net.minecraft.util.Identifier;
|
||||
import net.minecraft.util.collection.DataPool;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.registry.BuiltinRegistries;
|
||||
import net.minecraft.util.registry.Registry;
|
||||
import net.minecraft.world.gen.feature.ConfiguredFeature;
|
||||
import net.minecraft.world.gen.feature.ConfiguredFeatures;
|
||||
import net.minecraft.world.gen.feature.Feature;
|
||||
import net.minecraft.world.gen.feature.RandomPatchFeatureConfig;
|
||||
import net.minecraft.world.gen.placer.SimpleBlockPlacer;
|
||||
import net.minecraft.world.gen.blockpredicate.BlockPredicate;
|
||||
import net.minecraft.world.gen.decorator.BiomePlacementModifier;
|
||||
import net.minecraft.world.gen.decorator.RarityFilterPlacementModifier;
|
||||
import net.minecraft.world.gen.decorator.SquarePlacementModifier;
|
||||
import net.minecraft.world.gen.feature.*;
|
||||
import net.minecraft.world.gen.stateprovider.WeightedBlockStateProvider;
|
||||
|
||||
public class StickFeatures {
|
||||
public static ConfiguredFeature<?, ?> OAK_STICK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.OakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.addState(RocksMain.OakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.OakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0).whitelist(ImmutableSet.of(Blocks.GRASS_BLOCK))
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> SPRUCE_STICK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.SpruceStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.addState(RocksMain.SpruceStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.SpruceStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1)
|
||||
.addState(RocksMain.Pinecone.getDefaultState(), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> BIRCH_STICK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.BirchStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.addState(RocksMain.BirchStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.BirchStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> ACACIA_STICK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.AcaciaStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.addState(RocksMain.AcaciaStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.AcaciaStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> JUNGLE_STICK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.JungleStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.addState(RocksMain.JungleStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.JungleStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> DARK_OAK_STICK_FEATURE = Feature.RANDOM_PATCH.configure(
|
||||
(new RandomPatchFeatureConfig.Builder(
|
||||
new WeightedBlockStateProvider()
|
||||
.addState(RocksMain.DarkOakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.addState(RocksMain.DarkOakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.addState(RocksMain.DarkOakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1),
|
||||
SimpleBlockPlacer.INSTANCE))
|
||||
.tries(1).spreadX(0).spreadY(0).spreadZ(0)
|
||||
.build()).decorate(ConfiguredFeatures.Decorators.FIRE);
|
||||
public static ConfiguredFeature<?, ?> OAK_STICK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.OakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.add(RocksMain.OakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.add(RocksMain.OakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1).build())))
|
||||
.withBlockPredicateFilter(BlockPredicate.bothOf(BlockPredicate.IS_AIR, BlockPredicate.matchingBlocks(ImmutableList.of(Blocks.GRASS_BLOCK), new BlockPos(0, -1, 0))))));
|
||||
public static ConfiguredFeature<?, ?> SPRUCE_STICK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.SpruceStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.add(RocksMain.SpruceStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.add(RocksMain.SpruceStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1)
|
||||
.add(RocksMain.Pinecone.getDefaultState(), 1).build()))).withPlacement()
|
||||
));
|
||||
public static ConfiguredFeature<?, ?> BIRCH_STICK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.BirchStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.add(RocksMain.BirchStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.add(RocksMain.BirchStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1).build()))).withPlacement()
|
||||
));
|
||||
public static ConfiguredFeature<?, ?> ACACIA_STICK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.AcaciaStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.add(RocksMain.AcaciaStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.add(RocksMain.AcaciaStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1).build()))).withPlacement()
|
||||
));
|
||||
public static ConfiguredFeature<?, ?> JUNGLE_STICK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.JungleStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.add(RocksMain.JungleStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.add(RocksMain.JungleStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1).build()))).withPlacement()
|
||||
));
|
||||
public static ConfiguredFeature<?, ?> DARK_OAK_STICK_FEATURE = Feature.RANDOM_PATCH.configure(new RandomPatchFeatureConfig(128, 0, 0,() -> Feature.SIMPLE_BLOCK.configure(new SimpleBlockFeatureConfig(
|
||||
new WeightedBlockStateProvider(DataPool.<BlockState>builder()
|
||||
.add(RocksMain.DarkOakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.SMALL), 7)
|
||||
.add(RocksMain.DarkOakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.MEDIUM), 5)
|
||||
.add(RocksMain.DarkOakStick.getDefaultState().with(RocksMain.STICK_VARIATION,StickVariation.LARGE), 1).build()))).withPlacement()
|
||||
));
|
||||
|
||||
public static PlacedFeature OAK_STICK_PLACED_FEATURE = OAK_STICK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature SPRUCE_STICK_PLACED_FEATURE = SPRUCE_STICK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature BIRCH_STICK_PLACED_FEATURE = BIRCH_STICK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature ACACIA_STICK_PLACED_FEATURE = ACACIA_STICK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature JUNGLE_STICK_PLACED_FEATURE = JUNGLE_STICK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
public static PlacedFeature DARK_OAK_STICK_PLACED_FEATURE = DARK_OAK_STICK_FEATURE.withPlacement(RarityFilterPlacementModifier.of(1), SquarePlacementModifier.of(), PlacedFeatures.WORLD_SURFACE_WG_HEIGHTMAP, BiomePlacementModifier.of());
|
||||
|
||||
public static void init() {
|
||||
Registry<ConfiguredFeature<?, ?>> registry = BuiltinRegistries.CONFIGURED_FEATURE;
|
||||
@@ -79,6 +71,14 @@ public class StickFeatures {
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "acacia_stick"), ACACIA_STICK_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "jungle_stick"), JUNGLE_STICK_FEATURE);
|
||||
Registry.register(registry, new Identifier(RocksMain.MOD_ID, "dark_oak_stick"), DARK_OAK_STICK_FEATURE);
|
||||
|
||||
Registry<PlacedFeature> placedRegistry = BuiltinRegistries.PLACED_FEATURE;
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "oak_stick"), OAK_STICK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "spruce_stick"), SPRUCE_STICK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "birch_stick"), BIRCH_STICK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "acacia_stick"), ACACIA_STICK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "jungle_stick"), JUNGLE_STICK_PLACED_FEATURE);
|
||||
Registry.register(placedRegistry, new Identifier(RocksMain.MOD_ID, "dark_oak_stick"), DARK_OAK_STICK_PLACED_FEATURE);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
7
src/main/java/eu/midnightdust/motschen/rocks/world/feature/SnowFeature.java
Normal file → Executable file
7
src/main/java/eu/midnightdust/motschen/rocks/world/feature/SnowFeature.java
Normal file → Executable file
@@ -10,6 +10,7 @@ import net.minecraft.world.StructureWorldAccess;
|
||||
import net.minecraft.world.gen.ProbabilityConfig;
|
||||
import net.minecraft.world.gen.chunk.ChunkGenerator;
|
||||
import net.minecraft.world.gen.feature.Feature;
|
||||
import net.minecraft.world.gen.feature.util.FeatureContext;
|
||||
import net.minecraft.world.gen.stateprovider.WeightedBlockStateProvider;
|
||||
|
||||
import java.util.Random;
|
||||
@@ -22,7 +23,11 @@ public class SnowFeature extends Feature<ProbabilityConfig> {
|
||||
weightedBlockStateProvider1 = weightedBlockStateProvider;
|
||||
}
|
||||
|
||||
public boolean generate(StructureWorldAccess structureWorldAccess, ChunkGenerator chunkGenerator, Random random, BlockPos blockPos, ProbabilityConfig probabilityConfig) {
|
||||
@Override
|
||||
public boolean generate(FeatureContext<ProbabilityConfig> context) {
|
||||
Random random = context.getRandom();
|
||||
StructureWorldAccess structureWorldAccess = context.getWorld();
|
||||
BlockPos blockPos = context.getOrigin();
|
||||
boolean bl = false;
|
||||
int i = random.nextInt(8) - random.nextInt(8);
|
||||
int j = random.nextInt(8) - random.nextInt(8);
|
||||
|
||||
7
src/main/java/eu/midnightdust/motschen/rocks/world/feature/UnderwaterFeature.java
Normal file → Executable file
7
src/main/java/eu/midnightdust/motschen/rocks/world/feature/UnderwaterFeature.java
Normal file → Executable file
@@ -9,6 +9,7 @@ import net.minecraft.world.StructureWorldAccess;
|
||||
import net.minecraft.world.gen.ProbabilityConfig;
|
||||
import net.minecraft.world.gen.chunk.ChunkGenerator;
|
||||
import net.minecraft.world.gen.feature.Feature;
|
||||
import net.minecraft.world.gen.feature.util.FeatureContext;
|
||||
import net.minecraft.world.gen.stateprovider.WeightedBlockStateProvider;
|
||||
|
||||
import java.util.Random;
|
||||
@@ -20,7 +21,11 @@ public class UnderwaterFeature extends Feature<ProbabilityConfig> {
|
||||
weightedBlockStateProvider1 = weightedBlockStateProvider;
|
||||
}
|
||||
|
||||
public boolean generate(StructureWorldAccess structureWorldAccess, ChunkGenerator chunkGenerator, Random random, BlockPos blockPos, ProbabilityConfig probabilityConfig) {
|
||||
@Override
|
||||
public boolean generate(FeatureContext<ProbabilityConfig> context) {
|
||||
Random random = context.getRandom();
|
||||
StructureWorldAccess structureWorldAccess = context.getWorld();
|
||||
BlockPos blockPos = context.getOrigin();
|
||||
boolean bl = false;
|
||||
int i = random.nextInt(8) - random.nextInt(8);
|
||||
int j = random.nextInt(8) - random.nextInt(8);
|
||||
|
||||
23
src/main/resources/assets/rocks/blockstates/acacia_stick.json
Normal file → Executable file
23
src/main/resources/assets/rocks/blockstates/acacia_stick.json
Normal file → Executable file
@@ -1,7 +1,22 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=small": { "model": "rocks:block/small_acacia_stick" },
|
||||
"variation=medium": { "model": "rocks:block/medium_acacia_stick" },
|
||||
"variation=large": { "model": "rocks:block/large_acacia_stick" }
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_acacia_stick"},
|
||||
{"model": "rocks:block/small_acacia_stick", "y": 90},
|
||||
{"model": "rocks:block/small_acacia_stick", "y": 180},
|
||||
{"model": "rocks:block/small_acacia_stick", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_acacia_stick"},
|
||||
{"model": "rocks:block/medium_acacia_stick", "y": 90},
|
||||
{"model": "rocks:block/medium_acacia_stick", "y": 180},
|
||||
{"model": "rocks:block/medium_acacia_stick", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_acacia_stick"},
|
||||
{"model": "rocks:block/large_acacia_stick", "y": 90},
|
||||
{"model": "rocks:block/large_acacia_stick", "y": 180},
|
||||
{"model": "rocks:block/large_acacia_stick", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
28
src/main/resources/assets/rocks/blockstates/andesite_rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/andesite_rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_andesite_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_andesite_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_andesite_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_andesite_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_andesite_rock"},
|
||||
{"model": "rocks:block/tiny_andesite_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_andesite_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_andesite_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_andesite_rock"},
|
||||
{"model": "rocks:block/small_andesite_rock", "y": 90},
|
||||
{"model": "rocks:block/small_andesite_rock", "y": 180},
|
||||
{"model": "rocks:block/small_andesite_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_andesite_rock"},
|
||||
{"model": "rocks:block/medium_andesite_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_andesite_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_andesite_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_andesite_rock"},
|
||||
{"model": "rocks:block/large_andesite_rock", "y": 90},
|
||||
{"model": "rocks:block/large_andesite_rock", "y": 180},
|
||||
{"model": "rocks:block/large_andesite_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
23
src/main/resources/assets/rocks/blockstates/birch_stick.json
Normal file → Executable file
23
src/main/resources/assets/rocks/blockstates/birch_stick.json
Normal file → Executable file
@@ -1,7 +1,22 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=small": { "model": "rocks:block/small_birch_stick" },
|
||||
"variation=medium": { "model": "rocks:block/medium_birch_stick" },
|
||||
"variation=large": { "model": "rocks:block/large_birch_stick" }
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_birch_stick"},
|
||||
{"model": "rocks:block/small_birch_stick", "y": 90},
|
||||
{"model": "rocks:block/small_birch_stick", "y": 180},
|
||||
{"model": "rocks:block/small_birch_stick", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_birch_stick"},
|
||||
{"model": "rocks:block/medium_birch_stick", "y": 90},
|
||||
{"model": "rocks:block/medium_birch_stick", "y": 180},
|
||||
{"model": "rocks:block/medium_birch_stick", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_birch_stick"},
|
||||
{"model": "rocks:block/large_birch_stick", "y": 90},
|
||||
{"model": "rocks:block/large_birch_stick", "y": 180},
|
||||
{"model": "rocks:block/large_birch_stick", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
22
src/main/resources/assets/rocks/blockstates/crimson_stick.json
Executable file
22
src/main/resources/assets/rocks/blockstates/crimson_stick.json
Executable file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_crimson_stick"},
|
||||
{"model": "rocks:block/small_crimson_stick", "y": 90},
|
||||
{"model": "rocks:block/small_crimson_stick", "y": 180},
|
||||
{"model": "rocks:block/small_crimson_stick", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_crimson_stick"},
|
||||
{"model": "rocks:block/medium_crimson_stick", "y": 90},
|
||||
{"model": "rocks:block/medium_crimson_stick", "y": 180},
|
||||
{"model": "rocks:block/medium_crimson_stick", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_crimson_stick"},
|
||||
{"model": "rocks:block/large_crimson_stick", "y": 90},
|
||||
{"model": "rocks:block/large_crimson_stick", "y": 180},
|
||||
{"model": "rocks:block/large_crimson_stick", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
23
src/main/resources/assets/rocks/blockstates/dark_oak_stick.json
Normal file → Executable file
23
src/main/resources/assets/rocks/blockstates/dark_oak_stick.json
Normal file → Executable file
@@ -1,7 +1,22 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=small": { "model": "rocks:block/small_dark_oak_stick" },
|
||||
"variation=medium": { "model": "rocks:block/medium_dark_oak_stick" },
|
||||
"variation=large": { "model": "rocks:block/large_dark_oak_stick" }
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_dark_oak_stick"},
|
||||
{"model": "rocks:block/small_dark_oak_stick", "y": 90},
|
||||
{"model": "rocks:block/small_dark_oak_stick", "y": 180},
|
||||
{"model": "rocks:block/small_dark_oak_stick", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_dark_oak_stick"},
|
||||
{"model": "rocks:block/medium_dark_oak_stick", "y": 90},
|
||||
{"model": "rocks:block/medium_dark_oak_stick", "y": 180},
|
||||
{"model": "rocks:block/medium_dark_oak_stick", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_dark_oak_stick"},
|
||||
{"model": "rocks:block/large_dark_oak_stick", "y": 90},
|
||||
{"model": "rocks:block/large_dark_oak_stick", "y": 180},
|
||||
{"model": "rocks:block/large_dark_oak_stick", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
28
src/main/resources/assets/rocks/blockstates/diorite_rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/diorite_rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_diorite_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_diorite_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_diorite_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_diorite_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_diorite_rock"},
|
||||
{"model": "rocks:block/tiny_diorite_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_diorite_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_diorite_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_diorite_rock"},
|
||||
{"model": "rocks:block/small_diorite_rock", "y": 90},
|
||||
{"model": "rocks:block/small_diorite_rock", "y": 180},
|
||||
{"model": "rocks:block/small_diorite_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_diorite_rock"},
|
||||
{"model": "rocks:block/medium_diorite_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_diorite_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_diorite_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_diorite_rock"},
|
||||
{"model": "rocks:block/large_diorite_rock", "y": 90},
|
||||
{"model": "rocks:block/large_diorite_rock", "y": 180},
|
||||
{"model": "rocks:block/large_diorite_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
28
src/main/resources/assets/rocks/blockstates/end_stone_rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/end_stone_rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_end_stone_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_end_stone_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_end_stone_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_end_stone_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_end_stone_rock"},
|
||||
{"model": "rocks:block/tiny_end_stone_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_end_stone_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_end_stone_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_end_stone_rock"},
|
||||
{"model": "rocks:block/small_end_stone_rock", "y": 90},
|
||||
{"model": "rocks:block/small_end_stone_rock", "y": 180},
|
||||
{"model": "rocks:block/small_end_stone_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_end_stone_rock"},
|
||||
{"model": "rocks:block/medium_end_stone_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_end_stone_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_end_stone_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_end_stone_rock"},
|
||||
{"model": "rocks:block/large_end_stone_rock", "y": 90},
|
||||
{"model": "rocks:block/large_end_stone_rock", "y": 180},
|
||||
{"model": "rocks:block/large_end_stone_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
0
src/main/resources/assets/rocks/blockstates/geyser.json
Normal file → Executable file
0
src/main/resources/assets/rocks/blockstates/geyser.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/granite_rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/granite_rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_granite_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_granite_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_granite_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_granite_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_granite_rock"},
|
||||
{"model": "rocks:block/tiny_granite_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_granite_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_granite_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_granite_rock"},
|
||||
{"model": "rocks:block/small_granite_rock", "y": 90},
|
||||
{"model": "rocks:block/small_granite_rock", "y": 180},
|
||||
{"model": "rocks:block/small_granite_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_granite_rock"},
|
||||
{"model": "rocks:block/medium_granite_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_granite_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_granite_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_granite_rock"},
|
||||
{"model": "rocks:block/large_granite_rock", "y": 90},
|
||||
{"model": "rocks:block/large_granite_rock", "y": 180},
|
||||
{"model": "rocks:block/large_granite_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
28
src/main/resources/assets/rocks/blockstates/gravel_rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/gravel_rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_gravel_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_gravel_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_gravel_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_gravel_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_gravel_rock"},
|
||||
{"model": "rocks:block/tiny_gravel_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_gravel_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_gravel_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_gravel_rock"},
|
||||
{"model": "rocks:block/small_gravel_rock", "y": 90},
|
||||
{"model": "rocks:block/small_gravel_rock", "y": 180},
|
||||
{"model": "rocks:block/small_gravel_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_gravel_rock"},
|
||||
{"model": "rocks:block/medium_gravel_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_gravel_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_gravel_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_gravel_rock"},
|
||||
{"model": "rocks:block/large_gravel_rock", "y": 90},
|
||||
{"model": "rocks:block/large_gravel_rock", "y": 180},
|
||||
{"model": "rocks:block/large_gravel_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
23
src/main/resources/assets/rocks/blockstates/jungle_stick.json
Normal file → Executable file
23
src/main/resources/assets/rocks/blockstates/jungle_stick.json
Normal file → Executable file
@@ -1,7 +1,22 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=small": { "model": "rocks:block/small_jungle_stick" },
|
||||
"variation=medium": { "model": "rocks:block/medium_jungle_stick" },
|
||||
"variation=large": { "model": "rocks:block/large_jungle_stick" }
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_jungle_stick"},
|
||||
{"model": "rocks:block/small_jungle_stick", "y": 90},
|
||||
{"model": "rocks:block/small_jungle_stick", "y": 180},
|
||||
{"model": "rocks:block/small_jungle_stick", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_jungle_stick"},
|
||||
{"model": "rocks:block/medium_jungle_stick", "y": 90},
|
||||
{"model": "rocks:block/medium_jungle_stick", "y": 180},
|
||||
{"model": "rocks:block/medium_jungle_stick", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_jungle_stick"},
|
||||
{"model": "rocks:block/large_jungle_stick", "y": 90},
|
||||
{"model": "rocks:block/large_jungle_stick", "y": 180},
|
||||
{"model": "rocks:block/large_jungle_stick", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
0
src/main/resources/assets/rocks/blockstates/nether_geyser.json
Normal file → Executable file
0
src/main/resources/assets/rocks/blockstates/nether_geyser.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/netherrack_rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/netherrack_rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_netherrack_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_netherrack_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_netherrack_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_netherrack_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_netherrack_rock"},
|
||||
{"model": "rocks:block/tiny_netherrack_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_netherrack_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_netherrack_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_netherrack_rock"},
|
||||
{"model": "rocks:block/small_netherrack_rock", "y": 90},
|
||||
{"model": "rocks:block/small_netherrack_rock", "y": 180},
|
||||
{"model": "rocks:block/small_netherrack_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_netherrack_rock"},
|
||||
{"model": "rocks:block/medium_netherrack_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_netherrack_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_netherrack_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_netherrack_rock"},
|
||||
{"model": "rocks:block/large_netherrack_rock", "y": 90},
|
||||
{"model": "rocks:block/large_netherrack_rock", "y": 180},
|
||||
{"model": "rocks:block/large_netherrack_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
23
src/main/resources/assets/rocks/blockstates/oak_stick.json
Normal file → Executable file
23
src/main/resources/assets/rocks/blockstates/oak_stick.json
Normal file → Executable file
@@ -1,7 +1,22 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=small": { "model": "rocks:block/small_oak_stick" },
|
||||
"variation=medium": { "model": "rocks:block/medium_oak_stick" },
|
||||
"variation=large": { "model": "rocks:block/large_oak_stick" }
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_oak_stick"},
|
||||
{"model": "rocks:block/small_oak_stick", "y": 90},
|
||||
{"model": "rocks:block/small_oak_stick", "y": 180},
|
||||
{"model": "rocks:block/small_oak_stick", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_oak_stick"},
|
||||
{"model": "rocks:block/medium_oak_stick", "y": 90},
|
||||
{"model": "rocks:block/medium_oak_stick", "y": 180},
|
||||
{"model": "rocks:block/medium_oak_stick", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_oak_stick"},
|
||||
{"model": "rocks:block/large_oak_stick", "y": 90},
|
||||
{"model": "rocks:block/large_oak_stick", "y": 180},
|
||||
{"model": "rocks:block/large_oak_stick", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
7
src/main/resources/assets/rocks/blockstates/pinecone.json
Normal file → Executable file
7
src/main/resources/assets/rocks/blockstates/pinecone.json
Normal file → Executable file
@@ -1,5 +1,10 @@
|
||||
{
|
||||
"variants": {
|
||||
"": { "model": "rocks:block/pinecone" }
|
||||
"": [
|
||||
{"model": "rocks:block/pinecone"},
|
||||
{"model": "rocks:block/pinecone", "y": 90},
|
||||
{"model": "rocks:block/pinecone", "y": 180},
|
||||
{"model": "rocks:block/pinecone", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
28
src/main/resources/assets/rocks/blockstates/red_sand_rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/red_sand_rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_red_sand_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_red_sand_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_red_sand_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_red_sand_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_red_sand_rock"},
|
||||
{"model": "rocks:block/tiny_red_sand_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_red_sand_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_red_sand_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_red_sand_rock"},
|
||||
{"model": "rocks:block/small_red_sand_rock", "y": 90},
|
||||
{"model": "rocks:block/small_red_sand_rock", "y": 180},
|
||||
{"model": "rocks:block/small_red_sand_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_red_sand_rock"},
|
||||
{"model": "rocks:block/medium_red_sand_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_red_sand_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_red_sand_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_red_sand_rock"},
|
||||
{"model": "rocks:block/large_red_sand_rock", "y": 90},
|
||||
{"model": "rocks:block/large_red_sand_rock", "y": 180},
|
||||
{"model": "rocks:block/large_red_sand_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
28
src/main/resources/assets/rocks/blockstates/rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_rock"},
|
||||
{"model": "rocks:block/tiny_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_rock"},
|
||||
{"model": "rocks:block/small_rock", "y": 90},
|
||||
{"model": "rocks:block/small_rock", "y": 180},
|
||||
{"model": "rocks:block/small_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_rock"},
|
||||
{"model": "rocks:block/medium_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_rock"},
|
||||
{"model": "rocks:block/large_rock", "y": 90},
|
||||
{"model": "rocks:block/large_rock", "y": 180},
|
||||
{"model": "rocks:block/large_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
28
src/main/resources/assets/rocks/blockstates/sand_rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/sand_rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_sand_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_sand_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_sand_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_sand_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_sand_rock"},
|
||||
{"model": "rocks:block/tiny_sand_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_sand_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_sand_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_sand_rock"},
|
||||
{"model": "rocks:block/small_sand_rock", "y": 90},
|
||||
{"model": "rocks:block/small_sand_rock", "y": 180},
|
||||
{"model": "rocks:block/small_sand_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_sand_rock"},
|
||||
{"model": "rocks:block/medium_sand_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_sand_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_sand_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_sand_rock"},
|
||||
{"model": "rocks:block/large_sand_rock", "y": 90},
|
||||
{"model": "rocks:block/large_sand_rock", "y": 180},
|
||||
{"model": "rocks:block/large_sand_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
21
src/main/resources/assets/rocks/blockstates/seashell.json
Normal file → Executable file
21
src/main/resources/assets/rocks/blockstates/seashell.json
Normal file → Executable file
@@ -1,7 +1,22 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=yellow": { "model": "rocks:block/seashell_yellow" },
|
||||
"variation=pink": { "model": "rocks:block/seashell_pink" },
|
||||
"variation=white": { "model": "rocks:block/seashell_white" }
|
||||
"variation=yellow": [
|
||||
{"model": "rocks:block/seashell_yellow"},
|
||||
{"model": "rocks:block/seashell_yellow", "y": 90},
|
||||
{"model": "rocks:block/seashell_yellow", "y": 180},
|
||||
{"model": "rocks:block/seashell_yellow", "y": 270}
|
||||
],
|
||||
"variation=pink": [
|
||||
{"model": "rocks:block/seashell_pink"},
|
||||
{"model": "rocks:block/seashell_pink", "y": 90},
|
||||
{"model": "rocks:block/seashell_pink", "y": 180},
|
||||
{"model": "rocks:block/seashell_pink", "y": 270}
|
||||
],
|
||||
"variation=white": [
|
||||
{"model": "rocks:block/seashell_white"},
|
||||
{"model": "rocks:block/seashell_white", "y": 90},
|
||||
{"model": "rocks:block/seashell_white", "y": 180},
|
||||
{"model": "rocks:block/seashell_white", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
28
src/main/resources/assets/rocks/blockstates/soul_soil_rock.json
Normal file → Executable file
28
src/main/resources/assets/rocks/blockstates/soul_soil_rock.json
Normal file → Executable file
@@ -1,8 +1,28 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=tiny": { "model": "rocks:block/tiny_soul_soil_rock" },
|
||||
"variation=small": { "model": "rocks:block/small_soul_soil_rock" },
|
||||
"variation=medium": { "model": "rocks:block/medium_soul_soil_rock" },
|
||||
"variation=large": { "model": "rocks:block/large_soul_soil_rock" }
|
||||
"variation=tiny": [
|
||||
{"model": "rocks:block/tiny_soul_soil_rock"},
|
||||
{"model": "rocks:block/tiny_soul_soil_rock", "y": 90},
|
||||
{"model": "rocks:block/tiny_soul_soil_rock", "y": 180},
|
||||
{"model": "rocks:block/tiny_soul_soil_rock", "y": 270}
|
||||
],
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_soul_soil_rock"},
|
||||
{"model": "rocks:block/small_soul_soil_rock", "y": 90},
|
||||
{"model": "rocks:block/small_soul_soil_rock", "y": 180},
|
||||
{"model": "rocks:block/small_soul_soil_rock", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_soul_soil_rock"},
|
||||
{"model": "rocks:block/medium_soul_soil_rock", "y": 90},
|
||||
{"model": "rocks:block/medium_soul_soil_rock", "y": 180},
|
||||
{"model": "rocks:block/medium_soul_soil_rock", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_soul_soil_rock"},
|
||||
{"model": "rocks:block/large_soul_soil_rock", "y": 90},
|
||||
{"model": "rocks:block/large_soul_soil_rock", "y": 180},
|
||||
{"model": "rocks:block/large_soul_soil_rock", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
23
src/main/resources/assets/rocks/blockstates/spruce_stick.json
Normal file → Executable file
23
src/main/resources/assets/rocks/blockstates/spruce_stick.json
Normal file → Executable file
@@ -1,7 +1,22 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=small": { "model": "rocks:block/small_spruce_stick" },
|
||||
"variation=medium": { "model": "rocks:block/medium_spruce_stick" },
|
||||
"variation=large": { "model": "rocks:block/large_spruce_stick" }
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_spruce_stick"},
|
||||
{"model": "rocks:block/small_spruce_stick", "y": 90},
|
||||
{"model": "rocks:block/small_spruce_stick", "y": 180},
|
||||
{"model": "rocks:block/small_spruce_stick", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_spruce_stick"},
|
||||
{"model": "rocks:block/medium_spruce_stick", "y": 90},
|
||||
{"model": "rocks:block/medium_spruce_stick", "y": 180},
|
||||
{"model": "rocks:block/medium_spruce_stick", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_spruce_stick"},
|
||||
{"model": "rocks:block/large_spruce_stick", "y": 90},
|
||||
{"model": "rocks:block/large_spruce_stick", "y": 180},
|
||||
{"model": "rocks:block/large_spruce_stick", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
22
src/main/resources/assets/rocks/blockstates/starfish.json
Normal file → Executable file
22
src/main/resources/assets/rocks/blockstates/starfish.json
Normal file → Executable file
@@ -1,7 +1,23 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=red": { "model": "rocks:block/starfish_red" },
|
||||
"variation=pink": { "model": "rocks:block/starfish_pink" },
|
||||
"variation=orange": { "model": "rocks:block/starfish_orange" }
|
||||
"variation=red": [
|
||||
{"model": "rocks:block/starfish_red", "y": 180},
|
||||
{"model": "rocks:block/starfish_red", "y": 270},
|
||||
{"model": "rocks:block/starfish_red", "y": 0},
|
||||
{"model": "rocks:block/starfish_red", "y": 90}
|
||||
],
|
||||
"variation=pink": [
|
||||
{"model": "rocks:block/starfish_pink"},
|
||||
{"model": "rocks:block/starfish_pink", "y": 90},
|
||||
{"model": "rocks:block/starfish_pink", "y": 180},
|
||||
{"model": "rocks:block/starfish_pink", "y": 270}
|
||||
],
|
||||
"variation=orange": [
|
||||
{"model": "rocks:block/starfish_orange", "y": 90},
|
||||
{"model": "rocks:block/starfish_orange", "y": 180},
|
||||
{"model": "rocks:block/starfish_orange", "y": 270},
|
||||
{"model": "rocks:block/starfish_orange"}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
22
src/main/resources/assets/rocks/blockstates/warped_stick.json
Executable file
22
src/main/resources/assets/rocks/blockstates/warped_stick.json
Executable file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"variants": {
|
||||
"variation=small": [
|
||||
{"model": "rocks:block/small_warped_stick"},
|
||||
{"model": "rocks:block/small_warped_stick", "y": 90},
|
||||
{"model": "rocks:block/small_warped_stick", "y": 180},
|
||||
{"model": "rocks:block/small_warped_stick", "y": 270}
|
||||
],
|
||||
"variation=medium": [
|
||||
{"model": "rocks:block/medium_warped_stick"},
|
||||
{"model": "rocks:block/medium_warped_stick", "y": 90},
|
||||
{"model": "rocks:block/medium_warped_stick", "y": 180},
|
||||
{"model": "rocks:block/medium_warped_stick", "y": 270}
|
||||
],
|
||||
"variation=large": [
|
||||
{"model": "rocks:block/large_warped_stick"},
|
||||
{"model": "rocks:block/large_warped_stick", "y": 90},
|
||||
{"model": "rocks:block/large_warped_stick", "y": 180},
|
||||
{"model": "rocks:block/large_warped_stick", "y": 270}
|
||||
]
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/rocks/icon.png
Normal file → Executable file
BIN
src/main/resources/assets/rocks/icon.png
Normal file → Executable file
Binary file not shown.
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 3.4 KiB |
12
src/main/resources/assets/rocks/lang/de_de.json
Normal file → Executable file
12
src/main/resources/assets/rocks/lang/de_de.json
Normal file → Executable file
@@ -18,6 +18,8 @@
|
||||
"block.rocks.jungle_stick":"Tropenholzstock",
|
||||
"block.rocks.acacia_stick":"Akazienholzstock",
|
||||
"block.rocks.dark_oak_stick":"Schwarzeichenholzstock",
|
||||
"block.rocks.crimson_stick":"Karmesinstock",
|
||||
"block.rocks.warped_stick":"Wirrstock",
|
||||
|
||||
"block.rocks.geyser":"Geyser",
|
||||
"block.rocks.nether_geyser":"Magma Geyser",
|
||||
@@ -34,5 +36,13 @@
|
||||
"item.rocks.red_sandstone_splitter":"Roter Sandsteinsplitter",
|
||||
"item.rocks.end_stone_splitter":"Endsteinsplitter",
|
||||
"item.rocks.netherrack_splitter":"Netherracksplitter",
|
||||
"item.rocks.soul_soil_splitter":"Seelenerdesplitter"
|
||||
"item.rocks.soul_soil_splitter":"Seelenerdesplitter",
|
||||
|
||||
"rocks.midnightconfig.title": "This Rocks! Konfiguration",
|
||||
"rocks.midnightconfig.needs_restart": "§c Starte das Spiel neu, nachdem du Änderungen vorgenommen hast!",
|
||||
"rocks.midnightconfig.rocks": "§aBrocken",
|
||||
"rocks.midnightconfig.sticks": "§aStöcke",
|
||||
"rocks.midnightconfig.misc": "§aWeiteres",
|
||||
"rocks.midnightconfig.underwater_seashell": "Unterwassermuschel",
|
||||
"rocks.midnightconfig.underwater_starfish": "Unterwasserseestern"
|
||||
}
|
||||
12
src/main/resources/assets/rocks/lang/en_us.json
Normal file → Executable file
12
src/main/resources/assets/rocks/lang/en_us.json
Normal file → Executable file
@@ -18,6 +18,8 @@
|
||||
"block.rocks.jungle_stick":"Jungle Stick",
|
||||
"block.rocks.acacia_stick":"Acacia Stick",
|
||||
"block.rocks.dark_oak_stick":"Dark Oak Stick",
|
||||
"block.rocks.crimson_stick":"Crimson Stick",
|
||||
"block.rocks.warped_stick":"Warped Stick",
|
||||
|
||||
"block.rocks.geyser":"Geyser",
|
||||
"block.rocks.nether_geyser":"Magma Geyser",
|
||||
@@ -34,5 +36,13 @@
|
||||
"item.rocks.red_sandstone_splitter":"Red Sandstone Splitter",
|
||||
"item.rocks.end_stone_splitter":"End Stone Splitter",
|
||||
"item.rocks.netherrack_splitter":"Netherrack Splitter",
|
||||
"item.rocks.soul_soil_splitter":"Soul Soil Splitter"
|
||||
"item.rocks.soul_soil_splitter":"Soul Soil Splitter",
|
||||
|
||||
"rocks.midnightconfig.title":"This Rocks! Config",
|
||||
"rocks.midnightconfig.needs_restart":"§c Restart game after changing config!",
|
||||
"rocks.midnightconfig.rocks":"§aRocks",
|
||||
"rocks.midnightconfig.sticks":"§aSticks",
|
||||
"rocks.midnightconfig.misc":"§aMiscellaneous",
|
||||
"rocks.midnightconfig.underwater_seashell":"Underwater Seashell",
|
||||
"rocks.midnightconfig.underwater_starfish":"Underwater Starfish"
|
||||
}
|
||||
38
src/main/resources/assets/rocks/lang/pl_pl.json
Executable file
38
src/main/resources/assets/rocks/lang/pl_pl.json
Executable file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"itemGroup.rocks.rocks":"This Rocks!",
|
||||
|
||||
"block.rocks.rock":"Fragment kamienia",
|
||||
"block.rocks.granite_rock":"Fragment granitu",
|
||||
"block.rocks.diorite_rock":"Fragment diorytu",
|
||||
"block.rocks.andesite_rock":"Fragment andezytu",
|
||||
"block.rocks.sand_rock":"Fragment piaskowca",
|
||||
"block.rocks.red_sand_rock":"Fragment czerwonego piaskowca",
|
||||
"block.rocks.gravel_rock":"Fragment żwiru",
|
||||
"block.rocks.end_stone_rock":"Fragment kamienia endu",
|
||||
"block.rocks.netherrack_rock":"Fragment skały netheru",
|
||||
"block.rocks.soul_soil_rock":"Fragment gleby dusz",
|
||||
|
||||
"block.rocks.oak_stick":"Dębowy patyk",
|
||||
"block.rocks.birch_stick":"Brzozowy patyk",
|
||||
"block.rocks.spruce_stick":"Świerkowy patyk",
|
||||
"block.rocks.jungle_stick":"Tropikalny patyk",
|
||||
"block.rocks.acacia_stick":"Akacjowy patyk",
|
||||
"block.rocks.dark_oak_stick":"Ciemnodębowy patyk",
|
||||
|
||||
"block.rocks.geyser":"Gejzer",
|
||||
"block.rocks.nether_geyser":"Gejzer Magmowy",
|
||||
|
||||
"block.rocks.pinecone":"Szyszka",
|
||||
"block.rocks.seashell":"Muszla",
|
||||
"block.rocks.starfish":"Rozgwiazda",
|
||||
|
||||
"item.rocks.cobblestone_splitter":"Fragment bruku",
|
||||
"item.rocks.granite_splitter":"Fragment granitu",
|
||||
"item.rocks.diorite_splitter":"Fragment diorytu",
|
||||
"item.rocks.andesite_splitter":"Fragment andezytu",
|
||||
"item.rocks.sandstone_splitter":"Fragment piaskowca",
|
||||
"item.rocks.red_sandstone_splitter":"Fragment czerwonego piaskowca",
|
||||
"item.rocks.end_stone_splitter":"Fragment kamienia endu",
|
||||
"item.rocks.netherrack_splitter":"Fragment skały netheru",
|
||||
"item.rocks.soul_soil_splitter":"Fragment gleby dusz"
|
||||
}
|
||||
16
src/main/resources/assets/rocks/lang/ru_ru.json
Normal file → Executable file
16
src/main/resources/assets/rocks/lang/ru_ru.json
Normal file → Executable file
@@ -2,9 +2,15 @@
|
||||
"itemGroup.rocks.rocks":"This Rocks!",
|
||||
|
||||
"block.rocks.rock":"Камушек из булыжника",
|
||||
"block.rocks.granite_rock":"Камушек из гранита",
|
||||
"block.rocks.diorite_rock":"Камушек из диорита",
|
||||
"block.rocks.andesite_rock":"Камушек из андезита",
|
||||
"block.rocks.sand_rock":"Камушек из песчаника",
|
||||
"block.rocks.red_sand_rock":"Камушек из красного песчаника",
|
||||
"block.rocks.gravel_rock":"Камушек из гравия",
|
||||
"block.rocks.end_stone_rock":"Камушек из эндерняка",
|
||||
"block.rocks.netherrack_rock":"Камушек из адского камня",
|
||||
"block.rocks.soul_soil_rock":"Камушек из почвы душ",
|
||||
|
||||
"block.rocks.oak_stick":"Дубовая палка",
|
||||
"block.rocks.birch_stick":"Берёзовая палка",
|
||||
@@ -13,12 +19,20 @@
|
||||
"block.rocks.acacia_stick":"Палка из акации",
|
||||
"block.rocks.dark_oak_stick":"Палка из тёмного дуба",
|
||||
|
||||
"block.rocks.geyser":"Гейзер",
|
||||
"block.rocks.nether_geyser":"Магмовый гейзер",
|
||||
|
||||
"block.rocks.pinecone":"Шишка",
|
||||
"block.rocks.seashell":"Морская ракушка",
|
||||
"block.rocks.starfish":"Морская звезда",
|
||||
|
||||
"item.rocks.cobblestone_splitter":"Кусочек булыжника",
|
||||
"item.rocks.granite_splitter":"Кусочек гранита",
|
||||
"item.rocks.diorite_splitter":"Кусочек диорита",
|
||||
"item.rocks.andesite_splitter":"Кусочек андезита",
|
||||
"item.rocks.sandstone_splitter":"Кусочек песчаника",
|
||||
"item.rocks.red_sandstone_splitter":"Кусочек красного песчаника",
|
||||
"item.rocks.end_stone_splitter":"Кусочек эндерняка"
|
||||
"item.rocks.end_stone_splitter":"Кусочек эндерняка",
|
||||
"item.rocks.netherrack_splitter":"Кусочек адского камня",
|
||||
"item.rocks.soul_soil_splitter":"Кусочек почвы душ"
|
||||
}
|
||||
|
||||
0
src/main/resources/assets/rocks/lang/zh_cn.json
Normal file → Executable file
0
src/main/resources/assets/rocks/lang/zh_cn.json
Normal file → Executable file
0
src/main/resources/assets/rocks/materialmaps/block/geyser.json
Normal file → Executable file
0
src/main/resources/assets/rocks/materialmaps/block/geyser.json
Normal file → Executable file
0
src/main/resources/assets/rocks/materialmaps/block/nether_geyser.json
Normal file → Executable file
0
src/main/resources/assets/rocks/materialmaps/block/nether_geyser.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/geyser_off.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/geyser_off.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/geyser_on.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/geyser_on.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_acacia_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_acacia_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_andesite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_andesite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_birch_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_birch_stick.json
Normal file → Executable file
7
src/main/resources/assets/rocks/models/block/large_crimson_stick.json
Executable file
7
src/main/resources/assets/rocks/models/block/large_crimson_stick.json
Executable file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "rocks:block/large_oak_stick",
|
||||
"textures": {
|
||||
"0": "block/crimson_stem",
|
||||
"particle": "block/crimson_stem"
|
||||
}
|
||||
}
|
||||
0
src/main/resources/assets/rocks/models/block/large_dark_oak_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_dark_oak_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_diorite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_diorite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_end_stone_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_end_stone_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_granite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_granite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_gravel_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_gravel_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_jungle_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_jungle_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_netherrack_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_netherrack_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_oak_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_oak_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_red_sand_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_red_sand_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_sand_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_sand_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_soul_soil_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_soul_soil_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_spruce_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/large_spruce_stick.json
Normal file → Executable file
7
src/main/resources/assets/rocks/models/block/large_warped_stick.json
Executable file
7
src/main/resources/assets/rocks/models/block/large_warped_stick.json
Executable file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "rocks:block/large_oak_stick",
|
||||
"textures": {
|
||||
"0": "block/warped_stem",
|
||||
"particle": "block/warped_stem"
|
||||
}
|
||||
}
|
||||
0
src/main/resources/assets/rocks/models/block/medium_acacia_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_acacia_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_andesite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_andesite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_birch_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_birch_stick.json
Normal file → Executable file
7
src/main/resources/assets/rocks/models/block/medium_crimson_stick.json
Executable file
7
src/main/resources/assets/rocks/models/block/medium_crimson_stick.json
Executable file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"parent": "rocks:block/medium_oak_stick",
|
||||
"textures": {
|
||||
"0": "block/crimson_stem",
|
||||
"particle": "block/crimson_stem"
|
||||
}
|
||||
}
|
||||
0
src/main/resources/assets/rocks/models/block/medium_dark_oak_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_dark_oak_stick.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_diorite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_diorite_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_end_stone_rock.json
Normal file → Executable file
0
src/main/resources/assets/rocks/models/block/medium_end_stone_rock.json
Normal file → Executable file
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user