diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..1fc365f1 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,39 @@ +# Automatically build the project and run any configured tests for every push +# and submitted pull request. This can help catch issues that only occur on +# certain platforms or Java versions, and provides a first line of defence +# against bad commits. + +name: build +on: [pull_request, push] + +jobs: + build: + strategy: + matrix: + # Use these Java versions + java: [ + 17, # Current Java LTS & minimum supported by Minecraft + ] + # and run on both Linux and Windows + os: [ubuntu-20.04, windows-2022] + runs-on: ${{ matrix.os }} + steps: + - name: checkout repository + uses: actions/checkout@v2 + - name: validate gradle wrapper + uses: gradle/wrapper-validation-action@v1 + - name: setup jdk ${{ matrix.java }} + uses: actions/setup-java@v1 + with: + java-version: ${{ matrix.java }} + - name: make gradle wrapper executable + if: ${{ runner.os != 'Windows' }} + run: chmod +x ./gradlew + - name: build + run: ./gradlew build + - name: capture build artifacts + if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from latest java on one OS + uses: actions/upload-artifact@v2 + with: + name: Artifacts + path: build/libs/ diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..09cd281f --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# gradle + +.gradle/ +build/ +out/ +classes/ + +# eclipse + +*.launch + +# idea + +.idea/ +*.iml +*.ipr +*.iws + +# vscode + +.settings/ +.vscode/ +bin/ +.classpath +.project + +# macos + +*.DS_Store + +# fabric + +run/ diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..e379ff2b --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 DakotaPride + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 00000000..7a3be5d3 --- /dev/null +++ b/build.gradle @@ -0,0 +1,77 @@ +plugins { + id 'fabric-loom' version '0.12-SNAPSHOT' + id 'maven-publish' +} + +sourceCompatibility = JavaVersion.VERSION_17 +targetCompatibility = JavaVersion.VERSION_17 + +archivesBaseName = project.archives_base_name +version = project.mod_version +group = project.maven_group + +repositories { + // Add repositories to retrieve artifacts from in here. + // You should only use this when depending on other mods because + // Loom adds the essential maven repositories to download Minecraft and libraries from automatically. + // See https://docs.gradle.org/current/userguide/declaring_repositories.html + // for more information about repositories. +} + +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" + modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" + + // Fabric API. This is technically optional, but you probably want it anyway. + modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + + // Uncomment the following line to enable the deprecated Fabric API modules. + // These are included in the Fabric API production distribution and allow you to update your mod to the latest modules at a later more convenient time. + + // modImplementation "net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}" +} + +processResources { + inputs.property "version", project.version + + filesMatching("fabric.mod.json") { + expand "version": project.version + } +} + +tasks.withType(JavaCompile).configureEach { + // Minecraft 1.18 (1.18-pre2) upwards uses Java 17. + it.options.release = 17 +} + +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") { + rename { "${it}_${project.archivesBaseName}"} + } +} + +// configure the maven publication +publishing { + publications { + mavenJava(MavenPublication) { + from components.java + } + } + + // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. + repositories { + // 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. + } +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..6a5b819d --- /dev/null +++ b/gradle.properties @@ -0,0 +1,16 @@ +# Done to increase the memory available to gradle. +org.gradle.jvmargs=-Xmx1G + +# Fabric Properties + # check these on https://fabricmc.net/develop + minecraft_version=1.19.2 + yarn_mappings=1.19.2+build.28 + loader_version=0.14.10 + +# Mod Properties + mod_version = 0.1.0 + maven_group = net.dakotapride + archives_base_name = hibernal-herbs + +# Dependencies + fabric_version=0.66.0+1.19.2 diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 00000000..7454180f Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..41dfb879 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 00000000..c53aefaa --- /dev/null +++ b/gradlew @@ -0,0 +1,234 @@ +#!/bin/sh + +# +# 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. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for 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 +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 + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +APP_NAME="Gradle" +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 + +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 ;; #( + 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 + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$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 + +# 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. + +# 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" ) + + 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" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 00000000..107acd32 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,89 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 00000000..b02216ba --- /dev/null +++ b/settings.gradle @@ -0,0 +1,10 @@ +pluginManagement { + repositories { + maven { + name = 'Fabric' + url = 'https://maven.fabricmc.net/' + } + mavenCentral() + gradlePluginPortal() + } +} diff --git a/src/main/java/net/dakotapride/hibernalHerbs/client/HibernalHerbsClient.java b/src/main/java/net/dakotapride/hibernalHerbs/client/HibernalHerbsClient.java new file mode 100644 index 00000000..0bdd6c10 --- /dev/null +++ b/src/main/java/net/dakotapride/hibernalHerbs/client/HibernalHerbsClient.java @@ -0,0 +1,31 @@ +package net.dakotapride.hibernalHerbs.client; + +import net.dakotapride.hibernalHerbs.common.init.BlockInit; +import net.fabricmc.api.ClientModInitializer; +import net.fabricmc.fabric.api.blockrenderlayer.v1.BlockRenderLayerMap; +import net.minecraft.client.render.RenderLayer; + +public class HibernalHerbsClient implements ClientModInitializer { + + @Override + public void onInitializeClient() { + + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.ROSEMARY, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.THYME, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.TARRAGON, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.CHAMOMILE, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.CHIVES, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.VERBENA, RenderLayer.getCutout()); + + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.MYQUESTE_SAPLING, RenderLayer.getCutout()); + + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.POTTED_ROSEMARY, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.POTTED_THYME, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.POTTED_TARRAGON, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.POTTED_CHAMOMILE, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.POTTED_CHIVES, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.POTTED_VERBENA, RenderLayer.getCutout()); + + BlockRenderLayerMap.INSTANCE.putBlock(BlockInit.POTTED_MYQUESTE_SAPLING, RenderLayer.getCutout()); + } +} diff --git a/src/main/java/net/dakotapride/hibernalHerbs/common/HibernalHerbsMod.java b/src/main/java/net/dakotapride/hibernalHerbs/common/HibernalHerbsMod.java new file mode 100644 index 00000000..79344bab --- /dev/null +++ b/src/main/java/net/dakotapride/hibernalHerbs/common/HibernalHerbsMod.java @@ -0,0 +1,77 @@ +package net.dakotapride.hibernalHerbs.common; + +import net.dakotapride.hibernalHerbs.common.init.BlockInit; +import net.dakotapride.hibernalHerbs.common.init.FeaturesInit; +import net.dakotapride.hibernalHerbs.common.init.ItemInit; +import net.fabricmc.api.ModInitializer; +import net.fabricmc.fabric.api.client.itemgroup.FabricItemGroupBuilder; +import net.minecraft.item.ItemGroup; +import net.minecraft.item.ItemStack; +import net.minecraft.util.Identifier; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +public class HibernalHerbsMod implements ModInitializer { + public static final String HIBERNAL_HERBS_ID = "hibernalherbs"; + + public static class groupManager { + public static ItemGroup HIBERNAL_HERBS = FabricItemGroupBuilder.create( + new Identifier(HIBERNAL_HERBS_ID, "hibernal_herbs")) + .icon(() -> new ItemStack(BlockInit.MYQUESTE_LOG.asItem())) + .appendItems(itemStacks -> { + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_SAPLING)); + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_LEAVES)); + + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_PLANKS)); + + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_LOG)); + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_WOOD)); + + itemStacks.add(new ItemStack(BlockInit.STRIPPED_MYQUESTE_LOG)); + itemStacks.add(new ItemStack(BlockInit.STRIPPED_MYQUESTE_WOOD)); + + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_DOOR)); + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_TRAPDOOR)); + + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_FENCE)); + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_FENCE_GATE)); + + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_SLAB)); + itemStacks.add(new ItemStack(BlockInit.MYQUESTE_STAIRS)); + }).build(); + + public static ItemGroup HERBS = FabricItemGroupBuilder.create( + new Identifier(HIBERNAL_HERBS_ID, "herbs")) + .icon(() -> new ItemStack(BlockInit.TARRAGON.asItem())) + .appendItems(itemStacks -> { + itemStacks.add(new ItemStack(BlockInit.ROSEMARY)); + itemStacks.add(new ItemStack(BlockInit.THYME)); + itemStacks.add(new ItemStack(BlockInit.TARRAGON)); + itemStacks.add(new ItemStack(BlockInit.CHAMOMILE)); + itemStacks.add(new ItemStack(BlockInit.CHIVES)); + itemStacks.add(new ItemStack(BlockInit.VERBENA)); + }).build(); + + public static ItemGroup POUNDED_HERBS = FabricItemGroupBuilder.create( + new Identifier(HIBERNAL_HERBS_ID, "pounded_herbs")) + .icon(() -> new ItemStack(ItemInit.POUNDED_TARRAGON.asItem())) + .appendItems(itemStacks -> { + itemStacks.add(new ItemStack(ItemInit.POUNDED_ROSEMARY)); + itemStacks.add(new ItemStack(ItemInit.POUNDED_THYME)); + itemStacks.add(new ItemStack(ItemInit.POUNDED_TARRAGON)); + itemStacks.add(new ItemStack(ItemInit.POUNDED_CHAMOMILE)); + itemStacks.add(new ItemStack(ItemInit.POUNDED_CHIVES)); + itemStacks.add(new ItemStack(ItemInit.POUNDED_VERBENA)); + }).build(); + } + + @Override + public void onInitialize() { + BlockInit.init(); + ItemInit.init(); + + util.utilsInit(); + + FeaturesInit.init(); + } +} diff --git a/src/main/java/net/dakotapride/hibernalHerbs/common/gen/saplingGenerator/MyquesteSaplingGenerator.java b/src/main/java/net/dakotapride/hibernalHerbs/common/gen/saplingGenerator/MyquesteSaplingGenerator.java new file mode 100644 index 00000000..272c79cd --- /dev/null +++ b/src/main/java/net/dakotapride/hibernalHerbs/common/gen/saplingGenerator/MyquesteSaplingGenerator.java @@ -0,0 +1,26 @@ +package net.dakotapride.hibernalHerbs.common.gen.saplingGenerator; + +import net.dakotapride.hibernalHerbs.common.init.FeaturesInit; +import net.minecraft.block.sapling.LargeTreeSaplingGenerator; +import net.minecraft.util.math.random.Random; +import net.minecraft.util.registry.RegistryEntry; +import net.minecraft.world.gen.feature.ConfiguredFeature; +import net.minecraft.world.gen.feature.TreeConfiguredFeatures; +import org.jetbrains.annotations.Nullable; + +public class MyquesteSaplingGenerator extends LargeTreeSaplingGenerator { + public MyquesteSaplingGenerator() { + } + + @Nullable + @Override + protected RegistryEntry> getLargeTreeFeature(Random random) { + return FeaturesInit.MYQUESTE_CONFIGURED; + } + + @Nullable + @Override + protected RegistryEntry> getTreeFeature(Random random, boolean bees) { + return getLargeTreeFeature(random); + } +} diff --git a/src/main/java/net/dakotapride/hibernalHerbs/common/init/BlockInit.java b/src/main/java/net/dakotapride/hibernalHerbs/common/init/BlockInit.java new file mode 100644 index 00000000..bdbb2cd1 --- /dev/null +++ b/src/main/java/net/dakotapride/hibernalHerbs/common/init/BlockInit.java @@ -0,0 +1,111 @@ +package net.dakotapride.hibernalHerbs.common.init; + +import net.dakotapride.hibernalHerbs.common.HibernalHerbsMod; +import net.dakotapride.hibernalHerbs.common.gen.saplingGenerator.MyquesteSaplingGenerator; +import net.fabricmc.fabric.api.item.v1.FabricItemSettings; +import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; +import net.minecraft.block.*; +import net.minecraft.entity.effect.StatusEffects; +import net.minecraft.item.BlockItem; +import net.minecraft.util.Identifier; +import net.minecraft.util.registry.Registry; + +import static net.dakotapride.hibernalHerbs.common.HibernalHerbsMod.HIBERNAL_HERBS_ID; + +public class BlockInit { + + public static FlowerBlock ROSEMARY = + new FlowerBlock(StatusEffects.SLOWNESS, 180, FabricBlockSettings.copy(Blocks.LILY_OF_THE_VALLEY)); + public static FlowerBlock THYME = + new FlowerBlock(StatusEffects.POISON, 180, FabricBlockSettings.copy(Blocks.LILY_OF_THE_VALLEY)); + public static FlowerBlock TARRAGON = + new FlowerBlock(StatusEffects.SLOWNESS, 180, FabricBlockSettings.copy(Blocks.LILY_OF_THE_VALLEY)); + public static FlowerBlock CHAMOMILE = + new FlowerBlock(StatusEffects.ABSORPTION, 180, FabricBlockSettings.copy(Blocks.LILY_OF_THE_VALLEY)); + public static FlowerBlock CHIVES = + new FlowerBlock(StatusEffects.SLOWNESS, 180, FabricBlockSettings.copy(Blocks.LILY_OF_THE_VALLEY)); + public static FlowerBlock VERBENA = + new FlowerBlock(StatusEffects.SLOWNESS, 180, FabricBlockSettings.copy(Blocks.LILY_OF_THE_VALLEY)); + + public static FlowerPotBlock POTTED_ROSEMARY = + new FlowerPotBlock(ROSEMARY, FabricBlockSettings.copy(Blocks.POTTED_LILY_OF_THE_VALLEY)); + public static FlowerPotBlock POTTED_THYME = + new FlowerPotBlock(THYME, FabricBlockSettings.copy(Blocks.POTTED_LILY_OF_THE_VALLEY)); + public static FlowerPotBlock POTTED_TARRAGON = + new FlowerPotBlock(TARRAGON, FabricBlockSettings.copy(Blocks.POTTED_LILY_OF_THE_VALLEY)); + public static FlowerPotBlock POTTED_CHAMOMILE = + new FlowerPotBlock(CHAMOMILE, FabricBlockSettings.copy(Blocks.POTTED_LILY_OF_THE_VALLEY)); + public static FlowerPotBlock POTTED_CHIVES = + new FlowerPotBlock(CHIVES, FabricBlockSettings.copy(Blocks.POTTED_LILY_OF_THE_VALLEY)); + public static FlowerPotBlock POTTED_VERBENA = + new FlowerPotBlock(VERBENA, FabricBlockSettings.copy(Blocks.POTTED_LILY_OF_THE_VALLEY)); + + public static SaplingBlock MYQUESTE_SAPLING = new SaplingBlock(new MyquesteSaplingGenerator(), + FabricBlockSettings.copy(Blocks.SPRUCE_SAPLING).ticksRandomly().nonOpaque()); + public static PillarBlock MYQUESTE_LOG = new PillarBlock(FabricBlockSettings.copy(Blocks.SPRUCE_LOG)); + public static PillarBlock STRIPPED_MYQUESTE_LOG = new PillarBlock(FabricBlockSettings.copy(Blocks.STRIPPED_SPRUCE_LOG)); + public static PillarBlock MYQUESTE_WOOD = new PillarBlock(FabricBlockSettings.copy(Blocks.SPRUCE_WOOD)); + public static PillarBlock STRIPPED_MYQUESTE_WOOD = new PillarBlock(FabricBlockSettings.copy(Blocks.STRIPPED_SPRUCE_WOOD)); + public static Block MYQUESTE_PLANKS = new Block(FabricBlockSettings.copy(Blocks.SPRUCE_PLANKS)); + public static LeavesBlock MYQUESTE_LEAVES = new LeavesBlock(FabricBlockSettings.copy(Blocks.SPRUCE_LEAVES).ticksRandomly().nonOpaque()); + public static DoorBlock MYQUESTE_DOOR = new DoorBlock(FabricBlockSettings.copy(Blocks.SPRUCE_DOOR)); + public static TrapdoorBlock MYQUESTE_TRAPDOOR = new TrapdoorBlock(FabricBlockSettings.copy(Blocks.SPRUCE_TRAPDOOR)); + public static SlabBlock MYQUESTE_SLAB = new SlabBlock(FabricBlockSettings.copy(Blocks.SPRUCE_SLAB)); + public static StairsBlock MYQUESTE_STAIRS = new StairsBlock(MYQUESTE_PLANKS.getDefaultState(), FabricBlockSettings.copy(Blocks.SPRUCE_STAIRS)); + public static FenceBlock MYQUESTE_FENCE = new FenceBlock(FabricBlockSettings.copy(Blocks.SPRUCE_FENCE)); + public static FenceGateBlock MYQUESTE_FENCE_GATE = new FenceGateBlock(FabricBlockSettings.copy(Blocks.SPRUCE_FENCE_GATE)); + public static FlowerPotBlock POTTED_MYQUESTE_SAPLING = + new FlowerPotBlock(MYQUESTE_SAPLING, FabricBlockSettings.copy(Blocks.POTTED_SPRUCE_SAPLING)); + + public static void init() { + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "rosemary"), ROSEMARY); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "rosemary"), new BlockItem(ROSEMARY, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "thyme"), THYME); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "thyme"), new BlockItem(THYME, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "tarragon"), TARRAGON); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "tarragon"), new BlockItem(TARRAGON, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "chamomile"), CHAMOMILE); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "chamomile"), new BlockItem(CHAMOMILE, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "chives"), CHIVES); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "chives"), new BlockItem(CHIVES, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "verbena"), VERBENA); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "verbena"), new BlockItem(VERBENA, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "potted_rosemary"), POTTED_ROSEMARY); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "potted_thyme"), POTTED_THYME); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "potted_tarragon"), POTTED_TARRAGON); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "potted_chamomile"), POTTED_CHAMOMILE); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "potted_chives"), POTTED_CHIVES); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "potted_verbena"), POTTED_VERBENA); + + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "potted_myqueste_sapling"), POTTED_MYQUESTE_SAPLING); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_sapling"), MYQUESTE_SAPLING); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_sapling"), new BlockItem(MYQUESTE_SAPLING, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_log"), MYQUESTE_LOG); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_log"), new BlockItem(MYQUESTE_LOG, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_leaves"), MYQUESTE_LEAVES); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_leaves"), new BlockItem(MYQUESTE_LEAVES, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "stripped_myqueste_log"), STRIPPED_MYQUESTE_LOG); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "stripped_myqueste_log"), new BlockItem(STRIPPED_MYQUESTE_LOG, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_wood"), MYQUESTE_WOOD); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_wood"), new BlockItem(MYQUESTE_WOOD, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "stripped_myqueste_wood"), STRIPPED_MYQUESTE_WOOD); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "stripped_myqueste_wood"), new BlockItem(STRIPPED_MYQUESTE_WOOD, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_planks"), MYQUESTE_PLANKS); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_planks"), new BlockItem(MYQUESTE_PLANKS, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_stairs"), MYQUESTE_STAIRS); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_stairs"), new BlockItem(MYQUESTE_STAIRS, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_slab"), MYQUESTE_SLAB); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_slab"), new BlockItem(MYQUESTE_SLAB, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_door"), MYQUESTE_DOOR); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_door"), new BlockItem(MYQUESTE_DOOR, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_trapdoor"), MYQUESTE_TRAPDOOR); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_trapdoor"), new BlockItem(MYQUESTE_TRAPDOOR, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_fence"), MYQUESTE_FENCE); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_fence"), new BlockItem(MYQUESTE_FENCE, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + Registry.register(Registry.BLOCK, new Identifier(HIBERNAL_HERBS_ID, "myqueste_fence_gate"), MYQUESTE_FENCE_GATE); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "myqueste_fence_gate"), new BlockItem(MYQUESTE_FENCE_GATE, new FabricItemSettings().group(HibernalHerbsMod.groupManager.HIBERNAL_HERBS))); + } + +} diff --git a/src/main/java/net/dakotapride/hibernalHerbs/common/init/FeaturesInit.java b/src/main/java/net/dakotapride/hibernalHerbs/common/init/FeaturesInit.java new file mode 100644 index 00000000..cb8b2913 --- /dev/null +++ b/src/main/java/net/dakotapride/hibernalHerbs/common/init/FeaturesInit.java @@ -0,0 +1,97 @@ +package net.dakotapride.hibernalHerbs.common.init; + +import net.fabricmc.fabric.api.biome.v1.BiomeModifications; +import net.fabricmc.fabric.api.biome.v1.BiomeSelectors; +import net.minecraft.tag.BiomeTags; +import net.minecraft.util.math.intprovider.UniformIntProvider; +import net.minecraft.util.registry.RegistryEntry; +import net.minecraft.world.biome.BiomeKeys; +import net.minecraft.world.gen.GenerationStep; +import net.minecraft.world.gen.feature.*; +import net.minecraft.world.gen.feature.size.TwoLayersFeatureSize; +import net.minecraft.world.gen.foliage.SpruceFoliagePlacer; +import net.minecraft.world.gen.placementmodifier.BiomePlacementModifier; +import net.minecraft.world.gen.placementmodifier.RarityFilterPlacementModifier; +import net.minecraft.world.gen.placementmodifier.SquarePlacementModifier; +import net.minecraft.world.gen.stateprovider.BlockStateProvider; +import net.minecraft.world.gen.trunk.StraightTrunkPlacer; + +import java.util.List; + +import static net.dakotapride.hibernalHerbs.common.HibernalHerbsMod.HIBERNAL_HERBS_ID; + +public class FeaturesInit { + + // Configured + + public static final RegistryEntry> ROSEMARY_CONFIGURED = + ConfiguredFeatures.register(HIBERNAL_HERBS_ID + ":herb_rosemary_configured", Feature.FLOWER, + ConfiguredFeatures.createRandomPatchFeatureConfig(64, PlacedFeatures.createEntry(Feature.SIMPLE_BLOCK, + new SimpleBlockFeatureConfig(BlockStateProvider.of(BlockInit.ROSEMARY))))); + public static final RegistryEntry> THYME_CONFIGURED = + ConfiguredFeatures.register(HIBERNAL_HERBS_ID + ":herb_thyme_configured", Feature.FLOWER, + ConfiguredFeatures.createRandomPatchFeatureConfig(64, PlacedFeatures.createEntry(Feature.SIMPLE_BLOCK, + new SimpleBlockFeatureConfig(BlockStateProvider.of(BlockInit.THYME))))); + public static final RegistryEntry> TARRAGON_CONFIGURED = + ConfiguredFeatures.register(HIBERNAL_HERBS_ID + ":herb_tarragon_configured", Feature.FLOWER, + ConfiguredFeatures.createRandomPatchFeatureConfig(64, PlacedFeatures.createEntry(Feature.SIMPLE_BLOCK, + new SimpleBlockFeatureConfig(BlockStateProvider.of(BlockInit.TARRAGON))))); + public static final RegistryEntry> CHAMOMILE_CONFIGURED = + ConfiguredFeatures.register(HIBERNAL_HERBS_ID + ":herb_chamomile_configured", Feature.FLOWER, + ConfiguredFeatures.createRandomPatchFeatureConfig(64, PlacedFeatures.createEntry(Feature.SIMPLE_BLOCK, + new SimpleBlockFeatureConfig(BlockStateProvider.of(BlockInit.CHAMOMILE))))); + + public static final RegistryEntry> MYQUESTE_CONFIGURED = + ConfiguredFeatures.register(HIBERNAL_HERBS_ID + ":tree_myqueste_configured", Feature.TREE, (new TreeFeatureConfig.Builder(BlockStateProvider.of + (BlockInit.MYQUESTE_LOG), new StraightTrunkPlacer(5, 2, 1), BlockStateProvider.of(BlockInit.MYQUESTE_LEAVES), + new SpruceFoliagePlacer(UniformIntProvider.create(2, 3), UniformIntProvider.create(0, 2), + UniformIntProvider.create(1, 2)), new TwoLayersFeatureSize(2, 0, 2))) + .ignoreVines().build()); + + // Misc + + public static final RegistryEntry MYQUESTE_CHECKED = PlacedFeatures.register(HIBERNAL_HERBS_ID + ":myqueste_checked", + MYQUESTE_CONFIGURED, List.of(PlacedFeatures.wouldSurvive(BlockInit.MYQUESTE_SAPLING))); + + public static final RegistryEntry> MYQUESTE_SPAWN = + ConfiguredFeatures.register(HIBERNAL_HERBS_ID + ":myqueste_spawn", Feature.RANDOM_SELECTOR, + new RandomFeatureConfig(List.of(new RandomFeatureEntry(MYQUESTE_CHECKED, 0.5f)), + MYQUESTE_CHECKED)); + + // Placed + + public static final RegistryEntry ROSEMARY_PLACED = PlacedFeatures.register(HIBERNAL_HERBS_ID + ":rosemary_placed", + ROSEMARY_CONFIGURED, RarityFilterPlacementModifier.of(4), SquarePlacementModifier.of(), + PlacedFeatures.MOTION_BLOCKING_HEIGHTMAP, BiomePlacementModifier.of()); + public static final RegistryEntry THYME_PLACED = PlacedFeatures.register(HIBERNAL_HERBS_ID + ":thyme_placed", + THYME_CONFIGURED, RarityFilterPlacementModifier.of(4), SquarePlacementModifier.of(), + PlacedFeatures.MOTION_BLOCKING_HEIGHTMAP, BiomePlacementModifier.of()); + public static final RegistryEntry TARRAGON_PLACED = PlacedFeatures.register(HIBERNAL_HERBS_ID + ":tarragon_placed", + TARRAGON_CONFIGURED, RarityFilterPlacementModifier.of(4), SquarePlacementModifier.of(), + PlacedFeatures.MOTION_BLOCKING_HEIGHTMAP, BiomePlacementModifier.of()); + public static final RegistryEntry CHAMOMILE_PLACED = PlacedFeatures.register(HIBERNAL_HERBS_ID + ":chamomile_placed", + CHAMOMILE_CONFIGURED, RarityFilterPlacementModifier.of(4), SquarePlacementModifier.of(), + PlacedFeatures.MOTION_BLOCKING_HEIGHTMAP, BiomePlacementModifier.of()); + + public static final RegistryEntry MYQUESTE_PLACED = + PlacedFeatures.register(HIBERNAL_HERBS_ID + ":myqueste_placed", MYQUESTE_SPAWN, + VegetationPlacedFeatures.modifiers(PlacedFeatures.createCountExtraModifier(1, 0.1f, 2))); + + public static void init() { + // Load This Class + + BiomeModifications.addFeature(BiomeSelectors.tag(BiomeTags.VILLAGE_SNOWY_HAS_STRUCTURE), + GenerationStep.Feature.VEGETAL_DECORATION, ROSEMARY_PLACED.getKey().get()); + BiomeModifications.addFeature(BiomeSelectors.tag(BiomeTags.VILLAGE_SNOWY_HAS_STRUCTURE), + GenerationStep.Feature.VEGETAL_DECORATION, THYME_PLACED.getKey().get()); + BiomeModifications.addFeature(BiomeSelectors.tag(BiomeTags.VILLAGE_SNOWY_HAS_STRUCTURE), + GenerationStep.Feature.VEGETAL_DECORATION, TARRAGON_PLACED.getKey().get()); + BiomeModifications.addFeature(BiomeSelectors.tag(BiomeTags.VILLAGE_SNOWY_HAS_STRUCTURE), + GenerationStep.Feature.VEGETAL_DECORATION, CHAMOMILE_PLACED.getKey().get()); + + BiomeModifications.addFeature(BiomeSelectors.tag(BiomeTags.VILLAGE_SNOWY_HAS_STRUCTURE), + GenerationStep.Feature.VEGETAL_DECORATION, MYQUESTE_PLACED.getKey().get()); + + } + +} diff --git a/src/main/java/net/dakotapride/hibernalHerbs/common/init/FoodComponentInit.java b/src/main/java/net/dakotapride/hibernalHerbs/common/init/FoodComponentInit.java new file mode 100644 index 00000000..8838204d --- /dev/null +++ b/src/main/java/net/dakotapride/hibernalHerbs/common/init/FoodComponentInit.java @@ -0,0 +1,9 @@ +package net.dakotapride.hibernalHerbs.common.init; + +import net.minecraft.item.FoodComponent; + +public class FoodComponentInit { + + public static final FoodComponent POUNDED_HERB = (new FoodComponent.Builder()).hunger(4).saturationModifier(0.3F).build(); + +} diff --git a/src/main/java/net/dakotapride/hibernalHerbs/common/init/ItemInit.java b/src/main/java/net/dakotapride/hibernalHerbs/common/init/ItemInit.java new file mode 100644 index 00000000..ff3a339a --- /dev/null +++ b/src/main/java/net/dakotapride/hibernalHerbs/common/init/ItemInit.java @@ -0,0 +1,36 @@ +package net.dakotapride.hibernalHerbs.common.init; + +import net.dakotapride.hibernalHerbs.common.HibernalHerbsMod; +import net.fabricmc.fabric.api.item.v1.FabricItemSettings; +import net.minecraft.item.Item; +import net.minecraft.util.Identifier; +import net.minecraft.util.registry.Registry; + +import static net.dakotapride.hibernalHerbs.common.HibernalHerbsMod.HIBERNAL_HERBS_ID; + +public class ItemInit { + + public static Item POUNDED_ROSEMARY = new Item(new FabricItemSettings().food(FoodComponentInit.POUNDED_HERB) + .group(HibernalHerbsMod.groupManager.POUNDED_HERBS)); + public static Item POUNDED_THYME = new Item(new FabricItemSettings().food(FoodComponentInit.POUNDED_HERB) + .group(HibernalHerbsMod.groupManager.POUNDED_HERBS)); + public static Item POUNDED_TARRAGON = new Item(new FabricItemSettings().food(FoodComponentInit.POUNDED_HERB) + .group(HibernalHerbsMod.groupManager.POUNDED_HERBS)); + public static Item POUNDED_CHAMOMILE = new Item(new FabricItemSettings().food(FoodComponentInit.POUNDED_HERB) + .group(HibernalHerbsMod.groupManager.POUNDED_HERBS)); + public static Item POUNDED_CHIVES = new Item(new FabricItemSettings().food(FoodComponentInit.POUNDED_HERB) + .group(HibernalHerbsMod.groupManager.POUNDED_HERBS)); + public static Item POUNDED_VERBENA = new Item(new FabricItemSettings().food(FoodComponentInit.POUNDED_HERB) + .group(HibernalHerbsMod.groupManager.POUNDED_HERBS)); + + + public static void init () { + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "pounded_rosemary"), POUNDED_ROSEMARY); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "pounded_thyme"), POUNDED_THYME); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "pounded_tarragon"), POUNDED_TARRAGON); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "pounded_chamomile"), POUNDED_CHAMOMILE); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "pounded_chives"), POUNDED_CHIVES); + Registry.register(Registry.ITEM, new Identifier(HIBERNAL_HERBS_ID, "pounded_verbena"), POUNDED_VERBENA); + } + +} diff --git a/src/main/java/net/dakotapride/hibernalHerbs/common/util.java b/src/main/java/net/dakotapride/hibernalHerbs/common/util.java new file mode 100644 index 00000000..94aa96cb --- /dev/null +++ b/src/main/java/net/dakotapride/hibernalHerbs/common/util.java @@ -0,0 +1,13 @@ +package net.dakotapride.hibernalHerbs.common; + +import net.dakotapride.hibernalHerbs.common.init.BlockInit; +import net.fabricmc.fabric.api.registry.StrippableBlockRegistry; + +public class util { + + public static void utilsInit() { + StrippableBlockRegistry.register(BlockInit.MYQUESTE_LOG, BlockInit.STRIPPED_MYQUESTE_LOG); + StrippableBlockRegistry.register(BlockInit.MYQUESTE_WOOD, BlockInit.STRIPPED_MYQUESTE_WOOD); + } + +} diff --git a/src/main/resources/assets/hibernalherbs/blockstates/chamomile.json b/src/main/resources/assets/hibernalherbs/blockstates/chamomile.json new file mode 100644 index 00000000..875ba8a9 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/chamomile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/chamomile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/chives.json b/src/main/resources/assets/hibernalherbs/blockstates/chives.json new file mode 100644 index 00000000..22565b57 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/chives.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/chives" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_door.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_door.json new file mode 100644 index 00000000..8945578a --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "hibernalherbs:block/myqueste_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "hibernalherbs:block/myqueste_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "hibernalherbs:block/myqueste_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "hibernalherbs:block/myqueste_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "hibernalherbs:block/myqueste_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "hibernalherbs:block/myqueste_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "hibernalherbs:block/myqueste_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "hibernalherbs:block/myqueste_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "hibernalherbs:block/myqueste_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "hibernalherbs:block/myqueste_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "hibernalherbs:block/myqueste_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "hibernalherbs:block/myqueste_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "hibernalherbs:block/myqueste_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "hibernalherbs:block/myqueste_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "hibernalherbs:block/myqueste_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "hibernalherbs:block/myqueste_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "hibernalherbs:block/myqueste_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "hibernalherbs:block/myqueste_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "hibernalherbs:block/myqueste_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "hibernalherbs:block/myqueste_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "hibernalherbs:block/myqueste_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "hibernalherbs:block/myqueste_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "hibernalherbs:block/myqueste_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "hibernalherbs:block/myqueste_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "hibernalherbs:block/myqueste_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "hibernalherbs:block/myqueste_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "hibernalherbs:block/myqueste_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "hibernalherbs:block/myqueste_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "hibernalherbs:block/myqueste_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "hibernalherbs:block/myqueste_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "hibernalherbs:block/myqueste_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "hibernalherbs:block/myqueste_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_fence.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_fence.json new file mode 100644 index 00000000..012ed471 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_fence.json @@ -0,0 +1,48 @@ +{ + "multipart": [ + { + "apply": { + "model": "hibernalherbs:block/myqueste_fence_post" + } + }, + { + "apply": { + "model": "hibernalherbs:block/myqueste_fence_side", + "uvlock": true + }, + "when": { + "north": "true" + } + }, + { + "apply": { + "model": "hibernalherbs:block/myqueste_fence_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "true" + } + }, + { + "apply": { + "model": "hibernalherbs:block/myqueste_fence_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "true" + } + }, + { + "apply": { + "model": "hibernalherbs:block/myqueste_fence_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "true" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_fence_gate.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_fence_gate.json new file mode 100644 index 00000000..abc497ad --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_fence_gate.json @@ -0,0 +1,80 @@ +{ + "variants": { + "facing=east,in_wall=false,open=false": { + "model": "hibernalherbs:block/myqueste_fence_gate", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=false,open=true": { + "model": "hibernalherbs:block/myqueste_fence_gate_open", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=false": { + "model": "hibernalherbs:block/myqueste_fence_gate_wall", + "uvlock": true, + "y": 270 + }, + "facing=east,in_wall=true,open=true": { + "model": "hibernalherbs:block/myqueste_fence_gate_wall_open", + "uvlock": true, + "y": 270 + }, + "facing=north,in_wall=false,open=false": { + "model": "hibernalherbs:block/myqueste_fence_gate", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=false,open=true": { + "model": "hibernalherbs:block/myqueste_fence_gate_open", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=false": { + "model": "hibernalherbs:block/myqueste_fence_gate_wall", + "uvlock": true, + "y": 180 + }, + "facing=north,in_wall=true,open=true": { + "model": "hibernalherbs:block/myqueste_fence_gate_wall_open", + "uvlock": true, + "y": 180 + }, + "facing=south,in_wall=false,open=false": { + "model": "hibernalherbs:block/myqueste_fence_gate", + "uvlock": true + }, + "facing=south,in_wall=false,open=true": { + "model": "hibernalherbs:block/myqueste_fence_gate_open", + "uvlock": true + }, + "facing=south,in_wall=true,open=false": { + "model": "hibernalherbs:block/myqueste_fence_gate_wall", + "uvlock": true + }, + "facing=south,in_wall=true,open=true": { + "model": "hibernalherbs:block/myqueste_fence_gate_wall_open", + "uvlock": true + }, + "facing=west,in_wall=false,open=false": { + "model": "hibernalherbs:block/myqueste_fence_gate", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=false,open=true": { + "model": "hibernalherbs:block/myqueste_fence_gate_open", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=false": { + "model": "hibernalherbs:block/myqueste_fence_gate_wall", + "uvlock": true, + "y": 90 + }, + "facing=west,in_wall=true,open=true": { + "model": "hibernalherbs:block/myqueste_fence_gate_wall_open", + "uvlock": true, + "y": 90 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_leaves.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_leaves.json new file mode 100644 index 00000000..9c4c62f5 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_leaves.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/myqueste_leaves" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_log.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_log.json new file mode 100644 index 00000000..8965f247 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "hibernalherbs:block/myqueste_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "hibernalherbs:block/myqueste_log" + }, + "axis=z": { + "model": "hibernalherbs:block/myqueste_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_planks.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_planks.json new file mode 100644 index 00000000..e6108d80 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_planks.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/myqueste_planks" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_sapling.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_sapling.json new file mode 100644 index 00000000..31136170 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/myqueste_sapling" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_slab.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_slab.json new file mode 100644 index 00000000..efa2ff41 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "hibernalherbs:block/myqueste_slab" + }, + "type=double": { + "model": "hibernalherbs:block/myqueste_planks" + }, + "type=top": { + "model": "hibernalherbs:block/myqueste_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_stairs.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_stairs.json new file mode 100644 index 00000000..bcb4b3ff --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "hibernalherbs:block/myqueste_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "hibernalherbs:block/myqueste_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "hibernalherbs:block/myqueste_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "hibernalherbs:block/myqueste_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "hibernalherbs:block/myqueste_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "hibernalherbs:block/myqueste_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "hibernalherbs:block/myqueste_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "hibernalherbs:block/myqueste_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "hibernalherbs:block/myqueste_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "hibernalherbs:block/myqueste_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "hibernalherbs:block/myqueste_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "hibernalherbs:block/myqueste_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "hibernalherbs:block/myqueste_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "hibernalherbs:block/myqueste_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_trapdoor.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_trapdoor.json new file mode 100644 index 00000000..b3832472 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_trapdoor.json @@ -0,0 +1,69 @@ +{ + "variants": { + "facing=east,half=bottom,open=false": { + "model": "hibernalherbs:block/myqueste_trapdoor_bottom", + "y": 90 + }, + "facing=east,half=bottom,open=true": { + "model": "hibernalherbs:block/myqueste_trapdoor_open", + "y": 90 + }, + "facing=east,half=top,open=false": { + "model": "hibernalherbs:block/myqueste_trapdoor_top", + "y": 90 + }, + "facing=east,half=top,open=true": { + "model": "hibernalherbs:block/myqueste_trapdoor_open", + "x": 180, + "y": 270 + }, + "facing=north,half=bottom,open=false": { + "model": "hibernalherbs:block/myqueste_trapdoor_bottom" + }, + "facing=north,half=bottom,open=true": { + "model": "hibernalherbs:block/myqueste_trapdoor_open" + }, + "facing=north,half=top,open=false": { + "model": "hibernalherbs:block/myqueste_trapdoor_top" + }, + "facing=north,half=top,open=true": { + "model": "hibernalherbs:block/myqueste_trapdoor_open", + "x": 180, + "y": 180 + }, + "facing=south,half=bottom,open=false": { + "model": "hibernalherbs:block/myqueste_trapdoor_bottom", + "y": 180 + }, + "facing=south,half=bottom,open=true": { + "model": "hibernalherbs:block/myqueste_trapdoor_open", + "y": 180 + }, + "facing=south,half=top,open=false": { + "model": "hibernalherbs:block/myqueste_trapdoor_top", + "y": 180 + }, + "facing=south,half=top,open=true": { + "model": "hibernalherbs:block/myqueste_trapdoor_open", + "x": 180, + "y": 0 + }, + "facing=west,half=bottom,open=false": { + "model": "hibernalherbs:block/myqueste_trapdoor_bottom", + "y": 270 + }, + "facing=west,half=bottom,open=true": { + "model": "hibernalherbs:block/myqueste_trapdoor_open", + "y": 270 + }, + "facing=west,half=top,open=false": { + "model": "hibernalherbs:block/myqueste_trapdoor_top", + "y": 270 + }, + "facing=west,half=top,open=true": { + "model": "hibernalherbs:block/myqueste_trapdoor_open", + "x": 180, + "y": 90 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/myqueste_wood.json b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_wood.json new file mode 100644 index 00000000..f5707fcf --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/myqueste_wood.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/myqueste_wood" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/potted_chamomile.json b/src/main/resources/assets/hibernalherbs/blockstates/potted_chamomile.json new file mode 100644 index 00000000..aed4be00 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/potted_chamomile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/potted_chamomile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/potted_myqueste_sapling.json b/src/main/resources/assets/hibernalherbs/blockstates/potted_myqueste_sapling.json new file mode 100644 index 00000000..85db3c16 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/potted_myqueste_sapling.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/potted_myqueste_sapling" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/potted_rosemary.json b/src/main/resources/assets/hibernalherbs/blockstates/potted_rosemary.json new file mode 100644 index 00000000..950c5440 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/potted_rosemary.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/potted_rosemary" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/potted_tarragon.json b/src/main/resources/assets/hibernalherbs/blockstates/potted_tarragon.json new file mode 100644 index 00000000..10748553 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/potted_tarragon.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/potted_tarragon" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/potted_thyme.json b/src/main/resources/assets/hibernalherbs/blockstates/potted_thyme.json new file mode 100644 index 00000000..31daa371 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/potted_thyme.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/potted_thyme" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/potted_verbena.json b/src/main/resources/assets/hibernalherbs/blockstates/potted_verbena.json new file mode 100644 index 00000000..256959df --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/potted_verbena.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/potted_verbena" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/rosemary.json b/src/main/resources/assets/hibernalherbs/blockstates/rosemary.json new file mode 100644 index 00000000..fd8d4ef5 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/rosemary.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/rosemary" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/stripped_myqueste_log.json b/src/main/resources/assets/hibernalherbs/blockstates/stripped_myqueste_log.json new file mode 100644 index 00000000..5c2d39ac --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/stripped_myqueste_log.json @@ -0,0 +1,16 @@ +{ + "variants": { + "axis=x": { + "model": "hibernalherbs:block/stripped_myqueste_log_horizontal", + "x": 90, + "y": 90 + }, + "axis=y": { + "model": "hibernalherbs:block/stripped_myqueste_log" + }, + "axis=z": { + "model": "hibernalherbs:block/stripped_myqueste_log_horizontal", + "x": 90 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/stripped_myqueste_wood.json b/src/main/resources/assets/hibernalherbs/blockstates/stripped_myqueste_wood.json new file mode 100644 index 00000000..00ee39a6 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/stripped_myqueste_wood.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/stripped_myqueste_wood" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/tarragon.json b/src/main/resources/assets/hibernalherbs/blockstates/tarragon.json new file mode 100644 index 00000000..2a8cf9f9 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/tarragon.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/tarragon" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/thyme.json b/src/main/resources/assets/hibernalherbs/blockstates/thyme.json new file mode 100644 index 00000000..71fee8a0 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/thyme.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/thyme" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/blockstates/verbena.json b/src/main/resources/assets/hibernalherbs/blockstates/verbena.json new file mode 100644 index 00000000..8c5ea0b4 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/blockstates/verbena.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "hibernalherbs:block/verbena" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/icon.png b/src/main/resources/assets/hibernalherbs/icon.png new file mode 100644 index 00000000..837212e4 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/icon.png differ diff --git a/src/main/resources/assets/hibernalherbs/lang/en_ca.json b/src/main/resources/assets/hibernalherbs/lang/en_ca.json new file mode 100644 index 00000000..f1b085d9 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/lang/en_ca.json @@ -0,0 +1,41 @@ +{ + "block.hibernalherbs.rosemary": "Rosemary", + "block.hibernalherbs.thyme": "Thyme", + "block.hibernalherbs.tarragon": "Tarragon", + "block.hibernalherbs.chamomile": "Chamomile", + "block.hibernalherbs.chives": "Chives", + "block.hibernalherbs.verbena": "Verbena", + + "item.hibernalherbs.pounded_rosemary": "Pounded Rosemary", + "item.hibernalherbs.pounded_thyme": "Pounded Thyme", + "item.hibernalherbs.pounded_tarragon": "Pounded Tarragon", + "item.hibernalherbs.pounded_chamomile": "Pounded Chamomile", + "item.hibernalherbs.pounded_chives": "Pounded Chives", + "item.hibernalherbs.pounded_verbena": "Pounded Verbena", + + "block.hibernalherbs.potted_rosemary": "Potted Rosemary", + "block.hibernalherbs.potted_thyme": "Potted Thyme", + "block.hibernalherbs.potted_tarragon": "Potted Tarragon", + "block.hibernalherbs.potted_chamomile": "Potted Chamomile", + "block.hibernalherbs.potted_chives": "Potted Chives", + "block.hibernalherbs.potted_verbena": "Potted Verbena", + + "block.hibernalherbs.potted_myqueste_sapling": "Potted Myqueste Sapling", + "block.hibernalherbs.myqueste_log": "Myqueste Log", + "block.hibernalherbs.stripped_myqueste_log": "Stripped Myqueste Log", + "block.hibernalherbs.myqueste_wood": "Myqueste Wood", + "block.hibernalherbs.stripped_myqueste_wood": "Stripped Myqueste Wood", + "block.hibernalherbs.myqueste_stairs": "Myqueste Stairs", + "block.hibernalherbs.myqueste_slab": "Myqueste Slab", + "block.hibernalherbs.myqueste_fence": "Myqueste Fence", + "block.hibernalherbs.myqueste_fence_gate": "Myqueste Fence Gate", + "block.hibernalherbs.myqueste_door": "Myqueste Door", + "block.hibernalherbs.myqueste_trapdoor": "Myqueste Trapdoor", + "block.hibernalherbs.myqueste_sapling": "Myqueste Sapling", + "block.hibernalherbs.myqueste_planks": "Myqueste Planks", + "block.hibernalherbs.myqueste_leaves": "Myqueste Leaves", + + "itemGroup.hibernalherbs.hibernal_herbs": "Hibernal Herbs - Misc", + "itemGroup.hibernalherbs.herbs": "Hibernal Herbs - Herbs", + "itemGroup.hibernalherbs.pounded_herbs": "Hibernal Herbs - Pounded Herbs" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/chamomile.json b/src/main/resources/assets/hibernalherbs/models/block/chamomile.json new file mode 100644 index 00000000..c9a2e293 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/chamomile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "hibernalherbs:block/herb/chamomile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/chives.json b/src/main/resources/assets/hibernalherbs/models/block/chives.json new file mode 100644 index 00000000..591f0c04 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/chives.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "hibernalherbs:block/herb/chives" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_left.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_left.json new file mode 100644 index 00000000..3d274819 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "hibernalherbs:block/myqueste_door_bottom", + "top": "hibernalherbs:block/myqueste_door_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_left_open.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_left_open.json new file mode 100644 index 00000000..b92b6491 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "textures": { + "bottom": "hibernalherbs:block/myqueste_door_bottom", + "top": "hibernalherbs:block/myqueste_door_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_right.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_right.json new file mode 100644 index 00000000..5974eb95 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "textures": { + "bottom": "hibernalherbs:block/myqueste_door_bottom", + "top": "hibernalherbs:block/myqueste_door_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_right_open.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_right_open.json new file mode 100644 index 00000000..e0de40fc --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_bottom_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "textures": { + "bottom": "hibernalherbs:block/myqueste_door_bottom", + "top": "hibernalherbs:block/myqueste_door_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_left.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_left.json new file mode 100644 index 00000000..d04d2c1e --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_left.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left", + "textures": { + "bottom": "hibernalherbs:block/myqueste_door_bottom", + "top": "hibernalherbs:block/myqueste_door_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_left_open.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_left_open.json new file mode 100644 index 00000000..ddadbb86 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_left_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "textures": { + "bottom": "hibernalherbs:block/myqueste_door_bottom", + "top": "hibernalherbs:block/myqueste_door_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_right.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_right.json new file mode 100644 index 00000000..8e24a615 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_right.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right", + "textures": { + "bottom": "hibernalherbs:block/myqueste_door_bottom", + "top": "hibernalherbs:block/myqueste_door_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_right_open.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_right_open.json new file mode 100644 index 00000000..1700762e --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_door_top_right_open.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "textures": { + "bottom": "hibernalherbs:block/myqueste_door_bottom", + "top": "hibernalherbs:block/myqueste_door_top" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate.json new file mode 100644 index 00000000..e067d0d9 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate", + "textures": { + "texture": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate_open.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate_open.json new file mode 100644 index 00000000..7651b500 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_open", + "textures": { + "texture": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate_wall.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate_wall.json new file mode 100644 index 00000000..d43fff34 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate_wall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall", + "textures": { + "texture": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate_wall_open.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate_wall_open.json new file mode 100644 index 00000000..dd5137ff --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_gate_wall_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_fence_gate_wall_open", + "textures": { + "texture": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_inventory.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_inventory.json new file mode 100644 index 00000000..2f9fb1ea --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_inventory", + "textures": { + "texture": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_post.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_post.json new file mode 100644 index 00000000..fce741ee --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_post", + "textures": { + "texture": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_side.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_side.json new file mode 100644 index 00000000..dd9692e6 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_fence_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/fence_side", + "textures": { + "texture": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_leaves.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_leaves.json new file mode 100644 index 00000000..508c1dcb --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_leaves.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/leaves", + "textures": { + "all": "hibernalherbs:block/myqueste_leaves" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_log.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_log.json new file mode 100644 index 00000000..459ad43a --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "hibernalherbs:block/myqueste_log_top", + "side": "hibernalherbs:block/myqueste_log" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_log_horizontal.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_log_horizontal.json new file mode 100644 index 00000000..d7b76c97 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "hibernalherbs:block/myqueste_log_top", + "side": "hibernalherbs:block/myqueste_log" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_planks.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_planks.json new file mode 100644 index 00000000..9481bf54 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_planks.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_sapling.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_sapling.json new file mode 100644 index 00000000..d2a35a4a --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "hibernalherbs:block/myqueste_sapling" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_slab.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_slab.json new file mode 100644 index 00000000..9d0591c1 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "hibernalherbs:block/myqueste_planks", + "side": "hibernalherbs:block/myqueste_planks", + "top": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_slab_top.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_slab_top.json new file mode 100644 index 00000000..088f5854 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "hibernalherbs:block/myqueste_planks", + "side": "hibernalherbs:block/myqueste_planks", + "top": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_stairs.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_stairs.json new file mode 100644 index 00000000..477b6864 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "hibernalherbs:block/myqueste_planks", + "side": "hibernalherbs:block/myqueste_planks", + "top": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_stairs_inner.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_stairs_inner.json new file mode 100644 index 00000000..7bb3d940 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "hibernalherbs:block/myqueste_planks", + "side": "hibernalherbs:block/myqueste_planks", + "top": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_stairs_outer.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_stairs_outer.json new file mode 100644 index 00000000..27594db5 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "hibernalherbs:block/myqueste_planks", + "side": "hibernalherbs:block/myqueste_planks", + "top": "hibernalherbs:block/myqueste_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_trapdoor_bottom.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_trapdoor_bottom.json new file mode 100644 index 00000000..971c1a45 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_trapdoor_bottom.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_bottom", + "textures": { + "texture": "hibernalherbs:block/myqueste_trapdoor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_trapdoor_open.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_trapdoor_open.json new file mode 100644 index 00000000..b0198fd5 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_trapdoor_open.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_open", + "textures": { + "texture": "hibernalherbs:block/myqueste_trapdoor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_trapdoor_top.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_trapdoor_top.json new file mode 100644 index 00000000..4d2bc1c2 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_trapdoor_top.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_orientable_trapdoor_top", + "textures": { + "texture": "hibernalherbs:block/myqueste_trapdoor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/myqueste_wood.json b/src/main/resources/assets/hibernalherbs/models/block/myqueste_wood.json new file mode 100644 index 00000000..e03c30ca --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/myqueste_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "hibernalherbs:block/myqueste_log", + "side": "hibernalherbs:block/myqueste_log" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/potted_chamomile.json b/src/main/resources/assets/hibernalherbs/models/block/potted_chamomile.json new file mode 100644 index 00000000..2c0167b6 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/potted_chamomile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "hibernalherbs:block/herb/chamomile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/potted_myqueste_sapling.json b/src/main/resources/assets/hibernalherbs/models/block/potted_myqueste_sapling.json new file mode 100644 index 00000000..05aeef16 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/potted_myqueste_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "hibernalherbs:block/myqueste_sapling" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/potted_rosemary.json b/src/main/resources/assets/hibernalherbs/models/block/potted_rosemary.json new file mode 100644 index 00000000..3b13e4f0 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/potted_rosemary.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "hibernalherbs:block/herb/rosemary" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/potted_tarragon.json b/src/main/resources/assets/hibernalherbs/models/block/potted_tarragon.json new file mode 100644 index 00000000..cc4977db --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/potted_tarragon.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "hibernalherbs:block/herb/tarragon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/potted_thyme.json b/src/main/resources/assets/hibernalherbs/models/block/potted_thyme.json new file mode 100644 index 00000000..e126992e --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/potted_thyme.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "hibernalherbs:block/herb/thyme" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/potted_verbena.json b/src/main/resources/assets/hibernalherbs/models/block/potted_verbena.json new file mode 100644 index 00000000..8224bf1c --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/potted_verbena.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/flower_pot_cross", + "textures": { + "plant": "hibernalherbs:block/herb/verbena" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/rosemary.json b/src/main/resources/assets/hibernalherbs/models/block/rosemary.json new file mode 100644 index 00000000..c657783f --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/rosemary.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "hibernalherbs:block/herb/rosemary" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/stripped_myqueste_log.json b/src/main/resources/assets/hibernalherbs/models/block/stripped_myqueste_log.json new file mode 100644 index 00000000..22640a0e --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/stripped_myqueste_log.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "hibernalherbs:block/stripped_myqueste_log_top", + "side": "hibernalherbs:block/stripped_myqueste_log" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/stripped_myqueste_log_horizontal.json b/src/main/resources/assets/hibernalherbs/models/block/stripped_myqueste_log_horizontal.json new file mode 100644 index 00000000..ffe6c426 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/stripped_myqueste_log_horizontal.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column_horizontal", + "textures": { + "end": "hibernalherbs:block/stripped_myqueste_log_top", + "side": "hibernalherbs:block/stripped_myqueste_log" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/stripped_myqueste_wood.json b/src/main/resources/assets/hibernalherbs/models/block/stripped_myqueste_wood.json new file mode 100644 index 00000000..97c09b10 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/stripped_myqueste_wood.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_column", + "textures": { + "end": "hibernalherbs:block/stripped_myqueste_log", + "side": "hibernalherbs:block/stripped_myqueste_log" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/tarragon.json b/src/main/resources/assets/hibernalherbs/models/block/tarragon.json new file mode 100644 index 00000000..a3c586f8 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/tarragon.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "hibernalherbs:block/herb/tarragon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/thyme.json b/src/main/resources/assets/hibernalherbs/models/block/thyme.json new file mode 100644 index 00000000..1efbcac3 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/thyme.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "hibernalherbs:block/herb/thyme" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/block/verbena.json b/src/main/resources/assets/hibernalherbs/models/block/verbena.json new file mode 100644 index 00000000..10813a81 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/block/verbena.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cross", + "textures": { + "cross": "hibernalherbs:block/herb/verbena" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/chamomile.json b/src/main/resources/assets/hibernalherbs/models/item/chamomile.json new file mode 100644 index 00000000..f0117e87 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/chamomile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:block/herb/chamomile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/chives.json b/src/main/resources/assets/hibernalherbs/models/item/chives.json new file mode 100644 index 00000000..2450d44b --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/chives.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:block/herb/chives" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_door.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_door.json new file mode 100644 index 00000000..6e3e045a --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_door.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:item/myqueste_door" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_fence.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_fence.json new file mode 100644 index 00000000..74a8e1f5 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_fence.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/myqueste_fence_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_fence_gate.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_fence_gate.json new file mode 100644 index 00000000..ad0c1769 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_fence_gate.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/myqueste_fence_gate" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_leaves.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_leaves.json new file mode 100644 index 00000000..98dee2b8 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_leaves.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/myqueste_leaves" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_log.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_log.json new file mode 100644 index 00000000..faf56e46 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_log.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/myqueste_log" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_planks.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_planks.json new file mode 100644 index 00000000..133b6f39 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/myqueste_planks" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_sapling.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_sapling.json new file mode 100644 index 00000000..b14ce444 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_sapling.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:block/myqueste_sapling" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_slab.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_slab.json new file mode 100644 index 00000000..e8c5d707 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/myqueste_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_stairs.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_stairs.json new file mode 100644 index 00000000..887e5b7d --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/myqueste_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_trapdoor.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_trapdoor.json new file mode 100644 index 00000000..a86739d1 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_trapdoor.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/myqueste_trapdoor_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/myqueste_wood.json b/src/main/resources/assets/hibernalherbs/models/item/myqueste_wood.json new file mode 100644 index 00000000..d9af5e8f --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/myqueste_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/myqueste_wood" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/pounded_chamomile.json b/src/main/resources/assets/hibernalherbs/models/item/pounded_chamomile.json new file mode 100644 index 00000000..34a21edc --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/pounded_chamomile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:item/herb/pounded/chamomile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/pounded_chives.json b/src/main/resources/assets/hibernalherbs/models/item/pounded_chives.json new file mode 100644 index 00000000..45f36f8e --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/pounded_chives.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:item/herb/pounded/chives" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/pounded_rosemary.json b/src/main/resources/assets/hibernalherbs/models/item/pounded_rosemary.json new file mode 100644 index 00000000..2dffafd5 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/pounded_rosemary.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:item/herb/pounded/rosemary" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/pounded_tarragon.json b/src/main/resources/assets/hibernalherbs/models/item/pounded_tarragon.json new file mode 100644 index 00000000..9abde5df --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/pounded_tarragon.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:item/herb/pounded/tarragon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/pounded_thyme.json b/src/main/resources/assets/hibernalherbs/models/item/pounded_thyme.json new file mode 100644 index 00000000..7f4d1a63 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/pounded_thyme.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:item/herb/pounded/thyme" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/pounded_verbena.json b/src/main/resources/assets/hibernalherbs/models/item/pounded_verbena.json new file mode 100644 index 00000000..18fc2cd8 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/pounded_verbena.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:item/herb/pounded/verbena" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/rosemary.json b/src/main/resources/assets/hibernalherbs/models/item/rosemary.json new file mode 100644 index 00000000..e283ac30 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/rosemary.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:block/herb/rosemary" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/stripped_myqueste_log.json b/src/main/resources/assets/hibernalherbs/models/item/stripped_myqueste_log.json new file mode 100644 index 00000000..4f12a115 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/stripped_myqueste_log.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/stripped_myqueste_log" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/stripped_myqueste_wood.json b/src/main/resources/assets/hibernalherbs/models/item/stripped_myqueste_wood.json new file mode 100644 index 00000000..11a60d63 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/stripped_myqueste_wood.json @@ -0,0 +1,3 @@ +{ + "parent": "hibernalherbs:block/stripped_myqueste_wood" +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/tarragon.json b/src/main/resources/assets/hibernalherbs/models/item/tarragon.json new file mode 100644 index 00000000..e1959743 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/tarragon.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:block/herb/tarragon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/thyme.json b/src/main/resources/assets/hibernalherbs/models/item/thyme.json new file mode 100644 index 00000000..17748cc9 --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/thyme.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:block/herb/thyme" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/models/item/verbena.json b/src/main/resources/assets/hibernalherbs/models/item/verbena.json new file mode 100644 index 00000000..0dd5f38c --- /dev/null +++ b/src/main/resources/assets/hibernalherbs/models/item/verbena.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "hibernalherbs:block/herb/verbena" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/hibernalherbs/textures/block/flower/clematis.png b/src/main/resources/assets/hibernalherbs/textures/block/flower/clematis.png new file mode 100644 index 00000000..35c06da5 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/flower/clematis.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/flower/cymbidium.png b/src/main/resources/assets/hibernalherbs/textures/block/flower/cymbidium.png new file mode 100644 index 00000000..a4dc6a3b Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/flower/cymbidium.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/flower/deciduous_holly.png b/src/main/resources/assets/hibernalherbs/textures/block/flower/deciduous_holly.png new file mode 100644 index 00000000..bb2858b6 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/flower/deciduous_holly.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/flower/glory_of_the_snow.png b/src/main/resources/assets/hibernalherbs/textures/block/flower/glory_of_the_snow.png new file mode 100644 index 00000000..b2d01d2b Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/flower/glory_of_the_snow.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/flower/hellebore.png b/src/main/resources/assets/hibernalherbs/textures/block/flower/hellebore.png new file mode 100644 index 00000000..984afcd9 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/flower/hellebore.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/flower/pieris.png b/src/main/resources/assets/hibernalherbs/textures/block/flower/pieris.png new file mode 100644 index 00000000..95852ad0 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/flower/pieris.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/flower/snowdrop.png b/src/main/resources/assets/hibernalherbs/textures/block/flower/snowdrop.png new file mode 100644 index 00000000..d887b0b0 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/flower/snowdrop.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/flower/winter_jasmine.png b/src/main/resources/assets/hibernalherbs/textures/block/flower/winter_jasmine.png new file mode 100644 index 00000000..0c603bad Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/flower/winter_jasmine.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/herb/chamomile.png b/src/main/resources/assets/hibernalherbs/textures/block/herb/chamomile.png new file mode 100644 index 00000000..5ff4d8be Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/herb/chamomile.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/herb/chives.png b/src/main/resources/assets/hibernalherbs/textures/block/herb/chives.png new file mode 100644 index 00000000..b7c29208 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/herb/chives.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/herb/rosemary.png b/src/main/resources/assets/hibernalherbs/textures/block/herb/rosemary.png new file mode 100644 index 00000000..d04225c4 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/herb/rosemary.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/herb/tarragon.png b/src/main/resources/assets/hibernalherbs/textures/block/herb/tarragon.png new file mode 100644 index 00000000..5db8e8f5 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/herb/tarragon.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/herb/thyme.png b/src/main/resources/assets/hibernalherbs/textures/block/herb/thyme.png new file mode 100644 index 00000000..0fa4d3b8 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/herb/thyme.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/herb/verbena.png b/src/main/resources/assets/hibernalherbs/textures/block/herb/verbena.png new file mode 100644 index 00000000..15c01a0d Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/herb/verbena.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/myqueste_door_bottom.png b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_door_bottom.png new file mode 100644 index 00000000..377ce92f Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_door_bottom.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/myqueste_door_top.png b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_door_top.png new file mode 100644 index 00000000..6d39936f Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_door_top.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/myqueste_leaves.png b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_leaves.png new file mode 100644 index 00000000..b86d1c14 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_leaves.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/myqueste_log.png b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_log.png new file mode 100644 index 00000000..daa29ea0 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_log.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/myqueste_log_top.png b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_log_top.png new file mode 100644 index 00000000..755974d4 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_log_top.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/myqueste_planks.png b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_planks.png new file mode 100644 index 00000000..75d1c16c Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_planks.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/myqueste_sapling.png b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_sapling.png new file mode 100644 index 00000000..27ab30dd Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_sapling.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/myqueste_trapdoor.png b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_trapdoor.png new file mode 100644 index 00000000..8be0477c Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/myqueste_trapdoor.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/stripped_myqueste_log.png b/src/main/resources/assets/hibernalherbs/textures/block/stripped_myqueste_log.png new file mode 100644 index 00000000..e32682b3 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/stripped_myqueste_log.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/block/stripped_myqueste_log_top.png b/src/main/resources/assets/hibernalherbs/textures/block/stripped_myqueste_log_top.png new file mode 100644 index 00000000..dd6c963b Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/block/stripped_myqueste_log_top.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/chamomile.png b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/chamomile.png new file mode 100644 index 00000000..d7c1cbf4 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/chamomile.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/chives.png b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/chives.png new file mode 100644 index 00000000..708f954f Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/chives.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/rosemary.png b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/rosemary.png new file mode 100644 index 00000000..3796e046 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/rosemary.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/tarragon.png b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/tarragon.png new file mode 100644 index 00000000..63b8ddc3 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/tarragon.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/thyme.png b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/thyme.png new file mode 100644 index 00000000..544c6d2f Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/thyme.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/verbena.png b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/verbena.png new file mode 100644 index 00000000..6502bb50 Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/item/herb/pounded/verbena.png differ diff --git a/src/main/resources/assets/hibernalherbs/textures/item/myqueste_door.png b/src/main/resources/assets/hibernalherbs/textures/item/myqueste_door.png new file mode 100644 index 00000000..0ba7ca5a Binary files /dev/null and b/src/main/resources/assets/hibernalherbs/textures/item/myqueste_door.png differ diff --git a/src/main/resources/data/hibernalherbs/recipes/myqueste_door.json b/src/main/resources/data/hibernalherbs/recipes/myqueste_door.json new file mode 100644 index 00000000..48b22207 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/recipes/myqueste_door.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_door", + "key": { + "#": { + "item": "hibernalherbs:myqueste_planks" + } + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "item": "hibernalherbs:myqueste_door" + } +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/recipes/myqueste_fence.json b/src/main/resources/data/hibernalherbs/recipes/myqueste_fence.json new file mode 100644 index 00000000..536cb70b --- /dev/null +++ b/src/main/resources/data/hibernalherbs/recipes/myqueste_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": { + "item": "minecraft:stick" + }, + "W": { + "item": "hibernalherbs:myqueste_planks" + } + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "item": "hibernalherbs:myqueste_fence" + } +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/recipes/myqueste_fence_gate.json b/src/main/resources/data/hibernalherbs/recipes/myqueste_fence_gate.json new file mode 100644 index 00000000..42d4cfe8 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/recipes/myqueste_fence_gate.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence_gate", + "key": { + "#": { + "item": "minecraft:stick" + }, + "W": { + "item": "hibernalherbs:myqueste_planks" + } + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "item": "hibernalherbs:myqueste_fence_gate" + } +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/recipes/myqueste_planks.json b/src/main/resources/data/hibernalherbs/recipes/myqueste_planks.json new file mode 100644 index 00000000..60282674 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/recipes/myqueste_planks.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "planks", + "ingredients": [ + { + "tag": "hibernalherbs:myqueste_logs" + } + ], + "result": { + "item": "hibernalherbs:myqueste_planks", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/recipes/myqueste_slab.json b/src/main/resources/data/hibernalherbs/recipes/myqueste_slab.json new file mode 100644 index 00000000..99ee05c1 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/recipes/myqueste_slab.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_slab", + "key": { + "#": { + "item": "hibernalherbs:myqueste_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "hibernalherbs:myqueste_slab" + } +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/recipes/myqueste_stairs.json b/src/main/resources/data/hibernalherbs/recipes/myqueste_stairs.json new file mode 100644 index 00000000..3fa797dc --- /dev/null +++ b/src/main/resources/data/hibernalherbs/recipes/myqueste_stairs.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_stairs", + "key": { + "#": { + "item": "hibernalherbs:myqueste_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "hibernalherbs:myqueste_stairs" + } +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/recipes/myqueste_trapdoor.json b/src/main/resources/data/hibernalherbs/recipes/myqueste_trapdoor.json new file mode 100644 index 00000000..28eefff8 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/recipes/myqueste_trapdoor.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_trapdoor", + "key": { + "#": { + "item": "hibernalherbs:myqueste_planks" + } + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "item": "hibernalherbs:myqueste_trapdoor" + } +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/recipes/myqueste_wood.json b/src/main/resources/data/hibernalherbs/recipes/myqueste_wood.json new file mode 100644 index 00000000..6dca5058 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/recipes/myqueste_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "key": { + "#": { + "item": "hibernalherbs:myqueste_log" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "item": "hibernalherbs:myqueste_wood" + } +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/recipes/stripped_myqueste_wood.json b/src/main/resources/data/hibernalherbs/recipes/stripped_myqueste_wood.json new file mode 100644 index 00000000..6587c4e0 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/recipes/stripped_myqueste_wood.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bark", + "key": { + "#": { + "item": "hibernalherbs:stripped_myqueste_log" + } + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "item": "hibernalherbs:stripped_myqueste_wood" + } +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/tags/blocks/herbs.json b/src/main/resources/data/hibernalherbs/tags/blocks/herbs.json new file mode 100644 index 00000000..e26e97c2 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/tags/blocks/herbs.json @@ -0,0 +1,10 @@ +{ + "values": [ + "hibernalherbs:rosemary", + "hibernalherbs:thyme", + "hibernalherbs:tarragon", + "hibernalherbs:chamomile", + "hibernalherbs:chives", + "hibernalherbs:verbena" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/tags/blocks/myqueste_logs.json b/src/main/resources/data/hibernalherbs/tags/blocks/myqueste_logs.json new file mode 100644 index 00000000..cdb12325 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/tags/blocks/myqueste_logs.json @@ -0,0 +1,9 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_log", + "hibernalherbs:stripped_myqueste_log", + "hibernalherbs:myqueste_wood", + "hibernalherbs:stripped_myqueste_wood" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/tags/blocks/potted_herbs.json b/src/main/resources/data/hibernalherbs/tags/blocks/potted_herbs.json new file mode 100644 index 00000000..e9198078 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/tags/blocks/potted_herbs.json @@ -0,0 +1,10 @@ +{ + "values": [ + "hibernalherbs:potted_rosemary", + "hibernalherbs:potted_thyme", + "hibernalherbs:potted_tarragon", + "hibernalherbs:potted_chamomile", + "hibernalherbs:potted_chives", + "hibernalherbs:potted_verbena" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/tags/items/herbs.json b/src/main/resources/data/hibernalherbs/tags/items/herbs.json new file mode 100644 index 00000000..e26e97c2 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/tags/items/herbs.json @@ -0,0 +1,10 @@ +{ + "values": [ + "hibernalherbs:rosemary", + "hibernalherbs:thyme", + "hibernalherbs:tarragon", + "hibernalherbs:chamomile", + "hibernalherbs:chives", + "hibernalherbs:verbena" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/tags/items/myqueste_logs.json b/src/main/resources/data/hibernalherbs/tags/items/myqueste_logs.json new file mode 100644 index 00000000..cdb12325 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/tags/items/myqueste_logs.json @@ -0,0 +1,9 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_log", + "hibernalherbs:stripped_myqueste_log", + "hibernalherbs:myqueste_wood", + "hibernalherbs:stripped_myqueste_wood" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/hibernalherbs/tags/items/pounded_herbs.json b/src/main/resources/data/hibernalherbs/tags/items/pounded_herbs.json new file mode 100644 index 00000000..5119bdf6 --- /dev/null +++ b/src/main/resources/data/hibernalherbs/tags/items/pounded_herbs.json @@ -0,0 +1,10 @@ +{ + "values": [ + "hibernalherbs:pounded_rosemary", + "hibernalherbs:pounded_thyme", + "hibernalherbs:pounded_tarragon", + "hibernalherbs:pounded_chamomile", + "hibernalherbs:pounded_chives", + "hibernalherbs:pounded_verbena" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/fence_gates.json b/src/main/resources/data/minecraft/tags/blocks/fence_gates.json new file mode 100644 index 00000000..459d3704 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/fence_gates.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_fence_gate" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/fences.json b/src/main/resources/data/minecraft/tags/blocks/fences.json new file mode 100644 index 00000000..82ca63ed --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/fences.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_fence" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/flower_pots.json b/src/main/resources/data/minecraft/tags/blocks/flower_pots.json new file mode 100644 index 00000000..ea281c79 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/flower_pots.json @@ -0,0 +1,7 @@ +{ + "replace": false, + "values": [ + "#hibernalherbs:potted_herbs", + "hibernalherbs:potted_myqueste_sapling" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/leaves.json b/src/main/resources/data/minecraft/tags/blocks/leaves.json new file mode 100644 index 00000000..479a6c89 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/leaves.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values":[ + "hibernalherbs:myqueste_leaves" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/logs.json b/src/main/resources/data/minecraft/tags/blocks/logs.json new file mode 100644 index 00000000..153a414f --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/logs.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "#hibernalherbs:myqueste_logs" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/logs_that_burn.json b/src/main/resources/data/minecraft/tags/blocks/logs_that_burn.json new file mode 100644 index 00000000..153a414f --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/logs_that_burn.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "#hibernalherbs:myqueste_logs" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/planks.json b/src/main/resources/data/minecraft/tags/blocks/planks.json new file mode 100644 index 00000000..2b0d9dd1 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/planks.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_planks" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json b/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json new file mode 100644 index 00000000..82ca63ed --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_fence" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/fence_gates.json b/src/main/resources/data/minecraft/tags/items/fence_gates.json new file mode 100644 index 00000000..459d3704 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/fence_gates.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_fence_gate" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/fences.json b/src/main/resources/data/minecraft/tags/items/fences.json new file mode 100644 index 00000000..82ca63ed --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/fences.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_fence" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/leaves.json b/src/main/resources/data/minecraft/tags/items/leaves.json new file mode 100644 index 00000000..479a6c89 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/leaves.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values":[ + "hibernalherbs:myqueste_leaves" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/logs.json b/src/main/resources/data/minecraft/tags/items/logs.json new file mode 100644 index 00000000..153a414f --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/logs.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "#hibernalherbs:myqueste_logs" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/logs_that_burn.json b/src/main/resources/data/minecraft/tags/items/logs_that_burn.json new file mode 100644 index 00000000..153a414f --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/logs_that_burn.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "#hibernalherbs:myqueste_logs" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/planks.json b/src/main/resources/data/minecraft/tags/items/planks.json new file mode 100644 index 00000000..2b0d9dd1 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/planks.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_planks" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wooden_fences.json b/src/main/resources/data/minecraft/tags/items/wooden_fences.json new file mode 100644 index 00000000..82ca63ed --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/wooden_fences.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "hibernalherbs:myqueste_fence" + ] +} \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 00000000..875c4d00 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,44 @@ +{ + "schemaVersion": 1, + "id": "hibernalherbs", + "version": "${version}", + + "name": "Hibernal Herbs", + "description": "[MMD Winterjam 2022] Wanna celebrate the holidays with a touch of mystical arts? Here you are!", + "authors": [ + "DakotaPride (Author)", + "HoloScopeStudios (Mascot)" + ], + + "contact": { + "homepage": "https://www.curseforge.com/minecraft/mc-mods/hibernal-herbs", + "sources": "https://github.com/DakotaPride/hibernal-herbs", + "issues": "https://github.com/DakotaPride/hibernal-herbs/issues" + }, + + "license": "MIT", + "icon": "assets/hibernalherbs/icon.png", + + "environment": "*", + "entrypoints": { + "main": [ + "net.dakotapride.hibernalHerbs.common.HibernalHerbsMod" + ], + "client": [ + "net.dakotapride.hibernalHerbs.client.HibernalHerbsClient" + ] + }, + "mixins": [ + "hibernalherbs.mixins.json" + ], + + "depends": { + "fabricloader": "*", + "fabric": "*", + "minecraft": "~1.19", + "java": ">=17" + }, + "suggests": { + "another-mod": "*" + } +} diff --git a/src/main/resources/hibernalherbs.mixins.json b/src/main/resources/hibernalherbs.mixins.json new file mode 100644 index 00000000..01e0b4d6 --- /dev/null +++ b/src/main/resources/hibernalherbs.mixins.json @@ -0,0 +1,12 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "net.dakotapride.hibernalHerbs.mixin", + "compatibilityLevel": "JAVA_17", + "mixins": [ + ], + "client": [], + "injectors": { + "defaultRequire": 1 + } +}