From d65b1019af74b190314f2344215924daa9356216 Mon Sep 17 00:00:00 2001 From: Jenny Date: Mon, 30 Dec 2024 07:54:35 +0100 Subject: [PATCH] v0.1 --- build.gradle | 207 +++++++++++++++ gradle.properties | 59 +++++ gradlew | 245 ++++++++++++++++++ settings.gradle | 13 + .../java/com/example/examplemod/Config.java | 64 +++++ .../com/example/examplemod/ExampleMod.java | 184 +++++++++++++ src/main/resources/META-INF/mods.toml | 70 +++++ .../blockstates/cblock_mining.json | 6 + .../assets/compressedblocks/lang/en_us.json | 19 ++ .../models/item/cblock_mining.json | 3 + .../textures/block/andesite_1x.png | Bin 0 -> 441 bytes .../textures/block/andesite_2x.png | Bin 0 -> 443 bytes .../textures/block/andesite_3x.png | Bin 0 -> 435 bytes .../textures/block/andesite_4x.png | Bin 0 -> 445 bytes .../textures/block/cblock_mining.png | Bin 0 -> 2785 bytes .../textures/block/cblock_mining.png.mcmeta | 7 + .../textures/block/cobblestone_1x.png | Bin 0 -> 491 bytes .../textures/block/cobblestone_2x.png | Bin 0 -> 455 bytes .../textures/block/cobblestone_3x.png | Bin 0 -> 439 bytes .../textures/block/cobblestone_4x.png | Bin 0 -> 456 bytes .../textures/block/diorite_1x.png | Bin 0 -> 545 bytes .../textures/block/diorite_2x.png | Bin 0 -> 547 bytes .../textures/block/diorite_3x.png | Bin 0 -> 553 bytes .../textures/block/diorite_4x.png | Bin 0 -> 557 bytes .../textures/block/granite_1x.png | Bin 0 -> 518 bytes .../textures/block/granite_2x.png | Bin 0 -> 531 bytes .../textures/block/granite_3x.png | Bin 0 -> 531 bytes .../textures/block/granite_4x.png | Bin 0 -> 530 bytes .../blockstates/cobblestone_1x.json | 6 + .../blockstates/cobblestone_2x.json | 6 + .../blockstates/cobblestone_3x.json | 6 + .../blockstates/cobblestone_4x.json | 6 + .../blockstates/cobblestone_5x.json | 6 + .../blockstates/cobblestone_6x.json | 6 + .../blockstates/cobblestone_7x.json | 6 + .../blockstates/cobblestone_8x.json | 6 + .../blockstates/cobblestone_9x.json | 6 + .../assets/examplemod/lang/en_us.json | 11 + .../models/block/cblock_mining.json | 6 + .../models/block/cobblestone_1x.json | 6 + .../models/block/cobblestone_2x.json | 6 + .../models/block/cobblestone_3x.json | 6 + .../models/block/cobblestone_4x.json | 6 + .../models/block/cobblestone_5x.json | 6 + .../models/block/cobblestone_6x.json | 6 + .../models/block/cobblestone_7x.json | 6 + .../models/block/cobblestone_8x.json | 6 + .../models/block/cobblestone_9x.json | 6 + .../models/item/cobblestone_1x.json | 3 + .../models/item/cobblestone_2x.json | 3 + .../models/item/cobblestone_3x.json | 3 + .../models/item/cobblestone_4x.json | 3 + .../models/item/cobblestone_5x.json | 3 + .../models/item/cobblestone_6x.json | 3 + .../models/item/cobblestone_7x.json | 3 + .../models/item/cobblestone_8x.json | 3 + .../models/item/cobblestone_9x.json | 3 + .../textures/block/cobblestone_1x.png | Bin 0 -> 661 bytes .../textures/block/cobblestone_2x.png | Bin 0 -> 625 bytes .../textures/block/cobblestone_3x.png | Bin 0 -> 625 bytes .../textures/block/cobblestone_4x.png | Bin 0 -> 609 bytes .../textures/block/cobblestone_5x.png | Bin 0 -> 576 bytes .../textures/block/cobblestone_6x.png | Bin 0 -> 542 bytes .../textures/block/cobblestone_7x.png | Bin 0 -> 582 bytes .../textures/block/cobblestone_8x.png | Bin 0 -> 610 bytes .../textures/block/cobblestone_9x.png | Bin 0 -> 582 bytes .../examplemod/recipes/cobblestone_1x.json | 20 ++ .../recipes/cobblestone_1x_down.json | 13 + .../examplemod/recipes/cobblestone_2x.json | 20 ++ .../recipes/cobblestone_2x_down.json | 13 + .../examplemod/recipes/cobblestone_3x.json | 20 ++ .../recipes/cobblestone_3x_down.json | 13 + .../examplemod/recipes/cobblestone_4x.json | 20 ++ .../recipes/cobblestone_4x_down.json | 13 + .../examplemod/recipes/cobblestone_5x.json | 20 ++ .../recipes/cobblestone_5x_down.json | 13 + .../examplemod/recipes/cobblestone_6x.json | 20 ++ .../recipes/cobblestone_6x_down.json | 13 + .../examplemod/recipes/cobblestone_7x.json | 20 ++ .../recipes/cobblestone_7x_down.json | 13 + .../examplemod/recipes/cobblestone_8x.json | 20 ++ .../recipes/cobblestone_8x_down.json | 13 + .../examplemod/recipes/cobblestone_9x.json | 20 ++ .../recipes/cobblestone_9x_down.json | 13 + src/main/resources/pack.mcmeta | 8 + src/main/textures/cobblestone.pxo | Bin 0 -> 929 bytes src/main/textures/combined-blocks.pxo | Bin 0 -> 22606 bytes 87 files changed, 1334 insertions(+) create mode 100755 build.gradle create mode 100755 gradle.properties create mode 100755 gradlew create mode 100755 settings.gradle create mode 100644 src/main/java/com/example/examplemod/Config.java create mode 100644 src/main/java/com/example/examplemod/ExampleMod.java create mode 100644 src/main/resources/META-INF/mods.toml create mode 100644 src/main/resources/assets/compressedblocks/blockstates/cblock_mining.json create mode 100644 src/main/resources/assets/compressedblocks/lang/en_us.json create mode 100644 src/main/resources/assets/compressedblocks/models/item/cblock_mining.json create mode 100644 src/main/resources/assets/compressedblocks/textures/block/andesite_1x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/andesite_2x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/andesite_3x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/andesite_4x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/cblock_mining.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/cblock_mining.png.mcmeta create mode 100644 src/main/resources/assets/compressedblocks/textures/block/cobblestone_1x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/cobblestone_2x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/cobblestone_3x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/cobblestone_4x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/diorite_1x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/diorite_2x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/diorite_3x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/diorite_4x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/granite_1x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/granite_2x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/granite_3x.png create mode 100644 src/main/resources/assets/compressedblocks/textures/block/granite_4x.png create mode 100644 src/main/resources/assets/examplemod/blockstates/cobblestone_1x.json create mode 100644 src/main/resources/assets/examplemod/blockstates/cobblestone_2x.json create mode 100644 src/main/resources/assets/examplemod/blockstates/cobblestone_3x.json create mode 100644 src/main/resources/assets/examplemod/blockstates/cobblestone_4x.json create mode 100644 src/main/resources/assets/examplemod/blockstates/cobblestone_5x.json create mode 100644 src/main/resources/assets/examplemod/blockstates/cobblestone_6x.json create mode 100644 src/main/resources/assets/examplemod/blockstates/cobblestone_7x.json create mode 100644 src/main/resources/assets/examplemod/blockstates/cobblestone_8x.json create mode 100644 src/main/resources/assets/examplemod/blockstates/cobblestone_9x.json create mode 100644 src/main/resources/assets/examplemod/lang/en_us.json create mode 100644 src/main/resources/assets/examplemod/models/block/cblock_mining.json create mode 100644 src/main/resources/assets/examplemod/models/block/cobblestone_1x.json create mode 100644 src/main/resources/assets/examplemod/models/block/cobblestone_2x.json create mode 100644 src/main/resources/assets/examplemod/models/block/cobblestone_3x.json create mode 100644 src/main/resources/assets/examplemod/models/block/cobblestone_4x.json create mode 100644 src/main/resources/assets/examplemod/models/block/cobblestone_5x.json create mode 100644 src/main/resources/assets/examplemod/models/block/cobblestone_6x.json create mode 100644 src/main/resources/assets/examplemod/models/block/cobblestone_7x.json create mode 100644 src/main/resources/assets/examplemod/models/block/cobblestone_8x.json create mode 100644 src/main/resources/assets/examplemod/models/block/cobblestone_9x.json create mode 100644 src/main/resources/assets/examplemod/models/item/cobblestone_1x.json create mode 100644 src/main/resources/assets/examplemod/models/item/cobblestone_2x.json create mode 100644 src/main/resources/assets/examplemod/models/item/cobblestone_3x.json create mode 100644 src/main/resources/assets/examplemod/models/item/cobblestone_4x.json create mode 100644 src/main/resources/assets/examplemod/models/item/cobblestone_5x.json create mode 100644 src/main/resources/assets/examplemod/models/item/cobblestone_6x.json create mode 100644 src/main/resources/assets/examplemod/models/item/cobblestone_7x.json create mode 100644 src/main/resources/assets/examplemod/models/item/cobblestone_8x.json create mode 100644 src/main/resources/assets/examplemod/models/item/cobblestone_9x.json create mode 100644 src/main/resources/assets/examplemod/textures/block/cobblestone_1x.png create mode 100644 src/main/resources/assets/examplemod/textures/block/cobblestone_2x.png create mode 100644 src/main/resources/assets/examplemod/textures/block/cobblestone_3x.png create mode 100644 src/main/resources/assets/examplemod/textures/block/cobblestone_4x.png create mode 100644 src/main/resources/assets/examplemod/textures/block/cobblestone_5x.png create mode 100644 src/main/resources/assets/examplemod/textures/block/cobblestone_6x.png create mode 100644 src/main/resources/assets/examplemod/textures/block/cobblestone_7x.png create mode 100644 src/main/resources/assets/examplemod/textures/block/cobblestone_8x.png create mode 100644 src/main/resources/assets/examplemod/textures/block/cobblestone_9x.png create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_1x.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_1x_down.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_2x.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_2x_down.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_3x.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_3x_down.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_4x.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_4x_down.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_5x.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_5x_down.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_6x.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_6x_down.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_7x.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_7x_down.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_8x.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_8x_down.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_9x.json create mode 100644 src/main/resources/data/examplemod/recipes/cobblestone_9x_down.json create mode 100644 src/main/resources/pack.mcmeta create mode 100644 src/main/textures/cobblestone.pxo create mode 100644 src/main/textures/combined-blocks.pxo diff --git a/build.gradle b/build.gradle new file mode 100755 index 0000000..38ff5c7 --- /dev/null +++ b/build.gradle @@ -0,0 +1,207 @@ +plugins { + id 'eclipse' + id 'idea' + id 'maven-publish' + id 'net.minecraftforge.gradle' version '[6.0,6.2)' +} + +version = mod_version +group = mod_group_id + +base { + archivesName = mod_id +} + +// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. +java.toolchain.languageVersion = JavaLanguageVersion.of(17) + +println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" +minecraft { + // The mappings can be changed at any time and must be in the following format. + // Channel: Version: + // official MCVersion Official field/method names from Mojang mapping files + // parchment YYYY.MM.DD-MCVersion Open community-sourced parameter names and javadocs layered on top of official + // + // You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. + // See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md + // + // Parchment is an unofficial project maintained by ParchmentMC, separate from MinecraftForge + // Additional setup is needed to use their mappings: https://parchmentmc.org/docs/getting-started + // + // Use non-default mappings at your own risk. They may not always work. + // Simply re-run your setup task after changing the mappings to update your workspace. + mappings channel: mapping_channel, version: mapping_version + + // When true, this property will have all Eclipse/IntelliJ IDEA run configurations run the "prepareX" task for the given run configuration before launching the game. + // In most cases, it is not necessary to enable. + // enableEclipsePrepareRuns = true + // enableIdeaPrepareRuns = true + + // This property allows configuring Gradle's ProcessResources task(s) to run on IDE output locations before launching the game. + // It is REQUIRED to be set to true for this template to function. + // See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html + copyIdeResources = true + + // When true, this property will add the folder name of all declared run configurations to generated IDE run configurations. + // The folder name can be set on a run configuration using the "folderName" property. + // By default, the folder name of a run configuration is the name of the Gradle project containing it. + // generateRunFolders = true + + // This property enables access transformers for use in development. + // They will be applied to the Minecraft artifact. + // The access transformer file can be anywhere in the project. + // However, it must be at "META-INF/accesstransformer.cfg" in the final mod jar to be loaded by Forge. + // This default location is a best practice to automatically put the file in the right place in the final jar. + // See https://docs.minecraftforge.net/en/latest/advanced/accesstransformers/ for more information. + // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') + + // Default run configurations. + // These can be tweaked, removed, or duplicated as needed. + runs { + // applies to all the run configs below + configureEach { + workingDirectory project.file('run') + + // Recommended logging data for a userdev environment + // The markers can be added/remove as needed separated by commas. + // "SCAN": For mods scan. + // "REGISTRIES": For firing of registry events. + // "REGISTRYDUMP": For getting the contents of all registries. + property 'forge.logging.markers', 'REGISTRIES' + + // Recommended logging level for the console + // You can set various levels here. + // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels + property 'forge.logging.console.level', 'debug' + + mods { + "${mod_id}" { + source sourceSets.main + } + } + } + + client { + // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. + property 'forge.enabledGameTestNamespaces', mod_id + } + + server { + property 'forge.enabledGameTestNamespaces', mod_id + args '--nogui' + } + + // This run config launches GameTestServer and runs all registered gametests, then exits. + // By default, the server will crash when no gametests are provided. + // The gametest system is also enabled by default for other run configs under the /test command. + gameTestServer { + property 'forge.enabledGameTestNamespaces', mod_id + } + + data { + // example of overriding the workingDirectory set in configureEach above + workingDirectory project.file('run-data') + + // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. + args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') + } + } +} + +// Include resources generated by data generators. +sourceSets.main.resources { srcDir 'src/generated/resources' } + +repositories { + // Put repositories for dependencies here + // ForgeGradle automatically adds the Forge maven and Maven Central for you + + // If you have mod jar dependencies in ./libs, you can declare them as a repository like so. + // See https://docs.gradle.org/current/userguide/declaring_repositories.html#sub:flat_dir_resolver + // flatDir { + // dir 'libs' + // } +} + +dependencies { + // Specify the version of Minecraft to use. + // Any artifact can be supplied so long as it has a "userdev" classifier artifact and is a compatible patcher artifact. + // The "userdev" classifier will be requested and setup by ForgeGradle. + // If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"], + // then special handling is done to allow a setup of a vanilla dependency without the use of an external repository. + minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" + + // Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings + // The JEI API is declared for compile time use, while the full JEI artifact is used at runtime + // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}") + // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}") + // runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}") + + // Example mod dependency using a mod jar from ./libs with a flat dir repository + // This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar + // The group id is ignored when searching -- in this case, it is "blank" + // implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}") + + // For more info: + // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html + // http://www.gradle.org/docs/current/userguide/dependency_management.html +} + +// This block of code expands all declared replace properties in the specified resource targets. +// A missing property will result in an error. Properties are expanded using ${} Groovy notation. +// When "copyIdeResources" is enabled, this will also run before the game launches in IDE environments. +// See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html +tasks.named('processResources', ProcessResources).configure { + var replaceProperties = [ + minecraft_version: minecraft_version, minecraft_version_range: minecraft_version_range, + forge_version: forge_version, forge_version_range: forge_version_range, + loader_version_range: loader_version_range, + mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version, + mod_authors: mod_authors, mod_description: mod_description, + ] + inputs.properties replaceProperties + + filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) { + expand replaceProperties + [project: project] + } +} + +// Example for how to get properties into the manifest for reading at runtime. +tasks.named('jar', Jar).configure { + manifest { + attributes([ + 'Specification-Title' : mod_id, + 'Specification-Vendor' : mod_authors, + 'Specification-Version' : '1', // We are version 1 of ourselves + 'Implementation-Title' : project.name, + 'Implementation-Version' : project.jar.archiveVersion, + 'Implementation-Vendor' : mod_authors, + 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") + ]) + } + + // This is the preferred method to reobfuscate your jar file + finalizedBy 'reobfJar' +} + +// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing: +// tasks.named('publish').configure { +// dependsOn 'reobfJar' +// } + +// Example configuration to allow publishing using the maven-publish plugin +publishing { + publications { + register('mavenJava', MavenPublication) { + artifact jar + } + } + repositories { + maven { + url "file://${project.projectDir}/mcmodsrepo" + } + } +} + +tasks.withType(JavaCompile).configureEach { + options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation +} diff --git a/gradle.properties b/gradle.properties new file mode 100755 index 0000000..432de58 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,59 @@ +# Sets default memory used for gradle commands. Can be overridden by user or command line properties. +# This is required to provide enough memory for the Minecraft decompilation process. +org.gradle.jvmargs=-Xmx2G +org.gradle.daemon=false + + +## Environment Properties + +# The Minecraft version must agree with the Forge version to get a valid artifact +minecraft_version=1.20.1 +# The Minecraft version range can use any release version of Minecraft as bounds. +# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly +# as they do not follow standard versioning conventions. +minecraft_version_range=[1.20.1,1.21) +# The Forge version must agree with the Minecraft version to get a valid artifact +forge_version=47.3.0 +# The Forge version range can use any version of Forge as bounds or match the loader version range +forge_version_range=[47,) +# The loader version range can only use the major version of Forge/FML as bounds +loader_version_range=[47,) +# The mapping channel to use for mappings. +# The default set of supported mapping channels are ["official", "snapshot", "snapshot_nodoc", "stable", "stable_nodoc"]. +# Additional mapping channels can be registered through the "channelProviders" extension in a Gradle plugin. +# +# | Channel | Version | | +# |-----------|----------------------|--------------------------------------------------------------------------------| +# | official | MCVersion | Official field/method names from Mojang mapping files | +# | parchment | YYYY.MM.DD-MCVersion | Open community-sourced parameter names and javadocs layered on top of official | +# +# You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. +# See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md +# +# Parchment is an unofficial project maintained by ParchmentMC, separate from Minecraft Forge. +# Additional setup is needed to use their mappings, see https://parchmentmc.org/docs/getting-started +mapping_channel=official +# The mapping version to query from the mapping channel. +# This must match the format required by the mapping channel. +mapping_version=1.20.1 + + +## Mod Properties + +# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63} +# Must match the String constant located in the main mod class annotated with @Mod. +mod_id=compressedblocks +# The human-readable display name for the mod. +mod_name=Compressed Blocks +# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. +mod_license=All Rights Reserved +# The mod version. See https://semver.org/ +mod_version=0.1 +# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. +# This should match the base package used for the mod sources. +# See https://maven.apache.org/guides/mini/guide-naming-conventions.html +mod_group_id=com.jenny.compressedblocks +# The authors of the mod. This is a simple text string that is used for display purposes in the mod list. +mod_authors=Jenny +# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. +mod_description=Example mod description.\nNewline characters can be used and will be replaced properly. \ No newline at end of file diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..aeb74cb --- /dev/null +++ b/gradlew @@ -0,0 +1,245 @@ +#!/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 + +# 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 + + +# 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"' + +# 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/settings.gradle b/settings.gradle new file mode 100755 index 0000000..758df8b --- /dev/null +++ b/settings.gradle @@ -0,0 +1,13 @@ +pluginManagement { + repositories { + gradlePluginPortal() + maven { + name = 'MinecraftForge' + url = 'https://maven.minecraftforge.net/' + } + } +} + +plugins { + id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0' +} \ No newline at end of file diff --git a/src/main/java/com/example/examplemod/Config.java b/src/main/java/com/example/examplemod/Config.java new file mode 100644 index 0000000..4601345 --- /dev/null +++ b/src/main/java/com/example/examplemod/Config.java @@ -0,0 +1,64 @@ +package com.example.examplemod; + +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.Item; +import net.minecraftforge.common.ForgeConfigSpec; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.event.config.ModConfigEvent; +import net.minecraftforge.registries.ForgeRegistries; + +import java.util.Collections; +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; + +// An example config class. This is not required, but it's a good idea to have one to keep your config organized. +// Demonstrates how to use Forge's config APIs +@Mod.EventBusSubscriber(modid = ExampleMod.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) +public class Config +{ + private static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder(); + + private static final ForgeConfigSpec.BooleanValue LOG_DIRT_BLOCK = BUILDER + .comment("Whether to log the dirt block on common setup") + .define("logDirtBlock", true); + + private static final ForgeConfigSpec.IntValue MAGIC_NUMBER = BUILDER + .comment("A magic number") + .defineInRange("magicNumber", 42, 0, Integer.MAX_VALUE); + + public static final ForgeConfigSpec.ConfigValue MAGIC_NUMBER_INTRODUCTION = BUILDER + .comment("What you want the introduction message to be for the magic number") + .define("magicNumberIntroduction", "The magic number is... "); + + // a list of strings that are treated as resource locations for items + private static final ForgeConfigSpec.ConfigValue> ITEM_STRINGS = BUILDER + .comment("A list of items to log on common setup.") + .defineListAllowEmpty("items", List.of("minecraft:iron_ingot"), Config::validateItemName); + + static final ForgeConfigSpec SPEC = BUILDER.build(); + + public static boolean logDirtBlock; + public static int magicNumber; + public static String magicNumberIntroduction; + public static Set items; + + private static boolean validateItemName(final Object obj) + { + return obj instanceof final String itemName && ForgeRegistries.ITEMS.containsKey(new ResourceLocation(itemName)); + } + + @SubscribeEvent + static void onLoad(final ModConfigEvent event) + { + logDirtBlock = LOG_DIRT_BLOCK.get(); + magicNumber = MAGIC_NUMBER.get(); + magicNumberIntroduction = MAGIC_NUMBER_INTRODUCTION.get(); + + // convert the list of strings into a set of items + items = ITEM_STRINGS.get().stream() + .map(itemName -> ForgeRegistries.ITEMS.getValue(new ResourceLocation(itemName))) + .collect(Collectors.toSet()); + } +} diff --git a/src/main/java/com/example/examplemod/ExampleMod.java b/src/main/java/com/example/examplemod/ExampleMod.java new file mode 100644 index 0000000..0209243 --- /dev/null +++ b/src/main/java/com/example/examplemod/ExampleMod.java @@ -0,0 +1,184 @@ +package com.jenny.compressedblocks; + +import com.mojang.logging.LogUtils; +import net.minecraft.client.Minecraft; +import net.minecraft.core.registries.Registries; +import net.minecraft.network.chat.Component; +import net.minecraft.world.item.*; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.Blocks; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.material.MapColor; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.event.server.ServerStartingEvent; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.ModLoadingContext; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.config.ModConfig; +import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; +import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; +import org.slf4j.Logger; + +// The value here should match an entry in the META-INF/mods.toml file +@Mod(CompressedBlocks.MODID) +public class CompressedBlocks +{ + // Define mod id in a common place for everything to reference + public static final String MODID = "compressedblocks"; + // Directly reference a slf4j logger + private static final Logger LOGGER = LogUtils.getLogger(); + // Create a Deferred Register to hold Blocks which will all be registered under the "examplemod" namespace + public static final DeferredRegister BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, MODID); + // Create a Deferred Register to hold Items which will all be registered under the "examplemod" namespace + public static final DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, MODID); + // Create a Deferred Register to hold CreativeModeTabs which will all be registered under the "examplemod" namespace + public static final DeferredRegister CREATIVE_MODE_TABS = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, MODID); + + /* COBBLESTONE */ + + public static final RegistryObject COBBLESTONE_1X = BLOCKS.register("cobblestone_1x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(2.0F, 8.0F).requiresCorrectToolForDrops())); + public static final RegistryObject COBBLESTONE_1X_ITEM = ITEMS.register("cobblestone_1x", () -> new BlockItem(COBBLESTONE_1X.get(), new Item.Properties())); + + public static final RegistryObject COBBLESTONE_2X = BLOCKS.register("cobblestone_2x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(3.0F, 9.0F).requiresCorrectToolForDrops())); + public static final RegistryObject COBBLESTONE_2X_ITEM = ITEMS.register("cobblestone_2x", () -> new BlockItem(COBBLESTONE_2X.get(), new Item.Properties())); + + public static final RegistryObject COBBLESTONE_3X = BLOCKS.register("cobblestone_3x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(4.0F, 10.0F).requiresCorrectToolForDrops())); + public static final RegistryObject COBBLESTONE_3X_ITEM = ITEMS.register("cobblestone_3x", () -> new BlockItem(COBBLESTONE_3X.get(), new Item.Properties())); + + public static final RegistryObject COBBLESTONE_4X = BLOCKS.register("cobblestone_4x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(5.0F, 11.0F).requiresCorrectToolForDrops())); + public static final RegistryObject COBBLESTONE_4X_ITEM = ITEMS.register("cobblestone_4x", () -> new BlockItem(COBBLESTONE_4X.get(), new Item.Properties())); + + /* ANDESITE */ + + public static final RegistryObject ANDESITE_1X = BLOCKS.register("andesite_1x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(2.0F, 8.0F).requiresCorrectToolForDrops())); + public static final RegistryObject ANDESITE_1X_ITEM = ITEMS.register("andesite_1x", () -> new BlockItem(ANDESITE_1X.get(), new Item.Properties())); + + public static final RegistryObject ANDESITE_2X = BLOCKS.register("andesite_2x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(3.0F, 9.0F).requiresCorrectToolForDrops())); + public static final RegistryObject ANDESITE_2X_ITEM = ITEMS.register("andesite_2x", () -> new BlockItem(ANDESITE_2X.get(), new Item.Properties())); + + public static final RegistryObject ANDESITE_3X = BLOCKS.register("andesite_3x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(4.0F, 10.0F).requiresCorrectToolForDrops())); + public static final RegistryObject ANDESITE_3X_ITEM = ITEMS.register("andesite_3x", () -> new BlockItem(ANDESITE_3X.get(), new Item.Properties())); + + public static final RegistryObject ANDESITE_4X = BLOCKS.register("andesite_4x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(5.0F, 11.0F).requiresCorrectToolForDrops())); + public static final RegistryObject ANDESITE_4X_ITEM = ITEMS.register("andesite_4x", () -> new BlockItem(ANDESITE_4X.get(), new Item.Properties())); + + + /* DIORITE */ + + public static final RegistryObject DIORITE_1X = BLOCKS.register("diorite_1x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(2.0F, 8.0F).requiresCorrectToolForDrops())); + public static final RegistryObject DIORITE_1X_ITEM = ITEMS.register("diorite_1x", () -> new BlockItem(DIORITE_1X.get(), new Item.Properties())); + + public static final RegistryObject DIORITE_2X = BLOCKS.register("diorite_2x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(3.0F, 9.0F).requiresCorrectToolForDrops())); + public static final RegistryObject DIORITE_2X_ITEM = ITEMS.register("diorite_2x", () -> new BlockItem(DIORITE_2X.get(), new Item.Properties())); + + public static final RegistryObject DIORITE_3X = BLOCKS.register("diorite_3x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(4.0F, 10.0F).requiresCorrectToolForDrops())); + public static final RegistryObject DIORITE_3X_ITEM = ITEMS.register("diorite_3x", () -> new BlockItem(DIORITE_3X.get(), new Item.Properties())); + + public static final RegistryObject DIORITE_4X = BLOCKS.register("diorite_4x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(5.0F, 11.0F).requiresCorrectToolForDrops())); + public static final RegistryObject DIORITE_4X_ITEM = ITEMS.register("diorite_4x", () -> new BlockItem(DIORITE_4X.get(), new Item.Properties())); + + /* GRANITE */ + + public static final RegistryObject GRANITE_1X = BLOCKS.register("granite_1x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(2.0F, 8.0F).requiresCorrectToolForDrops())); + public static final RegistryObject GRANITE_1X_ITEM = ITEMS.register("granite_1x", () -> new BlockItem(GRANITE_1X.get(), new Item.Properties())); + + public static final RegistryObject GRANITE_2X = BLOCKS.register("granite_2x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(3.0F, 9.0F).requiresCorrectToolForDrops())); + public static final RegistryObject GRANITE_2X_ITEM = ITEMS.register("granite_2x", () -> new BlockItem(GRANITE_2X.get(), new Item.Properties())); + + public static final RegistryObject GRANITE_3X = BLOCKS.register("granite_3x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(4.0F, 10.0F).requiresCorrectToolForDrops())); + public static final RegistryObject GRANITE_3X_ITEM = ITEMS.register("granite_3x", () -> new BlockItem(GRANITE_3X.get(), new Item.Properties())); + + public static final RegistryObject GRANITE_4X = BLOCKS.register("granite_4x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(5.0F, 11.0F).requiresCorrectToolForDrops())); + public static final RegistryObject GRANITE_4X_ITEM = ITEMS.register("granite_4x", () -> new BlockItem(GRANITE_4X.get(), new Item.Properties())); + + /* Combined Blocks */ + + public static final RegistryObject CBLOCK_MINING= BLOCKS.register("cblock_mining", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(6.0F, 12.0F).requiresCorrectToolForDrops())); + public static final RegistryObject CBLOCK_MINING_ITEM = ITEMS.register("cblock_mining", () -> new BlockItem(CBLOCK_MINING.get(), new Item.Properties())); + + // Creates a creative tab with the id "examplemod:example_tab" for the example item, that is placed after the combat tab + public static final RegistryObject EXAMPLE_TAB = CREATIVE_MODE_TABS.register("compressed_blocks", () -> CreativeModeTab.builder() + .withTabsBefore(CreativeModeTabs.COMBAT) + .icon(() -> COBBLESTONE_1X_ITEM.get().getDefaultInstance()) + .title(Component.translatable("Compressed Blocks")) + .displayItems((parameters, output) -> { + output.accept(COBBLESTONE_1X.get()); + output.accept(COBBLESTONE_2X.get()); + output.accept(COBBLESTONE_3X.get()); + output.accept(COBBLESTONE_4X.get()); + output.accept(ANDESITE_1X.get()); + output.accept(ANDESITE_2X.get()); + output.accept(ANDESITE_3X.get()); + output.accept(ANDESITE_4X.get()); + output.accept(DIORITE_1X.get()); + output.accept(DIORITE_2X.get()); + output.accept(DIORITE_3X.get()); + output.accept(DIORITE_4X.get()); + output.accept(GRANITE_1X.get()); + output.accept(GRANITE_2X.get()); + output.accept(GRANITE_3X.get()); + output.accept(GRANITE_4X.get()); + output.accept(CBLOCK_MINING.get()); + }).build()); + + public CompressedBlocks() + { + IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus(); + + // Register the commonSetup method for modloading + modEventBus.addListener(this::commonSetup); + + // Register the Deferred Register to the mod event bus so blocks get registered + BLOCKS.register(modEventBus); + // Register the Deferred Register to the mod event bus so items get registered + ITEMS.register(modEventBus); + // Register the Deferred Register to the mod event bus so tabs get registered + CREATIVE_MODE_TABS.register(modEventBus); + + // Register ourselves for server and other game events we are interested in + MinecraftForge.EVENT_BUS.register(this); + + // Register our mod's ForgeConfigSpec so that Forge can create and load the config file for us + ModLoadingContext.get().registerConfig(ModConfig.Type.COMMON, Config.SPEC); + } + + private void commonSetup(final FMLCommonSetupEvent event) + { + // Some common setup code + LOGGER.info("HELLO FROM COMMON SETUP"); + + if (Config.logDirtBlock) + LOGGER.info("DIRT BLOCK >> {}", ForgeRegistries.BLOCKS.getKey(Blocks.DIRT)); + + LOGGER.info(Config.magicNumberIntroduction + Config.magicNumber); + + Config.items.forEach((item) -> LOGGER.info("ITEM >> {}", item.toString())); + } + + // You can use SubscribeEvent and let the Event Bus discover methods to call + @SubscribeEvent + public void onServerStarting(ServerStartingEvent event) + { + // Do something when the server starts + LOGGER.info("HELLO from server starting"); + } + + // You can use EventBusSubscriber to automatically register all static methods in the class annotated with @SubscribeEvent + @Mod.EventBusSubscriber(modid = MODID, bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) + public static class ClientModEvents + { + @SubscribeEvent + public static void onClientSetup(FMLClientSetupEvent event) + { + // Some client setup code + LOGGER.info("HELLO FROM CLIENT SETUP"); + LOGGER.info("MINECRAFT NAME >> {}", Minecraft.getInstance().getUser().getName()); + } + } +} diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml new file mode 100644 index 0000000..95e8668 --- /dev/null +++ b/src/main/resources/META-INF/mods.toml @@ -0,0 +1,70 @@ +# This is an example mods.toml file. It contains the data relating to the loading mods. +# There are several mandatory fields (#mandatory), and many more that are optional (#optional). +# The overall format is standard TOML format, v0.5.0. +# Note that there are a couple of TOML lists in this file. +# Find more information on toml format here: https://github.com/toml-lang/toml +# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml +modLoader="javafml" #mandatory +# A version range to match for said mod loader - for regular FML @Mod it will be the forge version +loaderVersion="${loader_version_range}" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. +# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. +# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. +license="${mod_license}" +# A URL to refer people to when problems occur with this mod +#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional +# A list of mods - how many allowed here is determined by the individual mod loader +[[mods]] #mandatory +# The modid of the mod +modId="${mod_id}" #mandatory +# The version number of the mod +version="${mod_version}" #mandatory +# A display name for the mod +displayName="${mod_name}" #mandatory +# A URL to query for updates for this mod. See the JSON update specification https://docs.minecraftforge.net/en/latest/misc/updatechecker/ +#updateJSONURL="https://change.me.example.invalid/updates.json" #optional +# A URL for the "homepage" for this mod, displayed in the mod UI +#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional +# A file name (in the root of the mod JAR) containing a logo for display +#logoFile="examplemod.png" #optional +# A text field displayed in the mod UI +#credits="" #optional +# A text field displayed in the mod UI +authors="${mod_authors}" #optional +# Display Test controls the display for your mod in the server connection screen +# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod. +# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod. +# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component. +# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value. +# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself. +#displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional) + +# The description text for the mod (multi line!) (#mandatory) +description='''${mod_description}''' +# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. +[[dependencies.${mod_id}]] #optional + # the modid of the dependency + modId="forge" #mandatory + # Does this dependency have to exist - if not, ordering below must be specified + mandatory=true #mandatory + # The version range of the dependency + versionRange="${forge_version_range}" #mandatory + # An ordering relationship for the dependency - BEFORE or AFTER required if the dependency is not mandatory + # BEFORE - This mod is loaded BEFORE the dependency + # AFTER - This mod is loaded AFTER the dependency + ordering="NONE" + # Side this dependency is applied on - BOTH, CLIENT, or SERVER + side="BOTH" +# Here's another dependency +[[dependencies.${mod_id}]] + modId="minecraft" + mandatory=true + # This version range declares a minimum of the current minecraft version up to but not including the next major version + versionRange="${minecraft_version_range}" + ordering="NONE" + side="BOTH" + +# Features are specific properties of the game environment, that you may want to declare you require. This example declares +# that your mod requires GL version 3.2 or higher. Other features will be added. They are side aware so declaring this won't +# stop your mod loading on the server for example. +#[features.${mod_id}] +#openGLVersion="[3.2,)" \ No newline at end of file diff --git a/src/main/resources/assets/compressedblocks/blockstates/cblock_mining.json b/src/main/resources/assets/compressedblocks/blockstates/cblock_mining.json new file mode 100644 index 0000000..cb4e968 --- /dev/null +++ b/src/main/resources/assets/compressedblocks/blockstates/cblock_mining.json @@ -0,0 +1,6 @@ +{ + "variants": { + "": { + "model": "compressedblocks:block/cblock_mining"} + } +} \ No newline at end of file diff --git a/src/main/resources/assets/compressedblocks/lang/en_us.json b/src/main/resources/assets/compressedblocks/lang/en_us.json new file mode 100644 index 0000000..cde490b --- /dev/null +++ b/src/main/resources/assets/compressedblocks/lang/en_us.json @@ -0,0 +1,19 @@ +{ + "block.compressedblocks.cobblestone_1x": "Cobblestone¹", + "block.compressedblocks.cobblestone_2x": "Cobblestone²", + "block.compressedblocks.cobblestone_3x": "Cobblestone³", + "block.compressedblocks.cobblestone_4x": "Cobblestone⁴", + "block.compressedblocks.andesite_1x": "Andesite¹", + "block.compressedblocks.andesite_2x": "Andesite²", + "block.compressedblocks.andesite_3x": "Andesite³", + "block.compressedblocks.andesite_4x": "Andesite⁴", + "block.compressedblocks.diorite_1x": "Diorite¹", + "block.compressedblocks.diorite_2x": "Diorite²", + "block.compressedblocks.diorite_3x": "Diorite³", + "block.compressedblocks.diorite_4x": "Diorite⁴", + "block.compressedblocks.granite_1x": "Granite¹", + "block.compressedblocks.granite_2x": "Granite²", + "block.compressedblocks.granite_3x": "Granite³", + "block.compressedblocks.granite_4x": "Granite⁴", + "block.compressedblocks.cblock_mining": "Mining Block" +} \ No newline at end of file diff --git a/src/main/resources/assets/compressedblocks/models/item/cblock_mining.json b/src/main/resources/assets/compressedblocks/models/item/cblock_mining.json new file mode 100644 index 0000000..1572feb --- /dev/null +++ b/src/main/resources/assets/compressedblocks/models/item/cblock_mining.json @@ -0,0 +1,3 @@ +{ + "parent": "compressedblocks:block/cblock_mining" +} \ No newline at end of file diff --git a/src/main/resources/assets/compressedblocks/textures/block/andesite_1x.png b/src/main/resources/assets/compressedblocks/textures/block/andesite_1x.png new file mode 100644 index 0000000000000000000000000000000000000000..dbda959156af2fd4101bbcb80150a5eaf03227f9 GIT binary patch literal 441 zcmV;q0Y?6bP)Px$b4f%&R5*>Lld+22Fc5~nTP~G^7hD*!!N*l$LRyn550j_KDrxf?f^jF_td>o%0@5@0|2TSvw0;D5f@BTr0WiJ-2su6qU0T_ z8NeyMfNEy=^q!J;0Hl;Q2US~sOFVmMa_)k*~6>0R5Pku?{)0}LfA7+XQt_lh!A5$L^vG_s@Ypw zFKgR|hsU^vScS_?84>Xy>wn;e$Sri;fs_&<>@k~N@V}Lk*|gFNOw-vPl9>@g;KRpv z-qz=z3r+QZ^A1GBlda#UWA=mBWFdr2klw~kdoHWa#4-PRMGXY)R|Dtq%=E4 jC3tv@JSp70cAWnK(4_--$Y&N#00000NkvXXu0mjf{Tay{ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/andesite_2x.png b/src/main/resources/assets/compressedblocks/textures/block/andesite_2x.png new file mode 100644 index 0000000000000000000000000000000000000000..71d97e5f86fe9e314ce31771b847653277b1adf3 GIT binary patch literal 443 zcmV;s0Yv_ZP)Px$bxA})R5*>Lld)9_Fy4fTv&6JQAoSwnbPK6@)&8|=Ouy{7v?y@ z6)Fa=&_F6X#hzwwbEQ=+TK%K%|3`B({Cs)i9qSh0`-fln=9S~2pgQ5)mbPsGY#-qH z`3dhm&N%=cKK+;rjN?ex?EvWep1M~`SqX+=06-+8IxPet1QVp>>AD?VwSTidt(45Fl~y37lRYF=#W}~9 zub-{0kAG&G>i_B;gb*y*`h7fPJ9tUvoLdEHZCthIyy{HM^RR?nDa}F^T@Fi~36V^U llTlQHyS?Wj!OeTe`5%v71t7jF(Rly>002ovPDHLkV1huu#6AE3 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/andesite_3x.png b/src/main/resources/assets/compressedblocks/textures/block/andesite_3x.png new file mode 100644 index 0000000000000000000000000000000000000000..26833d80cd42db843e8ded90cfdf914b0f6b1ae6 GIT binary patch literal 435 zcmV;k0ZjghP)Px$ZAnByR5*>Lld)>#Fc5~nEa@b?;6lX)hmhjXk=9&u#XZZBw@h)}Jwk{{u`CvB z;bOo-)81X-8+n~AqsqwoN8kUC=H}PW@h_iPw*bfQFZkvUpE<&l(G@@eGh<0Ms;2ZVvJQVO`Z@Agm56nm7?SwA{n4k z)&e4#{@WKy-T{zO+8h*FJ*&>BDyq5`05<;3ilM41r7SskzYw-<1HUf{sLpg<_aC<* zrBsD|-(T4f$vhgtikcaQa}CdIiDX2!-fiswoZB-^XQt^)j1liWF-FEyK_u6f+GTCq zaR1=f3{1G(l!-CcAniYJMHH++2nSM1IJZZ2u7ZzNN@ml_4S_u*RmC~S*QdMM*0Px$cS%G+R5*>Llfi1-Fc5~nEFl*OFY&>J4GuYl3Avi)b@~o{hQ3ViJ?1e&O#{iY zf`#}Xu+W?eX%F6!*V$uqv5_=0-~W&1?DfapKR&U}0Up16$5-#{wi(qC=hoD91yJ?@ zUS9s-y~jBRz_*K^Q-Z$lX_^fHZQEjdIp;+{*L48Im{1*O0ud^dwDtGXL}U6--hqe|XYGHtP37V-nR9MoWNG8a_E^Qbt`74sn{AXuf(0E9i_Jug ni4ev@VFcGV9-iUsv*Y|9X#5543y58G00000NkvXXu0mjfjOWP! literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/cblock_mining.png b/src/main/resources/assets/compressedblocks/textures/block/cblock_mining.png new file mode 100644 index 0000000000000000000000000000000000000000..23e34b54682b3f7e0a5a9bd7f2356fc99f1d17bf GIT binary patch literal 2785 zcmb7GYgkh07T&azotJ<*T8<}#nl6%EsL3W#5ltsGLsQeq%tP7fW~n7+1}59-Vm_s2 zR#u{&%3%^UPdTO*xw9!vCn-s6$_u3pVJ0Z!0X1+oXtz0!r_P`K?H_xsz1F+l_g&u+ zf98sbW;SL308I4u@(4grG60O{O~9gWxfDNB^uWXhtZ)a48>T4$!0ep2hg;CzoHzVO zaUIJnJny^g*bsJrzb9v3P`ZSfGh?x5jO)Ca^bY?L)76YL<UU%dB5L!nYJTH=wLmy<4PO@kFLRA04 z*fx8|=(WxT{}PME=kng{xe@iXL;g_6uv{)rpL1hrT>4jM4jpzXdG;oXhCXgF2Lt0z zJ?^iPwZ}i{s&iTF2j_&f4fqjlHp>P(({rEfkhP!C6x1W3bCioqe!ovzdY*r?=1D8I zCsCfh=j8%0^15yV*gRV*ZB~wZ6nw<1GY{%~6U{fTJ+Q%|rDbaAW6qYx0oe{26;4d( zWy-Z)3m+Xo%szQC{^`%|knMwypJUjx)Kov&I zOR~*iSH>-va3Xb4%n2w|(;unE9Opp0UF^8XGNOaNwKv?cdS9Y{7xW4#d|Sq4eM{Q< zxTvN+Zx@Z6jCbZ^G#=wWqyxB!3*ORO5IQ$}-G+cgSQ%JhYei?};MTsGUlGq}cV&s_ zzs#9=t*>-6ky_lrW{fB8rGY(1CVWyD$JQ>B`E$_Cvg%74Ef8oo-;z%KjY$@YW@&J* zhM>Yhmmw(pG`{qM%z$G`I zsD_S8rhk&gQqamhzxsMZUQ3DuGl?rxd=4pqRNG&u!gR1}w?|VLP(dT6<7*pXU&?nH z99NBb$={=fzgw?3%7Jc4dCOY6hs-aq0q`zOF3MC_kKjI1o=Oa6J}7H2*;Gx%M)jD7 zhU(By3o$)u^{;A9Z12}Okr#$zSGfs$I9U|dFn~=h8(g6f-mjLy%1*l9JG${^FXKm4jcq(Q8SLS3-Vw5 zY=y=H^b9{UQVFxhlz#rLC<*GkyTlO6TwQ!Xg|R4~GvlK`8Q7C>-iy{0(EHR3Iq?NpR9Rye;;sd-Eq|LdI*k$5X`KCM^0!~!yYry;U27h`^P(Yg zmxUO5;!0lF@Pn2i?3rG7l0fId7mD<&Y3jEaEi&)@zqN9Vw_u$-nR?k8RKZ+-EiaCS zdo;jc`aqfeg9H)S9!Tw?@QW(ZvfCqB9m<6hBp3@zb&kgD6XakZfzdWBt>F1u-$foI zx~&wdVY^7)jgHL5aK~RN@31QNAHe-uSFbG1!!PNQuG}&%jx}Wn%57jg3Ld6DkRN=f zAp@EOGX7TuTOCH2WgLTJlgL1`)gA3bQr7aq=EE-sC()?(Rr771hz-JAly6x8UXy`- zTM(B?w?C#tj2QH6ynHG(BqS^7C`QX*u1Ro58{AZ9vs;M}xyZgmtqYeG>Re(hs$LAD zMHv`7)^xg3GmX=^Jhz?7;^WR-J=Ee9QzJJoOs)E1WAOgLcJ|{X=IFR$ zJ`i$TCuZQVq-dnB|KL0SC~iU436}qsD{F%{>i3OXWw2C&2xs84fc!uC9OpU0XLf*r zlUX%?FOLW4Di;$8nf|cA$)sX(HAEfDpM>^4Mt>5Z=t>p-w`^~VP$9`UW^LGBIJh+; z!+ts!7}F#xFN~NZZ7vs~5m#uDzJEZkc&{P|q^(V@knzXSNeLn3KzEO_D=$KSr@iqa(EGZtg4FagYLm@bPu9}lzngnk6N&i zR}_mmLrsCt4JDtF%0V|N5MT4pE7Mqs&Tw#h71;M8;-O_}SIqBHCU4E#V>NRbfcT~Hml)pJ52ZEN!dm$DMoMk+~P_w z4)I47m+@>kx=A^}z5UuSMo#MPSqJc}v1HpEoNbgXonk;zfJP5#5{3K4diahpI?Wh; zeycDk3ul-G)%^X^(X$+^Lr1`!(o!O&%rW9MpIiR2l5G+_SC8hoci*QN`nVz zE235jvH~vQ&=owkv%Q0;SaC^(d1hFl_eEeg301!21+3%B=Qa{*Ow2`b#DCGcV@h--e-Ag7rtf_)6eFw4}4nr4=|=AtG=X YWMamp@ta#$p?6lm+mq>0?9NL56Ns(y1poj5 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/cblock_mining.png.mcmeta b/src/main/resources/assets/compressedblocks/textures/block/cblock_mining.png.mcmeta new file mode 100644 index 0000000..25a8c78 --- /dev/null +++ b/src/main/resources/assets/compressedblocks/textures/block/cblock_mining.png.mcmeta @@ -0,0 +1,7 @@ +{ + "animation": { + "frametime": 4, + "interpolate": true, + "frames": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/compressedblocks/textures/block/cobblestone_1x.png b/src/main/resources/assets/compressedblocks/textures/block/cobblestone_1x.png new file mode 100644 index 0000000000000000000000000000000000000000..9d6c7a67dec319185158a675c3b221fdc3433c7a GIT binary patch literal 491 zcmVPx$rAb6VR5*>Llf6#dKoo^P!0yIO5vp`UW8RfF>NdYt1P~y%<_a5K#HZ59f0Qzl@_X7k1V{+=cjy?n|Qwps$ zu5)-lL_@tFqSPc@kSP^efjIP9R;CojaD8MkJal7P<^9*gA=0|8qbE~| hRaMOzy7%7S`9IbgCSgJ8PN4t*002ovPDHLkV1kU^+B5(F literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/cobblestone_2x.png b/src/main/resources/assets/compressedblocks/textures/block/cobblestone_2x.png new file mode 100644 index 0000000000000000000000000000000000000000..7fa3e1f1e98e5a556e38f9746ebc910beb346959 GIT binary patch literal 455 zcmV;&0XY7NP)Px$fk{L`R5*>LlQC}GFc3wb4VM%MxTFAWCsymqc9WVn&<*wmxq|ytIZNPxz1Oh2 zRYi3xKrDj{R((>ehnDQp>NJ@7`tQ%^;`Zm?e|+J&0{DLY3u`U?p$FjQ^@ZJT2Y`q$ z9>-F**5X@F&J$1mflF2D4?WGMA?FEeEh0jH=oydWr+OL^&eZ^CffyqI&-*>6c?MuS zj^sS8>b~`KU59TyX-Mw~l`*6t;aku4W{ZdrV_Y?MU5AJO&}^EsYjpq+LSTEdEw)uu zMDVSrKlE5@Ke@XEaIPlCSaQ%>WenC@(vZk`DuL!a71S$rP#IHHfztF5t1<@X>U9Qb zNQLovzXwv}a4MJob2towGZCg*A8C=H3qm?G3{8h-qF6Zrl3ScaDNM1<2kQyD{L z45xWUL`qJp43t^F=aY002ovPDHLkV1l;y(9r+@ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/cobblestone_3x.png b/src/main/resources/assets/compressedblocks/textures/block/cobblestone_3x.png new file mode 100644 index 0000000000000000000000000000000000000000..60b65a17e8f217607ef21a9b5027dcfbee1c808c GIT binary patch literal 439 zcmV;o0Z9IdP)Px$aY;l$R5*>Lld(?2Fc5}65ThgSj+AcAR5tns-Wl=&sL#N=fh;j06~Wd_&elk= zSWnFkLwhEMk&LIiFZciV`|9Ok{Nf+q4Zx>=#ac^$=mB{DcxSiU0U#ob$1&HfwY2M& zlqT-yN3NCBA9|WqLrN3YT115Y&@&##KlM07oT~xOfDi%zZ~Hx`c?MuSj-)gd^>*FT zbsg=xB@XdNLS+nbh_vgL&FuyeA%svgc3p>v0MM+O^V-7&0N}kZd{C%}u)W*TANmYm zZg&mfTulfe`=GVT7_7C#A(GNm46D?%9splRtPx$f=NU{R5*>LlQB;8Fc5`55Tzrx$dR(5i3QTq!3}(a++a`eAK6pOtHl%&gO=H-2FCTH)D*Ps01xd3Rd{-d>~+jRiEzP+;9Yyc1uhW(K1 zT5D`=iE-rL<3~T z7j;`(nx?_lme7Y2LZK9)57^qWzFi|Cc<&dDP17JE0932$X!~P(LU7KpzFlYANmN9z zwWZs2Xsv&_I|neP#CxA}NVP&KwAO?^5aXBwjd9GV7s)}PR8|FY(@(5IDU2zX8H7G$ z#%RTuWX)6 y!n3u7kMBG9*<2`v_daJbM|93DF7)iLzw;O3-zY6= literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/diorite_1x.png b/src/main/resources/assets/compressedblocks/textures/block/diorite_1x.png new file mode 100644 index 0000000000000000000000000000000000000000..668443988499000146f3df7b0ab5acbeedb8b319 GIT binary patch literal 545 zcmV++0^a?JP)Px$+et)0R5*>LlfjDGP!xv0=~!sH&@2kUT&#-@OqwWkP-F@NU8rQ!XUHSC?6UMR zW}O%4Iyln3)m5vbOOYgV2MST?ptjI1oSad*ob1nk|L;2|M;Dh*|MG}02k?IW5yLR3 z)f>d~832ja)angf$7VF1U=;EwWdRUHG3jE-r)i5PfDF5iP22NGv?fhchJ!w%@q~Cj z`)@dVC4u>=%8u#y)raHHn{O{!-~GZWmHEBh zk}j4E2YqgDZg_oi!fLhR?b#X6p1)wd*>L{uob~n(Uw;MPx$-AP12R5*>LlQECdU>L`Lrwr-<-70-U7`)_a3&9HwIcJVEaquJbBQP3AcNYhD zldgV(hT{tmIw>4C64LfwT?$0Qp+*O;&p{lo`}2SQzu)up$orW8)<*zlj#hjQbs8YfFw!Dmn+^(T08(`*mZ1rzE7q#d7cxGM@*(O(#8D0 z;o_kZK-DyH9UFkjbOylllM{NrFI5LoB&~{J3F!GgVHi?1O`JxPw$~vZk0h`N2S^ul z3I6c;HUJO=0HrL9N|`VWX?q>Puxj;#M(}#)pr}2FB9bJPkg91Ck4G4lGCkkNb!-W~ zyt=wWFe+v8<%&#e0Fh+X>Nt(22;2`oa4`M)WjC1TBB|g^lJvm5(`e!}n!D*0JA_PY zdcIG;-zQzn$+Q+Mr7VWSivtHrSrSqL=yuQLmHiti@Y-GnKqMD(C7@s&4ll^_9K$f^ zcF)Px$<4Ht8R5*>LlfjPCP!xv0Q5Na~YFsqj8$u>dGPQ+70wLqhgdu$kj4wdq8~7S- zyYLxo7<5lyVH9MRNZQVIRUjHb6J69EAui`GZ*snSzW1qwZDR%%V_FRXq?~@oqnx;&~Bc`)C@pAEB zasE&NplsWCt^>eyHV5Fz`8i$RmsSU1C|%{n0_gfaK@d>3ZQNR&W~DLVVX)vxn~r`N6EXjI&Q6=0cKw%_>=G=&KTqrG<400000NkvXXu0mjf#$)zc literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/diorite_4x.png b/src/main/resources/assets/compressedblocks/textures/block/diorite_4x.png new file mode 100644 index 0000000000000000000000000000000000000000..3fb734e76fc59aefe693ab9e7bc85af142869bba GIT binary patch literal 557 zcmV+|0@D47P)Px$=Sf6CR5*>Lld*2vP!xv0qzr8baE8jlR|ug-ieo@(1VX7g66C!P;JFj(BXp_y z5}Ca81-e*-wF82wfs(00mhIe522@07rFI}b0dwWAaX14Y(V9lHMb)txPo@}!JW5#rL{UsSUr_n_jzd6(tBy^_bxE`)O;bk00prP( zIGp`AoIR8SD4Hf!#|B_LnF4Tnaze*-C2B7SBvm#nfR5|p`#wd}#HrP3G+T^@0|91m zfH<59cy;+{3jjm`Kq(8OkjM9Z8qJnySf%n_qBpSZAdB4#0-`7uNYOMI4F?#7JRR4i z>evGQeslAnU=;GC^970408)}wD&y4ZQs6EafXzK%a{X;Pn5I%v<{3rtUh__^j#H~| z0pYzuqBR}YrQ7WihcgnbMN27*e*bE(1Enm1nyO=?lqH+#1%Y%Fhcha`llScxA3k3n zvR?hdDwX-Y*^tf`jD`b#-rn-^_?YE#$*Z$7o<4id`tFYN*XOJ^e>e)iJe+c(HHp@E vo`+JFlo>^_C}x`&4F?oWlL~O~*x&gd6)y?secNLS00000NkvXXu0mjfm~Hq> literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/granite_1x.png b/src/main/resources/assets/compressedblocks/textures/block/granite_1x.png new file mode 100644 index 0000000000000000000000000000000000000000..2e7a803f6d47d3a1ce4f197b4672a35585abdf8e GIT binary patch literal 518 zcmV+h0{Q)kP)Px$z)3_wR5*>LlRazOP#A@um=>W(S|l!kLXB)vL)`|{lweFdq=7D`bEk}1+F#UP z(Jk%}inF992@Zy|8PXuDF%+DO)WO#>o{~w|x};mQ=!}a2*nv@w)!h9HDrSs+m3?{<_kp zB5E_cI>)oE|7YOY7KzMg)~fnND0~u`F^I=_cHf{AQJd3){iQ)Upn|}&EkfaIqq2G2 zKh)Qia;mvfIO`jP!e=^P@b%;;iOfiDGA+0mUE|pnf$J;@wl-f8UtZ$b7IN6vU)PE9{M}q0r@`MqykZ*>;M1&07*qo IM6N<$f+_Fuz5oCK literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/granite_2x.png b/src/main/resources/assets/compressedblocks/textures/block/granite_2x.png new file mode 100644 index 0000000000000000000000000000000000000000..02496ed47a990cd17a5bb270e58738318d9ddd8a GIT binary patch literal 531 zcmV+u0_^>XP)Px$%}GQ-R5*>LlQC=CKpe$?F$JMWS|pB4F|tVwaT`#Z24eytEp+i`D1}0o_Ve@; zbnMX0?vNo_Qj-P;Ls}1MkX0KB&LOqnlZ>Z!sm>DV7A+^~c<_Diz}fi_&$d{%Z6cZA z3zye#-)LZTlW4L^QOWv1yvmw54S+{LIf9m4d7LiQYt#6hshJ4AGL^5FzPI1hBNu3DVoF8>z`yW9upj?4t8u-H1 zL`Cwjf1=+j#Z)t;u(o#ah0A=g^*)&cy)zi8pvT^ zpZMaLR|0yrrIqG+RRGdoF+gc-qw%B^mM>iDjRv{mTVt%Z51GlhBsWuvnT+W?-3LHU ze`rg&ZA~DDeci_56pk*x(>p#bsp+%=F2+As8O&r%tWtLCn~cU2Ew8xF7fWK5;tQ8d zDW31#=Y3H@vsPt8tU{YFmZdUn2#;p1TIz$g(Ao<$Ft2NFr`V4iD1x@mVC}Bg`7gZF V-$QbX+_?Y%002ovPDHLkV1nXV>>~gG literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/granite_3x.png b/src/main/resources/assets/compressedblocks/textures/block/granite_3x.png new file mode 100644 index 0000000000000000000000000000000000000000..80744cab2ccb7840c704cc7e7662994e2839585e GIT binary patch literal 531 zcmV+u0_^>XP)Px$%}GQ-R5*>LlQC=CKpe$?HU*(bS|pB4ab=Sl>NcP@1YLCfTYD2*}qz*pGcuJS(ERk-}a*~es?!EVaSNZ;aa?1mrM*tU< z&kVvT-F85x6s_k^=^Y;93m1S$CII)oUs+$M0t~__d(Sq>lmg)7bcknLtl2h^Oz?%v zhfg0hFuF-JS+yuVBPa%xD{xE$U$~m6 zNFMf&^n10KYNiy{<`%winJ<=n{dqwo6QY|$14iQsj%nc8*2==p%NK-~mpG<@9QO5z z@7{PNpl4fJX{=JP?i8edV}R1wM&n5-EMK@ZnoV-W_r}=h>@kyZNp7YTGa1u;y$gVx z{??Xq+nPWQ`?`(ADIA<%(K|dYsp+-@&c=UM8O&r%tWvfc8;r&iEw8xF7fWK5;tQ8d zDc){9f!l(DR=vi$ScNuUEK6lt7apy8t<(o?p}iAmU|!eUPO%?3Py`*FLFJ*>`5&~1 V-#+d{7?=P6002ovPDHLkV1i)E@Ztaf literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/compressedblocks/textures/block/granite_4x.png b/src/main/resources/assets/compressedblocks/textures/block/granite_4x.png new file mode 100644 index 0000000000000000000000000000000000000000..42989c9ceb2d1b15d4608550ea383e8d8cd01416 GIT binary patch literal 530 zcmV+t0`2{YP)Px$%t=H+R5*>Llfi4#P#niUD?-SUToN7wVI>W-xau%EMk!vV;H7_q2M=EK|M1`O zBCCfTw#zJYbQGpV=1gM?Lib2K^d+Syy_na8d0Q?o$>aNd-|zSLeQV=)+kd#la|htV zkNXUwDcyERt`x0@+w_i3@P!LNEK`6R->)7`sR0b4DfsqG%&tSHCe4JXTDeh;FtzMvq|rCh%a2$ZJSRY5AbY@Sf=a-n^gPx%Pf0{UR5*=Yld)^tKp4e;wq+b@$%2{`A{QAt*pow2(m-gTco5w>d2OLnr{rH~ zp#MQTb<7en-Gx{=#<@qM4to3~%@wX^N9rl+!C+qMR#S%#F7`LeGY8~uYhLd=Nb4r!L@ zm;N8AYN(QW^zj+tD5R_+3E+7imT8h^*;?M!`NJ`OzqnX2P{qSw!pT_zbk?G*d{9{t zE048LrPI^Xdq5XEPK#ks$7x<_DJnSXhfd?E_NmfnG>)rAm1rDM6a__|lgK8{law^e vDDoU}b3?k=VsEE`+jiO5*q~}uDe|1Zq?Kpb!8TgF00000NkvXXu0mjfvGh9C literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/examplemod/textures/block/cobblestone_2x.png b/src/main/resources/assets/examplemod/textures/block/cobblestone_2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9e221dab4c2eead8a9160937a065fb477fd9c038 GIT binary patch literal 625 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�kFV0+J9$x z20&S^@cjUXrwCtuBs|526as|p5P-|k%)Z}#A5oU8J%QGmID(t;fOS;?(Crkq%l&+g z)_eJ3J0y;VWO;@$2FDn~s~`Zt_X9hh)|zgoYb7U1f-%M_khfa;did1fWb>_P(2bY0%{`xMK<=947B5pdIWDa(~*7SQ3@ zwAM6T7vB%a@{Dwm;vBLWW4NEs0gj4gESXytSeC2352RSs_Y*PTF~s>`%(|*$0w@Bfm@D z^E})6+uhw>fq((xXh6fFENyr~6z5#gN zYPCMsojO^bvE6RjZZ^Dqv*71Lk9AeC-E1fyAL;iV`1AJzVLPPJXi#_RY&RSJ0Yq6? Uj5R1rQUCw|07*qoM6N<$g25OOpa1{> literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/examplemod/textures/block/cobblestone_8x.png b/src/main/resources/assets/examplemod/textures/block/cobblestone_8x.png new file mode 100644 index 0000000000000000000000000000000000000000..386c2f2117ac4bc7e6e22a2a00f7b68e8509a1ca GIT binary patch literal 610 zcmV-o0-gPdP)Px%97#k$R5*=Yld)^tKp4e;c4Y7%TZPt(RAfpap46qp(4j+zo4PdMtz;==F{E>s zLb7GbKM?2=x@Bx26%qw$ryzX(53mPG>~r6d`_X|c!37yw3V z<)+-sW=PY}kB2ddnv&%iT5CM5HBX}mfG~`lJ}D)m?UAEAnM}}HI|lZyl^#D@+e4Ln zC7q{ERD+3x{kOJY1WUlAiAqh7nnwk*`_O8z#1H%&Y(_8dK%g&+uAqc!zm9=wZn6Nvrj zjFmBN(*G;9fHtXiV{IE203ifD-)CjaM&9jt5Cm@W_sh$MfqhI0iJFo$SfpB@7Rvds zAD!{AtWTa00Px%07*naR5*=YlQC!;K@dfsl`Bu)G=gv!PK1Dki%TbwCgoNxg27#I=^_HBPGg8k z6H>TPYe-|#sSzaLupn?HgI!sLIdxjN?OY7HMkdB7q}@oKa(Cy?pa1`Ed^$XQoK+QC zYXJKFKF4mz$@VTT` z`}v$kqk)}TE;e6rpKTZ0IfCkIA&H=YkBwQN~tjU&-wX+fq%>Z@?MvG`Cu#>yG$d% z!PVK~;+8d?BCRzd60)5nDLaF2YnJ))Kh#cb&?$NvSwGRQ;%(kps;`s^pUb(De_O9o Uw1m0FfdBvi07*qoM6N<$g2!A5SpWb4 literal 0 HcmV?d00001 diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_1x.json b/src/main/resources/data/examplemod/recipes/cobblestone_1x.json new file mode 100644 index 0000000..61b227d --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_1x.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "AAA", + "AAA", + "AAA" + ], + "key": + { + "A": + { + "item": "minecraft:cobblestone" + } + }, + "result": + { + "item": "examplemod:cobblestone_1x" + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_1x_down.json b/src/main/resources/data/examplemod/recipes/cobblestone_1x_down.json new file mode 100644 index 0000000..e724cd5 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_1x_down.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": + [ + { + "item": "examplemod:cobblestone_1x" + } + ], + "result": { + "item": "minecraft:cobblestone", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_2x.json b/src/main/resources/data/examplemod/recipes/cobblestone_2x.json new file mode 100644 index 0000000..03a799a --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_2x.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "AAA", + "AAA", + "AAA" + ], + "key": + { + "A": + { + "item": "examplemod:cobblestone_1x" + } + }, + "result": + { + "item": "examplemod:cobblestone_2x" + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_2x_down.json b/src/main/resources/data/examplemod/recipes/cobblestone_2x_down.json new file mode 100644 index 0000000..d37a6ac --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_2x_down.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": + [ + { + "item": "examplemod:cobblestone_2x" + } + ], + "result": { + "item": "examplemod:cobblestone_1x", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_3x.json b/src/main/resources/data/examplemod/recipes/cobblestone_3x.json new file mode 100644 index 0000000..3a2b878 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_3x.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "AAA", + "AAA", + "AAA" + ], + "key": + { + "A": + { + "item": "examplemod:cobblestone_2x" + } + }, + "result": + { + "item": "examplemod:cobblestone_3x" + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_3x_down.json b/src/main/resources/data/examplemod/recipes/cobblestone_3x_down.json new file mode 100644 index 0000000..3a6ea26 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_3x_down.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": + [ + { + "item": "examplemod:cobblestone_3x" + } + ], + "result": { + "item": "examplemod:cobblestone_2x", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_4x.json b/src/main/resources/data/examplemod/recipes/cobblestone_4x.json new file mode 100644 index 0000000..957506d --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_4x.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "AAA", + "AAA", + "AAA" + ], + "key": + { + "A": + { + "item": "examplemod:cobblestone_3x" + } + }, + "result": + { + "item": "examplemod:cobblestone_4x" + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_4x_down.json b/src/main/resources/data/examplemod/recipes/cobblestone_4x_down.json new file mode 100644 index 0000000..17f5632 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_4x_down.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": + [ + { + "item": "examplemod:cobblestone_4x" + } + ], + "result": { + "item": "examplemod:cobblestone_3x", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_5x.json b/src/main/resources/data/examplemod/recipes/cobblestone_5x.json new file mode 100644 index 0000000..fd4621d --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_5x.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "AAA", + "AAA", + "AAA" + ], + "key": + { + "A": + { + "item": "examplemod:cobblestone_4x" + } + }, + "result": + { + "item": "examplemod:cobblestone_5x" + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_5x_down.json b/src/main/resources/data/examplemod/recipes/cobblestone_5x_down.json new file mode 100644 index 0000000..130bc02 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_5x_down.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": + [ + { + "item": "examplemod:cobblestone_5x" + } + ], + "result": { + "item": "examplemod:cobblestone_4x", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_6x.json b/src/main/resources/data/examplemod/recipes/cobblestone_6x.json new file mode 100644 index 0000000..3ae6dc2 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_6x.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "AAA", + "AAA", + "AAA" + ], + "key": + { + "A": + { + "item": "examplemod:cobblestone_5x" + } + }, + "result": + { + "item": "examplemod:cobblestone_6x" + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_6x_down.json b/src/main/resources/data/examplemod/recipes/cobblestone_6x_down.json new file mode 100644 index 0000000..78dcd87 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_6x_down.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": + [ + { + "item": "examplemod:cobblestone_6x" + } + ], + "result": { + "item": "examplemod:cobblestone_5x", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_7x.json b/src/main/resources/data/examplemod/recipes/cobblestone_7x.json new file mode 100644 index 0000000..3731066 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_7x.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "AAA", + "AAA", + "AAA" + ], + "key": + { + "A": + { + "item": "examplemod:cobblestone_6x" + } + }, + "result": + { + "item": "examplemod:cobblestone_7x" + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_7x_down.json b/src/main/resources/data/examplemod/recipes/cobblestone_7x_down.json new file mode 100644 index 0000000..847dc4d --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_7x_down.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": + [ + { + "item": "examplemod:cobblestone_7x" + } + ], + "result": { + "item": "examplemod:cobblestone_6x", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_8x.json b/src/main/resources/data/examplemod/recipes/cobblestone_8x.json new file mode 100644 index 0000000..d93a030 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_8x.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "AAA", + "AAA", + "AAA" + ], + "key": + { + "A": + { + "item": "examplemod:cobblestone_7x" + } + }, + "result": + { + "item": "examplemod:cobblestone_8x" + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_8x_down.json b/src/main/resources/data/examplemod/recipes/cobblestone_8x_down.json new file mode 100644 index 0000000..c530090 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_8x_down.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": + [ + { + "item": "examplemod:cobblestone_8x" + } + ], + "result": { + "item": "examplemod:cobblestone_7x", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_9x.json b/src/main/resources/data/examplemod/recipes/cobblestone_9x.json new file mode 100644 index 0000000..ce6c113 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_9x.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "AAA", + "AAA", + "AAA" + ], + "key": + { + "A": + { + "item": "examplemod:cobblestone_8x" + } + }, + "result": + { + "item": "examplemod:cobblestone_9x" + } +} \ No newline at end of file diff --git a/src/main/resources/data/examplemod/recipes/cobblestone_9x_down.json b/src/main/resources/data/examplemod/recipes/cobblestone_9x_down.json new file mode 100644 index 0000000..31f3960 --- /dev/null +++ b/src/main/resources/data/examplemod/recipes/cobblestone_9x_down.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": + [ + { + "item": "examplemod:cobblestone_9x" + } + ], + "result": { + "item": "examplemod:cobblestone_8x", + "count": 9 + } +} \ 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..eca79ae --- /dev/null +++ b/src/main/resources/pack.mcmeta @@ -0,0 +1,8 @@ +{ + "pack": { + "description": { + "text": "${mod_id} resources" + }, + "pack_format": 15 + } +} \ No newline at end of file diff --git a/src/main/textures/cobblestone.pxo b/src/main/textures/cobblestone.pxo new file mode 100644 index 0000000000000000000000000000000000000000..ae55f08cdad092dc7d6b4918bec5ffe18aea4a83 GIT binary patch literal 929 zcmWIWW@Zs#VBp|j@LV-FQq5FaDV&jkA&i-Ufs=uOAtkXSQ7@}FKW}T0XWn50o{tI>+*rt7o-(Vc*-M?_ ztv!1n&{-#R;so7y(|1=^DjmFjZhNupbE|D@UM||;_R6q!-^owB#!Tv-_(+?|KjMUAu0@+A#*8guaU5EsH(CP-kFa zV2}nCmdP6!KYum# zP@k)FkA0D0udub`^{?OV-M4&hw|1*+^V+T7{@yu%?3G{7f30=FGNQlj3oMR>U;p_v z_IrT+6G?x*s=wmW?cKYMh8}t@;ldq*L^=4v+}OYKmGKt%&4B8!6n-*MwF+GHqSix>wcTl83#3qtM;qvL+qda z(mcoz;LXUyz<@gqgUkjdX()iFXmoApfe%s-(N+hf@I(c=LFgWW+04LD40I=MgNy>a TS=m5}nSt;mkUj)d&cFZwr&3|@ literal 0 HcmV?d00001 diff --git a/src/main/textures/combined-blocks.pxo b/src/main/textures/combined-blocks.pxo new file mode 100644 index 0000000000000000000000000000000000000000..b3ccb83d6166a4d572ae9929de1bc7882aaa76f6 GIT binary patch literal 22606 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 literal 0 HcmV?d00001