commit d26953bcae92b7faf35b3d61decf06fe4da87611 Author: SeaswimmerTheFsh Date: Sat Nov 18 16:19:01 2023 -0500 added blocks and creative tab diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bb66253 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# Gradle build system ignores +.gradle/ +build/ + +# Other IDE related folders +.idea/ +.settings/ + +# MCreator workspace +.mcreator/ + +# Minecraft client/server files +run/ + +# MacOS system files +.DS_STORE + +# Other Files (In Eclipse) +.classpath +.project diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..eca72b0 --- /dev/null +++ b/build.gradle @@ -0,0 +1,57 @@ +plugins { + id 'eclipse' + id 'net.neoforged.gradle' version '[6.0.18,6.2)' +} + +version = '1.0' +group = 'com.yourname.modid' +archivesBaseName = 'modid' + +java.toolchain.languageVersion = JavaLanguageVersion.of(17) + +minecraft { + mappings channel: 'official', version: '1.20.1' + + accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') + + copyIdeResources = true + + runs { + client { + workingDirectory project.file('run') + + property 'forge.logging.markers', 'REGISTRIES' + property 'forge.logging.console.level', 'debug' + + mods { + examplemod { + source sourceSets.main + } + } + } + + server { + workingDirectory project.file('run') + + property 'forge.logging.markers', 'REGISTRIES' + property 'forge.logging.console.level', 'debug' + + mods { + examplemod { + source sourceSets.main + } + } + } + } +} + +dependencies { + minecraft 'net.neoforged:forge:1.20.1-47.1.65' +} + +tasks.withType(JavaCompile).configureEach { + options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation +} + +apply from: 'mcreator.gradle' + diff --git a/elements/BuddingHeartBlock.mod.json b/elements/BuddingHeartBlock.mod.json new file mode 100644 index 0000000..a34a921 --- /dev/null +++ b/elements/BuddingHeartBlock.mod.json @@ -0,0 +1,142 @@ +{ + "_fv": 47, + "_type": "block", + "definition": { + "texture": "buddingheart", + "textureTop": "buddingheart", + "textureLeft": "buddingheart", + "textureFront": "buddingheart", + "textureRight": "buddingheart", + "textureBack": "buddingheart", + "renderType": 10, + "customModelName": "Normal", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "name": "Budding Heart Block", + "specialInfo": [], + "hardness": 1.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTab": { + "value": "CUSTOM:HeartGeodes" + }, + "destroyTool": "pickaxe", + "customDrop": { + "value": "CUSTOM:HeartBlock" + }, + "dropAmount": 1, + "useLootTableForDrops": false, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "ROCK" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "AMETHYST_BLOCK" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "breakHarvestLevel": 1, + "isBonemealable": false, + "hasInventory": false, + "guiBoundTo": "", + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "spawnWorldTypes": [], + "restrictionBiomes": [], + "blocksToReplace": [ + { + "value": "Blocks.STONE#0" + }, + { + "value": "Blocks.STONE#1" + }, + { + "value": "Blocks.STONE#3" + }, + { + "value": "Blocks.STONE#5" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 10, + "frequencyOnChunk": 16, + "minGenerateHeight": 0, + "maxGenerateHeight": 64 + } +} \ No newline at end of file diff --git a/elements/HeartBlock.mod.json b/elements/HeartBlock.mod.json new file mode 100644 index 0000000..5945763 --- /dev/null +++ b/elements/HeartBlock.mod.json @@ -0,0 +1,142 @@ +{ + "_fv": 47, + "_type": "block", + "definition": { + "texture": "heart", + "textureTop": "heart", + "textureLeft": "heart", + "textureFront": "heart", + "textureRight": "heart", + "textureBack": "heart", + "renderType": 10, + "customModelName": "Normal", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "name": "Heart Block", + "specialInfo": [], + "hardness": 1.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTab": { + "value": "CUSTOM:HeartGeodes" + }, + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": false, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "ROCK" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "AMETHYST_BLOCK" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "breakHarvestLevel": 2, + "isBonemealable": false, + "hasInventory": false, + "guiBoundTo": "", + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "spawnWorldTypes": [], + "restrictionBiomes": [], + "blocksToReplace": [ + { + "value": "Blocks.STONE#0" + }, + { + "value": "Blocks.STONE#1" + }, + { + "value": "Blocks.STONE#3" + }, + { + "value": "Blocks.STONE#5" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 10, + "frequencyOnChunk": 16, + "minGenerateHeight": 0, + "maxGenerateHeight": 64 + } +} \ No newline at end of file diff --git a/elements/HeartGeodes.mod.json b/elements/HeartGeodes.mod.json new file mode 100644 index 0000000..18ad360 --- /dev/null +++ b/elements/HeartGeodes.mod.json @@ -0,0 +1,11 @@ +{ + "_fv": 47, + "_type": "tab", + "definition": { + "name": "Heart Geodes", + "icon": { + "value": "CUSTOM:BuddingHeartBlock" + }, + "showSearch": false + } +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..f237dcf --- /dev/null +++ b/gradle.properties @@ -0,0 +1,2 @@ +org.gradle.jvmargs=-Xmx3G +org.gradle.daemon=false \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..943f0cb 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 0000000..37aef8d --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip +networkTimeout=10000 +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..65dcd68 --- /dev/null +++ b/gradlew @@ -0,0 +1,244 @@ +#!/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/HEAD/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 + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +# 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*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + 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 \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# 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 0000000..93e3f59 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,92 @@ +@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=. +@rem This is normally unused +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% equ 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% equ 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! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/heartgeodes.mcreator b/heartgeodes.mcreator new file mode 100644 index 0000000..b21ed05 --- /dev/null +++ b/heartgeodes.mcreator @@ -0,0 +1,78 @@ +{ + "mod_elements": [ + { + "name": "BuddingHeartBlock", + "type": "block", + "sortid": 2, + "compiles": true, + "locked_code": false, + "registry_name": "budding_heart_block", + "metadata": { + "files": [ + "src/main/resources/assets/heartgeodes/models/block/budding_heart_block.json", + "src/main/resources/assets/heartgeodes/blockstates/budding_heart_block.json", + "src/main/resources/assets/heartgeodes/models/item/budding_heart_block.json", + "src/main/java/net/mcreator/heartgeodes/block/BuddingHeartBlockBlock.java" + ] + } + }, + { + "name": "HeartBlock", + "type": "block", + "sortid": 1, + "compiles": true, + "locked_code": false, + "registry_name": "heart_block", + "metadata": { + "files": [ + "src/main/resources/assets/heartgeodes/models/item/heart_block.json", + "src/main/java/net/mcreator/heartgeodes/block/HeartBlockBlock.java", + "src/main/resources/assets/heartgeodes/blockstates/heart_block.json", + "src/main/resources/assets/heartgeodes/models/block/heart_block.json" + ] + } + }, + { + "name": "HeartGeodes", + "type": "tab", + "sortid": 3, + "compiles": true, + "locked_code": false, + "registry_name": "heart_geodes", + "metadata": { + "files": [] + } + } + ], + "variable_elements": [], + "sound_elements": [], + "language_map": { + "en_us": { + "block.heartgeodes.budding_heart_block": "Budding Heart Block", + "block.heartgeodes.heart_block": "Heart Block", + "item_group.heartgeodes.heart_geodes": "Heart Geodes" + } + }, + "foldersRoot": { + "name": "~", + "children": [] + }, + "workspaceSettings": { + "modid": "heartgeodes", + "modName": "HeartGeodes", + "version": "1.0.0", + "author": "seasw, MCreator", + "websiteURL": "https://mcreator.net", + "license": "Academic Free License v3.0", + "disableForgeVersionCheck": true, + "serverSideOnly": false, + "requiredMods": [], + "dependencies": [], + "dependants": [], + "mcreatorDependencies": [], + "currentGenerator": "neoforge-1.20.1", + "modElementsPackage": "net.mcreator.heartgeodes", + "lockBaseModFiles": false + }, + "mcreatorVersion": 202300336712 +} \ No newline at end of file diff --git a/mcreator.gradle b/mcreator.gradle new file mode 100644 index 0000000..e69de29 diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..24584e9 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,13 @@ +pluginManagement { + repositories { + gradlePluginPortal() + maven { + name = 'NeoForged' + url = 'https://maven.neoforged.net/releases' + } + } +} + +plugins { + id 'org.gradle.toolchains.foojay-resolver-convention' version '0.5.0' +} \ No newline at end of file diff --git a/src/main/java/net/mcreator/heartgeodes/HeartgeodesMod.java b/src/main/java/net/mcreator/heartgeodes/HeartgeodesMod.java new file mode 100644 index 0000000..029af4f --- /dev/null +++ b/src/main/java/net/mcreator/heartgeodes/HeartgeodesMod.java @@ -0,0 +1,90 @@ +/* + * MCreator note: + * + * If you lock base mod element files, you can edit this file and it won't get overwritten. + * If you change your modid or package, you need to apply these changes to this file MANUALLY. + * + * Settings in @Mod annotation WON'T be changed in case of the base mod element + * files lock too, so you need to set them manually here in such case. + * + * If you do not lock base mod element files in Workspace settings, this file + * will be REGENERATED on each build. + * + */ +package net.mcreator.heartgeodes; + +import org.apache.logging.log4j.Logger; +import org.apache.logging.log4j.LogManager; + +import net.minecraftforge.network.simple.SimpleChannel; +import net.minecraftforge.network.NetworkRegistry; +import net.minecraftforge.network.NetworkEvent; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.event.TickEvent; +import net.minecraftforge.common.MinecraftForge; + +import net.minecraft.resources.ResourceLocation; +import net.minecraft.network.FriendlyByteBuf; + +import net.mcreator.heartgeodes.init.HeartgeodesModTabs; +import net.mcreator.heartgeodes.init.HeartgeodesModItems; +import net.mcreator.heartgeodes.init.HeartgeodesModBlocks; + +import java.util.function.Supplier; +import java.util.function.Function; +import java.util.function.BiConsumer; +import java.util.concurrent.ConcurrentLinkedQueue; +import java.util.List; +import java.util.Collection; +import java.util.ArrayList; +import java.util.AbstractMap; + +@Mod("heartgeodes") +public class HeartgeodesMod { + public static final Logger LOGGER = LogManager.getLogger(HeartgeodesMod.class); + public static final String MODID = "heartgeodes"; + + public HeartgeodesMod() { + MinecraftForge.EVENT_BUS.register(this); + IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus(); + + HeartgeodesModBlocks.REGISTRY.register(bus); + + HeartgeodesModItems.REGISTRY.register(bus); + + HeartgeodesModTabs.REGISTRY.register(bus); + + } + + private static final String PROTOCOL_VERSION = "1"; + public static final SimpleChannel PACKET_HANDLER = NetworkRegistry.newSimpleChannel(new ResourceLocation(MODID, MODID), () -> PROTOCOL_VERSION, PROTOCOL_VERSION::equals, PROTOCOL_VERSION::equals); + private static int messageID = 0; + + public static void addNetworkMessage(Class messageType, BiConsumer encoder, Function decoder, BiConsumer> messageConsumer) { + PACKET_HANDLER.registerMessage(messageID, messageType, encoder, decoder, messageConsumer); + messageID++; + } + + private static final Collection> workQueue = new ConcurrentLinkedQueue<>(); + + public static void queueServerWork(int tick, Runnable action) { + workQueue.add(new AbstractMap.SimpleEntry(action, tick)); + } + + @SubscribeEvent + public void tick(TickEvent.ServerTickEvent event) { + if (event.phase == TickEvent.Phase.END) { + List> actions = new ArrayList<>(); + workQueue.forEach(work -> { + work.setValue(work.getValue() - 1); + if (work.getValue() == 0) + actions.add(work); + }); + actions.forEach(e -> e.getKey().run()); + workQueue.removeAll(actions); + } + } +} diff --git a/src/main/java/net/mcreator/heartgeodes/block/BuddingHeartBlockBlock.java b/src/main/java/net/mcreator/heartgeodes/block/BuddingHeartBlockBlock.java new file mode 100644 index 0000000..306f78c --- /dev/null +++ b/src/main/java/net/mcreator/heartgeodes/block/BuddingHeartBlockBlock.java @@ -0,0 +1,45 @@ + +package net.mcreator.heartgeodes.block; + +import net.minecraft.world.level.storage.loot.LootParams; +import net.minecraft.world.level.block.state.properties.NoteBlockInstrument; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.item.PickaxeItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.heartgeodes.init.HeartgeodesModBlocks; + +import java.util.List; +import java.util.Collections; + +public class BuddingHeartBlockBlock extends Block { + public BuddingHeartBlockBlock() { + super(BlockBehaviour.Properties.of().instrument(NoteBlockInstrument.BASEDRUM).sound(SoundType.AMETHYST).strength(1f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean canHarvestBlock(BlockState state, BlockGetter world, BlockPos pos, Player player) { + if (player.getInventory().getSelected().getItem() instanceof PickaxeItem tieredItem) + return tieredItem.getTier().getLevel() >= 1; + return false; + } + + @Override + public List getDrops(BlockState state, LootParams.Builder builder) { + List dropsOriginal = super.getDrops(state, builder); + if (!dropsOriginal.isEmpty()) + return dropsOriginal; + return Collections.singletonList(new ItemStack(HeartgeodesModBlocks.HEART_BLOCK.get())); + } +} diff --git a/src/main/java/net/mcreator/heartgeodes/block/HeartBlockBlock.java b/src/main/java/net/mcreator/heartgeodes/block/HeartBlockBlock.java new file mode 100644 index 0000000..4fd81c0 --- /dev/null +++ b/src/main/java/net/mcreator/heartgeodes/block/HeartBlockBlock.java @@ -0,0 +1,43 @@ + +package net.mcreator.heartgeodes.block; + +import net.minecraft.world.level.storage.loot.LootParams; +import net.minecraft.world.level.block.state.properties.NoteBlockInstrument; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.item.PickaxeItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import java.util.List; +import java.util.Collections; + +public class HeartBlockBlock extends Block { + public HeartBlockBlock() { + super(BlockBehaviour.Properties.of().instrument(NoteBlockInstrument.BASEDRUM).sound(SoundType.AMETHYST).strength(1f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean canHarvestBlock(BlockState state, BlockGetter world, BlockPos pos, Player player) { + if (player.getInventory().getSelected().getItem() instanceof PickaxeItem tieredItem) + return tieredItem.getTier().getLevel() >= 2; + return false; + } + + @Override + public List getDrops(BlockState state, LootParams.Builder builder) { + List dropsOriginal = super.getDrops(state, builder); + if (!dropsOriginal.isEmpty()) + return dropsOriginal; + return Collections.singletonList(new ItemStack(this, 1)); + } +} diff --git a/src/main/java/net/mcreator/heartgeodes/init/HeartgeodesModBlocks.java b/src/main/java/net/mcreator/heartgeodes/init/HeartgeodesModBlocks.java new file mode 100644 index 0000000..b785440 --- /dev/null +++ b/src/main/java/net/mcreator/heartgeodes/init/HeartgeodesModBlocks.java @@ -0,0 +1,21 @@ + +/* + * MCreator note: This file will be REGENERATED on each build. + */ +package net.mcreator.heartgeodes.init; + +import net.minecraftforge.registries.RegistryObject; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.DeferredRegister; + +import net.minecraft.world.level.block.Block; + +import net.mcreator.heartgeodes.block.HeartBlockBlock; +import net.mcreator.heartgeodes.block.BuddingHeartBlockBlock; +import net.mcreator.heartgeodes.HeartgeodesMod; + +public class HeartgeodesModBlocks { + public static final DeferredRegister REGISTRY = DeferredRegister.create(ForgeRegistries.BLOCKS, HeartgeodesMod.MODID); + public static final RegistryObject HEART_BLOCK = REGISTRY.register("heart_block", () -> new HeartBlockBlock()); + public static final RegistryObject BUDDING_HEART_BLOCK = REGISTRY.register("budding_heart_block", () -> new BuddingHeartBlockBlock()); +} diff --git a/src/main/java/net/mcreator/heartgeodes/init/HeartgeodesModItems.java b/src/main/java/net/mcreator/heartgeodes/init/HeartgeodesModItems.java new file mode 100644 index 0000000..b011c54 --- /dev/null +++ b/src/main/java/net/mcreator/heartgeodes/init/HeartgeodesModItems.java @@ -0,0 +1,25 @@ + +/* + * MCreator note: This file will be REGENERATED on each build. + */ +package net.mcreator.heartgeodes.init; + +import net.minecraftforge.registries.RegistryObject; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.DeferredRegister; + +import net.minecraft.world.level.block.Block; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.BlockItem; + +import net.mcreator.heartgeodes.HeartgeodesMod; + +public class HeartgeodesModItems { + public static final DeferredRegister REGISTRY = DeferredRegister.create(ForgeRegistries.ITEMS, HeartgeodesMod.MODID); + public static final RegistryObject HEART_BLOCK = block(HeartgeodesModBlocks.HEART_BLOCK); + public static final RegistryObject BUDDING_HEART_BLOCK = block(HeartgeodesModBlocks.BUDDING_HEART_BLOCK); + + private static RegistryObject block(RegistryObject block) { + return REGISTRY.register(block.getId().getPath(), () -> new BlockItem(block.get(), new Item.Properties())); + } +} diff --git a/src/main/java/net/mcreator/heartgeodes/init/HeartgeodesModTabs.java b/src/main/java/net/mcreator/heartgeodes/init/HeartgeodesModTabs.java new file mode 100644 index 0000000..668568f --- /dev/null +++ b/src/main/java/net/mcreator/heartgeodes/init/HeartgeodesModTabs.java @@ -0,0 +1,26 @@ + +/* + * MCreator note: This file will be REGENERATED on each build. + */ +package net.mcreator.heartgeodes.init; + +import net.minecraftforge.registries.RegistryObject; +import net.minecraftforge.registries.DeferredRegister; + +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.CreativeModeTab; +import net.minecraft.network.chat.Component; +import net.minecraft.core.registries.Registries; + +import net.mcreator.heartgeodes.HeartgeodesMod; + +public class HeartgeodesModTabs { + public static final DeferredRegister REGISTRY = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, HeartgeodesMod.MODID); + public static final RegistryObject HEART_GEODES = REGISTRY.register("heart_geodes", + () -> CreativeModeTab.builder().title(Component.translatable("item_group.heartgeodes.heart_geodes")).icon(() -> new ItemStack(HeartgeodesModBlocks.BUDDING_HEART_BLOCK.get())).displayItems((parameters, tabData) -> { + tabData.accept(HeartgeodesModBlocks.HEART_BLOCK.get().asItem()); + tabData.accept(HeartgeodesModBlocks.BUDDING_HEART_BLOCK.get().asItem()); + }) + + .build()); +} diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml new file mode 100644 index 0000000..58f7c35 --- /dev/null +++ b/src/main/resources/META-INF/mods.toml @@ -0,0 +1,22 @@ +modLoader="javafml" +loaderVersion="[47,)" +license="Academic Free License v3.0" + +[[mods]] +modId="heartgeodes" +version="1.0.0" +displayName="HeartGeodes" +credits="Created using mod maker MCreator - https://mcreator.net/about" +displayURL="https://mcreator.net" +authors="seasw, MCreator" + +[[dependencies.heartgeodes]] + modId="minecraft" + mandatory=true + versionRange="[1.20.1]" + ordering="NONE" + side="BOTH" + + + + diff --git a/src/main/resources/assets/heartgeodes/blockstates/budding_heart_block.json b/src/main/resources/assets/heartgeodes/blockstates/budding_heart_block.json new file mode 100644 index 0000000..b5715f5 --- /dev/null +++ b/src/main/resources/assets/heartgeodes/blockstates/budding_heart_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "heartgeodes:block/budding_heart_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/heartgeodes/blockstates/heart_block.json b/src/main/resources/assets/heartgeodes/blockstates/heart_block.json new file mode 100644 index 0000000..7fbca93 --- /dev/null +++ b/src/main/resources/assets/heartgeodes/blockstates/heart_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "heartgeodes:block/heart_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/heartgeodes/lang/en_us.json b/src/main/resources/assets/heartgeodes/lang/en_us.json new file mode 100644 index 0000000..f3f6758 --- /dev/null +++ b/src/main/resources/assets/heartgeodes/lang/en_us.json @@ -0,0 +1,5 @@ +{ + "block.heartgeodes.budding_heart_block": "Budding Heart Block", + "block.heartgeodes.heart_block": "Heart Block", + "item_group.heartgeodes.heart_geodes": "Heart Geodes" +} \ No newline at end of file diff --git a/src/main/resources/assets/heartgeodes/models/block/budding_heart_block.json b/src/main/resources/assets/heartgeodes/models/block/budding_heart_block.json new file mode 100644 index 0000000..bba7ca3 --- /dev/null +++ b/src/main/resources/assets/heartgeodes/models/block/budding_heart_block.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "heartgeodes:block/buddingheart", + "up": "heartgeodes:block/buddingheart", + "north": "heartgeodes:block/buddingheart", + "east": "heartgeodes:block/buddingheart", + "south": "heartgeodes:block/buddingheart", + "west": "heartgeodes:block/buddingheart", + "particle": "heartgeodes:block/buddingheart" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/heartgeodes/models/block/heart_block.json b/src/main/resources/assets/heartgeodes/models/block/heart_block.json new file mode 100644 index 0000000..23bf955 --- /dev/null +++ b/src/main/resources/assets/heartgeodes/models/block/heart_block.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "heartgeodes:block/heart", + "up": "heartgeodes:block/heart", + "north": "heartgeodes:block/heart", + "east": "heartgeodes:block/heart", + "south": "heartgeodes:block/heart", + "west": "heartgeodes:block/heart", + "particle": "heartgeodes:block/heart" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/heartgeodes/models/item/budding_heart_block.json b/src/main/resources/assets/heartgeodes/models/item/budding_heart_block.json new file mode 100644 index 0000000..99055c7 --- /dev/null +++ b/src/main/resources/assets/heartgeodes/models/item/budding_heart_block.json @@ -0,0 +1,22 @@ +{ + "parent": "heartgeodes:block/budding_heart_block", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/heartgeodes/models/item/heart_block.json b/src/main/resources/assets/heartgeodes/models/item/heart_block.json new file mode 100644 index 0000000..1ac549f --- /dev/null +++ b/src/main/resources/assets/heartgeodes/models/item/heart_block.json @@ -0,0 +1,22 @@ +{ + "parent": "heartgeodes:block/heart_block", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/heartgeodes/textures/block/buddingheart.png b/src/main/resources/assets/heartgeodes/textures/block/buddingheart.png new file mode 100644 index 0000000..534d66d Binary files /dev/null and b/src/main/resources/assets/heartgeodes/textures/block/buddingheart.png differ diff --git a/src/main/resources/assets/heartgeodes/textures/block/heart.png b/src/main/resources/assets/heartgeodes/textures/block/heart.png new file mode 100644 index 0000000..8b43f0f Binary files /dev/null and b/src/main/resources/assets/heartgeodes/textures/block/heart.png differ diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json new file mode 100644 index 0000000..3571344 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -0,0 +1,7 @@ +{ + "replace": false, + "values": [ + "heartgeodes:heart_block", + "heartgeodes:budding_heart_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta new file mode 100644 index 0000000..e690c7f --- /dev/null +++ b/src/main/resources/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 15, + "description": "" + } +} \ No newline at end of file