Compare commits

...

No commits in common. "Forge_1_20_1_Develop" and "Forge_1_18_2" have entirely different histories.

791 changed files with 2569 additions and 26021 deletions

1
.gitignore vendored
View File

@ -23,4 +23,3 @@ run
# Files from Forge MDK
forge*changelog.txt
/run-data/

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# 版本1.18.2-1.4.4-beta
A patch was made due to too many flaws in the original author's graphic design.
因为原作者的美工槽点太多,而做的一个补丁。

View File

@ -1,23 +1,30 @@
buildscript {
repositories {
maven { url = 'https://repo.spongepowered.org/repository/maven-public/' }
// These repositories are only for Gradle plugins, put any other repositories in the repository block further below
maven { url = 'https://maven.minecraftforge.net' }
maven { url = 'https://maven.parchmentmc.org' }
mavenCentral()
// maven { url = 'https://maven.parchmentmc.org' } // Add this line
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
classpath 'org.parchmentmc:librarian:1.+'
classpath 'org.spongepowered:mixingradle:0.7.32'
}
}
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
plugins {
id 'eclipse'
id 'idea'
id 'maven-publish'
id 'net.minecraftforge.gradle' version '[6.0,6.2)'
id 'org.parchmentmc.librarian.forgegradle' version '1.+'
id 'org.spongepowered.mixin' version '0.7.+'
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.spongepowered.mixin'
version = mod_version
group = mod_group_id
apply plugin: 'org.parchmentmc.librarian.forgegradle'
base {
archivesName = mod_id
}
version = project.property('mod.version')
group = project.property('mod.group') // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = project.property('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)
@ -33,40 +40,20 @@ minecraft {
// 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
// Additional setup is needed to use their mappings: https://github.com/ParchmentMC/Parchment/wiki/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.
mappings channel: 'parchment', version: '2022.11.06-1.18.2'
// mappings channel: 'parchment', version: '2022.11.06-1.18.2'
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default.
// Default run configurations.
// These can be tweaked, removed, or duplicated as needed.
runs {
// applies to all the run configs below
configureEach {
client {
workingDirectory project.file('run')
// Recommended logging data for a userdev environment
@ -80,131 +67,151 @@ minecraft {
// 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'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
property 'forge.enabledGameTestNamespaces', archivesBaseName
arg "-mixin.config=" + archivesBaseName + ".mixins.json"
mods {
"${mod_id}" {
modernlifepatch {
source sourceSets.main
}
}
}
client {
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
property 'forge.enabledGameTestNamespaces', mod_id
args '-mixin.config=modernlifepatch.mixins.json'
}
server {
workingDirectory project.file('run')
property 'forge.enabledGameTestNamespaces', mod_id
args '-mixin.config=modernlifepatch.mixins.json'
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
property 'forge.enabledGameTestNamespaces', archivesBaseName
arg "-mixin.config=" + archivesBaseName + ".mixins.json"
mods {
examplemod {
source sourceSets.main
}
}
}
// 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
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'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
property 'forge.enabledGameTestNamespaces', archivesBaseName
arg "-mixin.config=" + archivesBaseName + ".mixins.json"
mods {
modernlifepatch {
source sourceSets.main
}
}
}
data {
// example of overriding the workingDirectory set in configureEach above
property('gradle.task', 'runData')
workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES'
property 'forge.logging.console.level', 'debug'
property 'mixin.env.remapRefMap', 'true'
property 'mixin.env.refMapRemappingFile', "${projectDir}/build/createSrgToMcp/output.srg"
// 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/'), '-mixin.config=modernlifepatch.mixins.json'
args '--mod', archivesBaseName, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
arg "-mixin.config=" + archivesBaseName + ".mixins.json"
mods {
modernlifepatch {
source sourceSets.main
}
}
}
}
}
// Include resources generated by data generators.
sourceSets.main.resources { srcDir 'src/generated/resources' }
mixin {
add sourceSets.main, mod_id+".refmap.json"
config "${mod_id}.mixins.json"
debug.export = true
}
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
// If you have mod jar dependencies in ./libs, you can declare them as a repository like so:
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}"
implementation 'org.spongepowered:mixin:0.8.5'
// Specify the version of Minecraft to use. If this is any group other than 'net.minecraft', it is assumed
// that the dep is a ForgeGradle 'patcher' dependency, and its patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft 'net.minecraftforge:forge:1.18.2-40.1.54'
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
// 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}")
implementation fg.deobf("blank:modernlife-1.20.1:1.74")
// 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 group: 'net.md-5', name: 'SpecialSource', version: '1.11.0'
implementation fg.deobf("blank:modernlife-1.18.2:1.54")
// implementation fg.deobf(files("lib/modernlife.jar"))
// Real mod deobf dependency examples - these get remapped to your current mappings
// compileOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}:api") // Adds JEI API as a compile dependency
// runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}:${jei_version}") // Adds the full JEI mod as a runtime dependency
// implementation fg.deobf("com.tterrag.registrate:Registrate:MC${mc_version}-${registrate_version}") // Adds registrate as a dependency
// Examples using mod jars from ./libs
// implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}")
// For more info:
// 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 {
jar {
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")
"Specification-Title" : archivesBaseName,
"Specification-Vendor" : "modernlifepatchsareus",
"Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name,
"Implementation-Version" : project.jar.archiveVersion,
"Implementation-Vendor" : "modernlifepatchsareus",
"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
// This is the preferred method to reobfuscate your jar file
jar.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
// publish.dependsOn('reobfJar')
publishing {
publications {
register('mavenJava', MavenPublication) {
mavenJava(MavenPublication) {
artifact jar
}
}
@ -214,7 +221,13 @@ publishing {
}
}
}
mixin {
add sourceSets.main, archivesBaseName + '.refmap.json'
config archivesBaseName + ".mixins.json"
debug.verbose = true
debug.export = true
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}

View File

@ -3,52 +3,7 @@
org.gradle.jvmargs=-Xmx3G
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.
#
# 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=parchment
# The mapping version to query from the mapping channel.
# This must match the format required by the mapping channel.
mapping_version=2023.09.03-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=modernlifepatch
# The human-readable display name for the mod.
mod_name=Modern Life Patch
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=MIT
# The mod version. See https://semver.org/
mod_version=1.20.1-1.5.1-beta
# 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.r3944realms.modernlifepatch
# The authors of the mod. This is a simple text string that is used for display purposes in the mod list.
mod_authors=r3944Realms
# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list.
mod_description=A patch was made due to too many flaws in the original author's graphic design.
mod.id = modernlifepatch
mod.group = com.r3944realms.modernlifepatch
mod.author = r3944Realms
mod.version = 1.18.2-1.5.1-beta

Binary file not shown.

View File

@ -1,6 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-8.8-bin.zip
networkTimeout=10000
distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

35
gradlew vendored
View File

@ -1,7 +1,7 @@
#!/bin/sh
#
# Copyright © 2015-2021 the original authors.
# Copyright © 2015-2021 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@ -32,10 +32,10 @@
# 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».
# * 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:
#
@ -55,7 +55,7 @@
# 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
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
@ -80,11 +80,14 @@ do
esac
done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
APP_NAME="Gradle"
APP_BASE_NAME=${0##*/}
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@ -140,16 +143,12 @@ fi
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
@ -194,10 +193,6 @@ if "$cygwin" || "$msys" ; then
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
@ -210,12 +205,6 @@ set -- \
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.

15
gradlew.bat vendored
View File

@ -14,7 +14,7 @@
@rem limitations under the License.
@rem
@if "%DEBUG%"=="" @echo off
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@ -25,8 +25,7 @@
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%"=="" set DIRNAME=.
@rem This is normally unused
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@ -41,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if %ERRORLEVEL% equ 0 goto execute
if "%ERRORLEVEL%" == "0" goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
@ -76,15 +75,13 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
:end
@rem End local scope for the variables with windows NT shell
if %ERRORLEVEL% equ 0 goto mainEnd
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
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%
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal

BIN
mod-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 75 KiB

31
qodana.yaml Normal file
View File

@ -0,0 +1,31 @@
#-------------------------------------------------------------------------------#
# Qodana analysis is configured by qodana.yaml file #
# https://www.jetbrains.com/help/qodana/qodana-yaml.html #
#-------------------------------------------------------------------------------#
version: "1.0"
#Specify inspection profile for code analysis
profile:
name: qodana.starter
#Enable inspections
#include:
# - name: <SomeEnabledInspectionId>
#Disable inspections
#exclude:
# - name: <SomeDisabledInspectionId>
# paths:
# - <path/where/not/run/inspection>
projectJDK: 17 #(Applied in CI/CD pipeline)
#Execute shell command before Qodana execution (Applied in CI/CD pipeline)
#bootstrap: sh ./prepare-qodana.sh
#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline)
#plugins:
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
#Specify Qodana linter for analysis (Applied in CI/CD pipeline)
linter: jetbrains/qodana-jvm:latest

View File

@ -1,16 +0,0 @@
pluginManagement {
repositories {
gradlePluginPortal()
maven {
name = 'MinecraftForge'
url = 'https://maven.minecraftforge.net/'
}
maven {
url = 'https://maven.parchmentmc.org'
}
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0'
}

View File

@ -1,16 +0,0 @@
// 1.20.1 2025-05-03T19:59:50.2010966 Item Models: modernlifepatch
f3bfd5fc26d5405526c79c925a7c01db004b3c29 assets/modernlifepatch/models/item/eight_block.json
12fae55f55346fb9968dbae4fc1b4cf739bf09a0 assets/modernlifepatch/models/item/five_block.json
ab3a28dbd3340bfae8db4bf2a81024d212494a9b assets/modernlifepatch/models/item/four_block.json
1eabd9e17c204afaa5e461373e76704b469b1551 assets/modernlifepatch/models/item/large_mirror.json
ddf31e8377fca2bb97fef098a294a7473b56bd96 assets/modernlifepatch/models/item/massive_mirror.json
bd757d611e2b5cac8731ae51b0b8ce0d77da80ae assets/modernlifepatch/models/item/mirror.json
d0cd2d7c36d45ad50879a40eef6dad753b3e4e67 assets/modernlifepatch/models/item/nine_block.json
41b9a4a3fd9d711b32dfc4b2a013ef96c15f0ec7 assets/modernlifepatch/models/item/null_block.json
07a65900f932dedc58164511624e1dd3338f1d64 assets/modernlifepatch/models/item/one_block.json
23bfb55fa9a6f92a2e9f55f623518f50a0d898c9 assets/modernlifepatch/models/item/seven_block.json
a92414e81c702ba0f96a56dc41fbac14edd55b19 assets/modernlifepatch/models/item/six_block.json
9d0fdb4d53d6cf9e86d1f98aeb9f23f9310a9ec7 assets/modernlifepatch/models/item/tall_mirror.json
4e64adfeae281b2f249e98e4d98cadfcd2735975 assets/modernlifepatch/models/item/three_block.json
8fc30f0f91647f6d40c005e326d35f9fe61f8654 assets/modernlifepatch/models/item/two_block.json
4f5320fdf8549e158dd87a7e27a6b462580f6632 assets/modernlifepatch/models/item/zero_block.json

View File

@ -1,2 +0,0 @@
// 1.20.1 2025-05-03T19:59:50.2079155 Languages: zh_cn
a4c278a5e332696da1a21414831e7a90f5e7b8f8 assets/modernlifepatch/lang/zh_cn.json

View File

@ -1,34 +0,0 @@
// 1.20.1 2025-03-24T10:47:19.616683 Loot Tables
31db597883f9eaa6c1c8f2fe1f9ef45f26e71d62 data/modernlifepatch/loot_tables/blocks/black_concrete_barrier.json
821c7620abe5e839afd07d6d5d08623f588903b4 data/modernlifepatch/loot_tables/blocks/blue_concrete_barrier.json
b9a1d28d64a5c6890ce591b47ee6d7ff6d4e29dc data/modernlifepatch/loot_tables/blocks/brown_concrete_barrier.json
1309c36dc6e32fc0cd00efdea78b848b716914c4 data/modernlifepatch/loot_tables/blocks/cyan_concrete_barrier.json
ba6c188a65fa6e36c5ea8cf297f907c7f4b47b9a data/modernlifepatch/loot_tables/blocks/eight_block.json
ad85fab18381e96ce2415d55829d9016cb128bfb data/modernlifepatch/loot_tables/blocks/five_block.json
c3f22cccd9c03e9f6a340ad7a9e5c52533d37cd5 data/modernlifepatch/loot_tables/blocks/four_block.json
1ecc1e884951b9d16269a8a6b0b273207d42ca74 data/modernlifepatch/loot_tables/blocks/gray_concrete_barrier.json
18f69dee8c0a312bffa549f8e269a8d7fd4171fc data/modernlifepatch/loot_tables/blocks/green_concrete_barrier.json
1ee070aa7f3d869c7610d021206ae1a3d680d050 data/modernlifepatch/loot_tables/blocks/large_mirror.json
8322a838fa68f4675fbc68423b3e7475bf5bce0e data/modernlifepatch/loot_tables/blocks/light_blue_concrete_barrier.json
aa57274d1d5d32f7a9cfd9059dc5603813b9db08 data/modernlifepatch/loot_tables/blocks/light_gray_concrete_barrier.json
629b98cb072f82599ce2c2472161196acd7ac9fe data/modernlifepatch/loot_tables/blocks/lime_concrete_barrier.json
c923d1747d2cad0bfec9f6ad0a113406398e4174 data/modernlifepatch/loot_tables/blocks/magenta_concrete_barrier.json
1b5b1090f47e29526af1cd0df979d4f216abeb07 data/modernlifepatch/loot_tables/blocks/massive_mirror.json
384f868a4d71fa14dafb4bdca2fd0fd877507025 data/modernlifepatch/loot_tables/blocks/mirror.json
b27a4d6e1dfdd3a6e3220f8b191fd5ede0fe1cb1 data/modernlifepatch/loot_tables/blocks/nine_block.json
3633a55478bf8e683cfeada0b36bb0fea1f1e015 data/modernlifepatch/loot_tables/blocks/null_block.json
65bae86afbf1e256a580e49b8b8e7dab57443d51 data/modernlifepatch/loot_tables/blocks/one_block.json
f8ef8fa122ea979d871e79b040178e4cc1b8b21a data/modernlifepatch/loot_tables/blocks/orange_concrete_barrier.json
9fbc555c8b3f42dbf72a217f9ceead9cc5fb9992 data/modernlifepatch/loot_tables/blocks/pink_concrete_barrier.json
68f069c8639165a1952af61025bff350919cbad6 data/modernlifepatch/loot_tables/blocks/purple_concrete_barrier.json
7b420f5bc648b2a31079cd32381150d56b25033c data/modernlifepatch/loot_tables/blocks/quartz_block_barrier.json
0689a21f845ac71fa47d8b3efe1de28e3bc88cc9 data/modernlifepatch/loot_tables/blocks/red_concrete_barrier.json
be827424e5238e710a25dc04872885aa62dd8f5f data/modernlifepatch/loot_tables/blocks/seven_block.json
30cbba30e4344378a8449d1301fb6eafeba72a37 data/modernlifepatch/loot_tables/blocks/six_block.json
c5498fd329084798a85be33dc68f227bbb09bea6 data/modernlifepatch/loot_tables/blocks/smooth_quartz_barrier.json
c76a70b5a42ede00cb92bdc4f5c292bb6c961071 data/modernlifepatch/loot_tables/blocks/tall_mirror.json
033961ef19f6e56e8e0c2bd9aea9c446270587f7 data/modernlifepatch/loot_tables/blocks/three_block.json
a28d8ca4f4d81a674e80be80ec2ca9ff5dc70191 data/modernlifepatch/loot_tables/blocks/two_block.json
a0005faec56eca6ecd1911aec51fbaa0447955c9 data/modernlifepatch/loot_tables/blocks/white_concrete_barrier.json
bca84922278c797a2075ec5965dbaf237b712973 data/modernlifepatch/loot_tables/blocks/yellow_concrete_barrier.json
97147fb097ae478fb56b5749b9a01ba809caada8 data/modernlifepatch/loot_tables/blocks/zero_block.json

View File

@ -1,119 +0,0 @@
// 1.20.1 2025-05-03T19:59:50.2079155 Recipes
2f62b2d36534a48a65e8cfedc1e45ac3e0089ff9 data/minecraft/advancements/recipes/decorations/black_concrete_barrier_from_black_concrete_stonecutting.json
a888d18dbf22aa8b46a077bae7f6b717d9885572 data/minecraft/advancements/recipes/decorations/blue_concrete_barrier_from_blue_concrete_stonecutting.json
f0ed2368d1265cce94f7e843f4de55e328902ae6 data/minecraft/advancements/recipes/decorations/brown_concrete_barrier_from_brown_concrete_stonecutting.json
1873fc03fe38bfa71ad8a1a8d6ab9801c8d25d28 data/minecraft/advancements/recipes/decorations/cyan_concrete_barrier_from_cyan_concrete_stonecutting.json
386001dd44c7d6fbbbfdd27e31bc339de5bed0fe data/minecraft/advancements/recipes/decorations/gray_concrete_barrier_from_gray_concrete_stonecutting.json
9e710f274cd73db3bd2efbde109b91b38ad40b0e data/minecraft/advancements/recipes/decorations/green_concrete_barrier_from_green_concrete_stonecutting.json
07fe275e9e17da53ed30855c80f887bdd8f79272 data/minecraft/advancements/recipes/decorations/light_blue_concrete_barrier_from_light_blue_concrete_stonecutting.json
04a061d26698df6f1732e386cfcc56ba6767c671 data/minecraft/advancements/recipes/decorations/light_gray_concrete_barrier_from_light_gray_concrete_stonecutting.json
f6488549be3cbd4fe0a2661e4de92f456d05087c data/minecraft/advancements/recipes/decorations/lime_concrete_barrier_from_lime_concrete_stonecutting.json
c1cbc4036079d7f5a39214653f4fdecedd2c1f30 data/minecraft/advancements/recipes/decorations/magenta_concrete_barrier_from_magenta_concrete_stonecutting.json
874e8738b041c219b8ad9438c4fb9faddf2cfd2e data/minecraft/advancements/recipes/decorations/orange_concrete_barrier_from_orange_concrete_stonecutting.json
ccdcf8117b49d5074d0140eec9159c5a134137b6 data/minecraft/advancements/recipes/decorations/pink_concrete_barrier_from_pink_concrete_stonecutting.json
0a3d2aea5f29b88e3cc8049935a8adad936e689f data/minecraft/advancements/recipes/decorations/purple_concrete_barrier_from_purple_concrete_stonecutting.json
29bc8df14af9fa6b2de522f302bdd6a859e0d2e5 data/minecraft/advancements/recipes/decorations/red_concrete_barrier_from_red_concrete_stonecutting.json
ee261066eaa0b85e6ab2303d51bae481bedaa36e data/minecraft/advancements/recipes/decorations/white_concrete_barrier_from_white_concrete_stonecutting.json
2f17e2b2c8da515dac4945bdcaf4dd10a11bf3b2 data/minecraft/advancements/recipes/decorations/yellow_concrete_barrier_from_yellow_concrete_stonecutting.json
f0f9049d3bfd8b354cbb69de8c32d4779c6c78c8 data/minecraft/advancements/recipes/misc/bullet.json
7435650651ae68134d158a4298fdeace83917678 data/minecraft/advancements/recipes/misc/bullet_2.json
988414c0a5be7c371c55a2c843d61a32ab063819 data/minecraft/advancements/recipes/misc/eight_block_from_null_block_stonecutting.json
32864de09f51166fe2b22ef1bf6fb0fd4f9d294e data/minecraft/advancements/recipes/misc/five_block_from_null_block_stonecutting.json
094353c62e4e78bd7f645bff89c8c59db3af4f64 data/minecraft/advancements/recipes/misc/four_block_from_null_block_stonecutting.json
ae108c0b8c0426126a129fb90211e4ac8be37402 data/minecraft/advancements/recipes/misc/four_bullet_magazine.json
644fbc1ab8b8062cd1a8582956fc4ea1b11743b8 data/minecraft/advancements/recipes/misc/nine_block_from_null_block_stonecutting.json
b028df590e453b614487f5587bd4e1a6638daad9 data/minecraft/advancements/recipes/misc/nine_bullet_extended_magazine.json
f6b6d2e5bc534b6d7d136a4e69066857c6227266 data/minecraft/advancements/recipes/misc/null_block_from_eight.json
04a0c3901e4e444651529801c645506a41600ca0 data/minecraft/advancements/recipes/misc/null_block_from_eight_block_stonecutting.json
01aceacee682e62e75f60f7c79829833f1d848b3 data/minecraft/advancements/recipes/misc/null_block_from_five.json
20eb9730c0e4af93c7d19f0ac5d525acbf21fb7e data/minecraft/advancements/recipes/misc/null_block_from_five_block_stonecutting.json
89f6e704879c44ab1bc72524b389732c0a45212d data/minecraft/advancements/recipes/misc/null_block_from_four.json
80b4f46e4803d06517c33aec2e5d08e45e429ff9 data/minecraft/advancements/recipes/misc/null_block_from_four_block_stonecutting.json
7f57655bed0ca151b8c8694163dfec21168b0498 data/minecraft/advancements/recipes/misc/null_block_from_nine.json
faf258556e2dc83b0d383e25615900c39fbc6d57 data/minecraft/advancements/recipes/misc/null_block_from_nine_block_stonecutting.json
61c4d24a0b624e6a61c217bea1ab6526303514ab data/minecraft/advancements/recipes/misc/null_block_from_null.json
6d8cd613596f886a2d6bfadf3a4fe746a48865d6 data/minecraft/advancements/recipes/misc/null_block_from_one.json
7a2f43dbf866a4e009528ecb46a70dba80fc6875 data/minecraft/advancements/recipes/misc/null_block_from_one_block_stonecutting.json
dfa03f58965013d1cadd0cde8dc848fbe02a9526 data/minecraft/advancements/recipes/misc/null_block_from_seven.json
a0fc33cc60e9c74213710ed3584f4470be13ad26 data/minecraft/advancements/recipes/misc/null_block_from_seven_block_stonecutting.json
df3e777ab1cdf610b762ad19252ec99d02451d19 data/minecraft/advancements/recipes/misc/null_block_from_six.json
d1e4c786c7f0af149f511cca47062ff64300c000 data/minecraft/advancements/recipes/misc/null_block_from_six_block_stonecutting.json
70676f8bc87b64c35ef7d26b523a15555dbaa7b6 data/minecraft/advancements/recipes/misc/null_block_from_three.json
a831fd8dd94e79729638d665b8910bd6cd5bd5aa data/minecraft/advancements/recipes/misc/null_block_from_three_block_stonecutting.json
07622b3aaae1bfae8d8ee5b44e3c5b6b303e5dbd data/minecraft/advancements/recipes/misc/null_block_from_two.json
13f11c7d7e9f0a0677a5dcd2fde8b8797e8dda39 data/minecraft/advancements/recipes/misc/null_block_from_two_block_stonecutting.json
ab990b3930cfd57580a8a97f347e1070546908d1 data/minecraft/advancements/recipes/misc/null_block_from_zero.json
0d0e90d49fcbb54a16a28862242805455a78327c data/minecraft/advancements/recipes/misc/null_block_from_zero_block_stonecutting.json
db9deb52abf2efbf492e44ff14bb5acfccd1308a data/minecraft/advancements/recipes/misc/one_block_from_null_block_stonecutting.json
2bcbdcf91704e86c7a7e525aac04e049620f4fd3 data/minecraft/advancements/recipes/misc/seven_block_from_null_block_stonecutting.json
3c167e359e82b8485bf7c2ff1317a42d2b579ae3 data/minecraft/advancements/recipes/misc/six_block_from_null_block_stonecutting.json
84d1d343d6a4f5a0abf44efa5234bbaeabc642ed data/minecraft/advancements/recipes/misc/six_bullet_bullet_strip.json
64059807e58379223e9f18ecc233c91dfe865c7e data/minecraft/advancements/recipes/misc/three_block_from_null_block_stonecutting.json
5387372f36268279d7d70d364d44d44e027f7002 data/minecraft/advancements/recipes/misc/two_block_from_null_block_stonecutting.json
ff91a2160897fb7afdd6451927bc7bdb230dd152 data/minecraft/advancements/recipes/misc/zero_block_from_null_block_stonecutting.json
64a306dd145f33a183b9f9fed47780e2bd6e50de data/minecraft/recipes/black_concrete_barrier_from_black_concrete_stonecutting.json
a9722f24564f23327e9f7a47ef7b1b89b305de96 data/minecraft/recipes/blue_concrete_barrier_from_blue_concrete_stonecutting.json
6a768ef562363272a9bfa756514a33c124872ae1 data/minecraft/recipes/brown_concrete_barrier_from_brown_concrete_stonecutting.json
0959b0d8a1b70c0385b4241cdfad1f89e6f1dd9f data/minecraft/recipes/bullet.json
bfb01f7dd0d92f1744d41a4be87e2e283c4b3810 data/minecraft/recipes/bullet_2.json
a02c991f8cc9098f2aa6f46325badfc8a8e4b1ea data/minecraft/recipes/cyan_concrete_barrier_from_cyan_concrete_stonecutting.json
df5f3709de5126ed352b330e6fe08361c0671423 data/minecraft/recipes/eight_block_from_null_block_stonecutting.json
d05a1ec64e03335ef1cdbbe3de0415bf0b789387 data/minecraft/recipes/five_block_from_null_block_stonecutting.json
ba6976e77b3f19dd535a5c663e818e84e2887ce8 data/minecraft/recipes/four_block_from_null_block_stonecutting.json
3638aacb6d663d39eb0e87d2c8030185599e5a2b data/minecraft/recipes/four_bullet_magazine.json
52f98c10ded4ca90a97d33a12776d96cd42d11c5 data/minecraft/recipes/gray_concrete_barrier_from_gray_concrete_stonecutting.json
8667f777866cc54160a52b00af8cc8dd57ecb345 data/minecraft/recipes/green_concrete_barrier_from_green_concrete_stonecutting.json
a43e06a168f47b4ff95d26f9d0f8aaaf773bfc72 data/minecraft/recipes/light_blue_concrete_barrier_from_light_blue_concrete_stonecutting.json
6ed761863a4e8d09bdfa6af922431c6e4365ffea data/minecraft/recipes/light_gray_concrete_barrier_from_light_gray_concrete_stonecutting.json
8ba9c95e2dd167a5492cd775bb5d6ae213122732 data/minecraft/recipes/lime_concrete_barrier_from_lime_concrete_stonecutting.json
6d088056e9f4ed7c16ac029ad62fa57c734f5e55 data/minecraft/recipes/magenta_concrete_barrier_from_magenta_concrete_stonecutting.json
b0ee7718d311f7b2b4983a8e3b943baae5e0e4f6 data/minecraft/recipes/nine_block_from_null_block_stonecutting.json
0f690022cc0f7162a036a9e995b70cc05e153d88 data/minecraft/recipes/nine_bullet_extended_magazine.json
50f38b5cbde42c30375fc5e03b4236bb87d9bb43 data/minecraft/recipes/null_block_from_eight.json
8eca141b1ff65c9dc19557421ad1c7f557ab74fa data/minecraft/recipes/null_block_from_eight_block_stonecutting.json
c25ac5c0f82c651723dda7cb48342889f1fdc385 data/minecraft/recipes/null_block_from_five.json
93bf5c9398ed6c0bc2284e6e01ae2e157b5ae438 data/minecraft/recipes/null_block_from_five_block_stonecutting.json
113dfc5c2efd766958ca44fbdcaef530a43b5d64 data/minecraft/recipes/null_block_from_four.json
57951339859375a4deef4fb8e8d1a4753ed42454 data/minecraft/recipes/null_block_from_four_block_stonecutting.json
004f9f1f4bccfd92dc7e817edea73f720e069dcf data/minecraft/recipes/null_block_from_nine.json
a8a0d6da5ba1224ed49000c02c50c3b19082356c data/minecraft/recipes/null_block_from_nine_block_stonecutting.json
6cfe4508e589175ca13e623f6f2c8925ae83eae3 data/minecraft/recipes/null_block_from_null.json
fd08a480dc473953bfbf8e324ffcd56445fa1a46 data/minecraft/recipes/null_block_from_one.json
6e4373569c95eea3343b34fb90336d93dc1e4273 data/minecraft/recipes/null_block_from_one_block_stonecutting.json
8a04fc167646712ae6ca8eb37004f4305571efd5 data/minecraft/recipes/null_block_from_seven.json
fa8e42e23b88a94d855c0656617dc38d55cd76b0 data/minecraft/recipes/null_block_from_seven_block_stonecutting.json
7c19400f57a814618ad84f23fb795f3f14fe4595 data/minecraft/recipes/null_block_from_six.json
e6060bf1049bd385556c798c0222d813746eb0b9 data/minecraft/recipes/null_block_from_six_block_stonecutting.json
0f20f972196359db26b7155b5221b4bc0909aa7d data/minecraft/recipes/null_block_from_three.json
97ff5e132e030eb1dff30059ef7ce80b133f739e data/minecraft/recipes/null_block_from_three_block_stonecutting.json
9542fe256fecebf483cfe50bbf6aa214ae029a6e data/minecraft/recipes/null_block_from_two.json
3a73c04c63745805a5e28570b423aa19a56a8a08 data/minecraft/recipes/null_block_from_two_block_stonecutting.json
5c114a1375f711647e9aea42112a5c66a02c9607 data/minecraft/recipes/null_block_from_zero.json
94af1c4dc2982d1f876c791587a1d98990900d58 data/minecraft/recipes/null_block_from_zero_block_stonecutting.json
81048aa3eee0cd375a24beecee1d0d7b138bd67d data/minecraft/recipes/one_block_from_null_block_stonecutting.json
e5ea65dde85bbe8dea1a37dc76c898966cf2ceeb data/minecraft/recipes/orange_concrete_barrier_from_orange_concrete_stonecutting.json
99c0a624f0bd9b2b7b5beade985976a7f35c0454 data/minecraft/recipes/pink_concrete_barrier_from_pink_concrete_stonecutting.json
d2e0bc434ca37601f727810ff9cb7f1205ceb6b3 data/minecraft/recipes/purple_concrete_barrier_from_purple_concrete_stonecutting.json
3652ee4dd0846ef825ff7d8bc10afd62c1d2dee7 data/minecraft/recipes/red_concrete_barrier_from_red_concrete_stonecutting.json
03ea9a3b9a04c26b01c147149d847bc1ec8f91e5 data/minecraft/recipes/seven_block_from_null_block_stonecutting.json
057bc3387dba64b5220ff42b49310a50a041cc30 data/minecraft/recipes/six_block_from_null_block_stonecutting.json
10ff762d1fc2892dfbcbe438e77ec333fad910c1 data/minecraft/recipes/six_bullet_bullet_strip.json
fc264bf36dc4b2d7ff4c089523740904abb67cb6 data/minecraft/recipes/three_block_from_null_block_stonecutting.json
de65a15aa31006a2ff1b14d47452b410a16ccf44 data/minecraft/recipes/two_block_from_null_block_stonecutting.json
9d4629cfb681a773d0b8bd22f4b90a910db6a47c data/minecraft/recipes/white_concrete_barrier_from_white_concrete_stonecutting.json
0af5a2ba87016df6c827710204397aebb74b75fc data/minecraft/recipes/yellow_concrete_barrier_from_yellow_concrete_stonecutting.json
620c5bea1a315f4f4d84274d74b2e07d21807b0e data/minecraft/recipes/zero_block_from_null_block_stonecutting.json
829d226e46b965c74cdc812972e5e4a6feee89d3 data/modernlifepatch/advancements/recipes/decorations/large_mirror.json
9d1914bb2bddd1bbadd0b58f3f7e5eb992f984c8 data/modernlifepatch/advancements/recipes/decorations/massive_mirror.json
b504244797d565ee02ab4775b5e05be332d918f4 data/modernlifepatch/advancements/recipes/decorations/null_block.json
94a737ff42179d0caaf7b0f73701fb8d1e54dd2a data/modernlifepatch/advancements/recipes/decorations/quartz_block_barrier.json
b5ce34d4d0fc82adaf4fb0982d74dd8fd10a3f7f data/modernlifepatch/advancements/recipes/decorations/smooth_quartz_barrier.json
1a1423565c4e8c9d2b2a4157c61ab00ea154e474 data/modernlifepatch/advancements/recipes/decorations/tall_mirror.json
e31f330892c0abe33cce7f858b1e2cb23125e29c data/modernlifepatch/advancements/recipes/misc/mirror.json
c7af367b61d30ea781a72a6a72e86677bc5b0136 data/modernlifepatch/recipes/large_mirror.json
89bab02b61801049313724df763ab216dbf1f09c data/modernlifepatch/recipes/massive_mirror.json
28133e9320816c3ffc37e11191f19dffd41da17c data/modernlifepatch/recipes/mirror.json
aeb3920e4e64ff28b32009a08a6a66b5775af3e7 data/modernlifepatch/recipes/null_block.json
f1edaf2c9ee61959bd64bb7e35a717b41969d8b9 data/modernlifepatch/recipes/quartz_block_barrier.json
d2bcf4f75604965f615ad5fb5c4b496f85f0375f data/modernlifepatch/recipes/smooth_quartz_barrier.json
fc2a0f648922c5e671df5e33e7634c1a54c78739 data/modernlifepatch/recipes/tall_mirror.json

View File

@ -1,12 +0,0 @@
// 1.20.1 2025-03-24T10:47:19.616683 Tags for minecraft:item mod id modernlifepatch
00de6eaabb51f87a46be0039344b94204e8d501b data/modernlifepatch/tags/items/bathroom.json
b3b3c0c03825f206ac0114b92dde340575823667 data/modernlifepatch/tags/items/bedchamber.json
732da337904859b5b97ce51bde1cc7f7a5d80abe data/modernlifepatch/tags/items/door.json
6d128d771d93102db48fe3efeb9bd5f228495c92 data/modernlifepatch/tags/items/general.json
39d060574b2353a8af213b9eedf7f74af5cfff59 data/modernlifepatch/tags/items/kitchen.json
1f1537346f8e42f6ff55126419e8c6c44db1a17e data/modernlifepatch/tags/items/lounge.json
2cdbaac0403a9e98a3345cdba52bcbc904c97bd8 data/modernlifepatch/tags/items/m_tool.json
f690267c62fcfeb6d17e37a99088445cfb68dd9f data/modernlifepatch/tags/items/outside.json
6cf052eddbeb8b14de7afea7f421f37a6f771948 data/modernlifepatch/tags/items/seat.json
3a84ab7484352351e22d622807ab8f7f4e0b620c data/modernlifepatch/tags/items/shelf.json
3d3a2dc84920c00497ffe8ca37ced9269e394c77 data/modernlifepatch/tags/items/table.json

View File

@ -1,2 +0,0 @@
// 1.20.1 2025-03-24T11:02:54.6277698 Tags for minecraft:block mod id modernlifepatch
a6b7c3095f838c64a42bc8e4dad328ffac8f796a data/minecraft/tags/blocks/mineable/pickaxe.json

View File

@ -1,59 +0,0 @@
// 1.20.1 2025-05-03T19:59:50.2079155 Block States: modernlifepatch
6dcfec708d429da81fb2776dda9af3023908da59 assets/modernlifepatch/blockstates/black_concrete_barrier.json
e2016906e5c3589daac72c5cb7d603e4eeb6621f assets/modernlifepatch/blockstates/blue_concrete_barrier.json
4f993c3d5452903f0c09bdd60edfb01316c52ebb assets/modernlifepatch/blockstates/brown_concrete_barrier.json
1d98d956d488daefb2b6b8631979dfae4a0273d4 assets/modernlifepatch/blockstates/cyan_concrete_barrier.json
ad9e0f04c1e224eb50ef0c0a09eed85b9545cdcf assets/modernlifepatch/blockstates/eight_block.json
089321acaa8e7253cbb447c6120162af606c5383 assets/modernlifepatch/blockstates/five_block.json
154a0005ca409e72097942f0bc36c3e74758e8d3 assets/modernlifepatch/blockstates/four_block.json
ff61b2512130e43fdad61348d4e9e5cbca0e17b0 assets/modernlifepatch/blockstates/gray_concrete_barrier.json
dd4e4b47f65b94d9180346f9790b85ec8e299524 assets/modernlifepatch/blockstates/green_concrete_barrier.json
4077fecd41e271e4ed79752ab178552e5ec674a4 assets/modernlifepatch/blockstates/light_blue_concrete_barrier.json
48052319b883a2e59d7efde11434bb09a3f24393 assets/modernlifepatch/blockstates/light_gray_concrete_barrier.json
2bdff859c4e1faaa729ac338307c7af10c3eb5b1 assets/modernlifepatch/blockstates/lime_concrete_barrier.json
2ecef4d6a4b9aa021eaddee4cce32c1f14f93f4f assets/modernlifepatch/blockstates/magenta_concrete_barrier.json
f8d90d3df38674f37803738c20c913841593f44a assets/modernlifepatch/blockstates/nine_block.json
e7dab48b71f4bcd932ba254013e58e0bec22c6c6 assets/modernlifepatch/blockstates/null_block.json
f2af69c750fc937d13177b3d0bc7db27c7680138 assets/modernlifepatch/blockstates/one_block.json
9c674b4a2db2532fe1ab23c5523d70b6cbee1902 assets/modernlifepatch/blockstates/orange_concrete_barrier.json
278c013ed5021074ef846ae8297619043e9eaf98 assets/modernlifepatch/blockstates/pink_concrete_barrier.json
a3b9c0099e3f65bfd14015a629a709f5b90bf75e assets/modernlifepatch/blockstates/purple_concrete_barrier.json
7e10c47295142dbd6b63d2a1d052ace5dd753fe6 assets/modernlifepatch/blockstates/quartz_block_barrier.json
b6e93648de3ec4921410b4acd4003b1fd4baded0 assets/modernlifepatch/blockstates/red_concrete_barrier.json
3f651298532e843ffb0fbbfd3cf866bfdf0fcef5 assets/modernlifepatch/blockstates/seven_block.json
f78e6379e5cba21992fb16167c3650f8aa56bf76 assets/modernlifepatch/blockstates/six_block.json
2a9a67a4b8ac8d790de5b40db8cc99b471a88a6c assets/modernlifepatch/blockstates/smooth_quartz_barrier.json
24cd8eaef736271e6da513ee99f9da97bcbd12b2 assets/modernlifepatch/blockstates/three_block.json
8485233b180d03a927c1f39ae9896a4d5bb1d3b6 assets/modernlifepatch/blockstates/two_block.json
c4e8d556ce255d18da5a5c926bf3da963fb40f1a assets/modernlifepatch/blockstates/white_concrete_barrier.json
bea52888b9b32d9866643be4a99cd9802c1a1322 assets/modernlifepatch/blockstates/yellow_concrete_barrier.json
46e2bb42a836fa8abe826a976d00213e8497f251 assets/modernlifepatch/blockstates/zero_block.json
2f926076a3a4c23c7fc7c4fbbdc9132a48e82f7d assets/modernlifepatch/models/block/eight_block.json
31fe4707fc9058e663a054a4b6d147911acfa0f2 assets/modernlifepatch/models/block/five_block.json
16b0fab04755d905f9c483a8ce59ff066108277e assets/modernlifepatch/models/block/four_block.json
9f7d5b1e154d227e51774cda29f26eaa8350690e assets/modernlifepatch/models/block/nine_block.json
5cf2ad128e41450c543ed5182cd0765991ffa057 assets/modernlifepatch/models/block/null_block.json
7ebef25ff96f9fcce947336dd5cc76063531e173 assets/modernlifepatch/models/block/one_block.json
c4fc45ed94180cc064fe42463cfc9b2817cffc38 assets/modernlifepatch/models/block/seven_block.json
1de734219c2beeb19d18df5590d193c9286d464e assets/modernlifepatch/models/block/six_block.json
e3ba2a282503d401c42e6a65671f786b7d32bc42 assets/modernlifepatch/models/block/three_block.json
8cb0ed20e4464c9d4fac84e3ab483e07ec517694 assets/modernlifepatch/models/block/two_block.json
3ad9375c5f770e97fd8f62725c317c0a7e7c0d85 assets/modernlifepatch/models/block/zero_block.json
507562e8509a8c83a4c2cebb4cbb682e94315ef4 assets/modernlifepatch/models/item/black_concrete_barrier.json
fd17c7f34bb615f8113659d2f2c9b8e06d3bf0a3 assets/modernlifepatch/models/item/blue_concrete_barrier.json
31968e21ff06436df0828990e3521536a2997926 assets/modernlifepatch/models/item/brown_concrete_barrier.json
b745fdc77b1c8f87e654ef81eca4e95a5672ab71 assets/modernlifepatch/models/item/cyan_concrete_barrier.json
b3e601ef38191f0e5c23a41145c1e280244b673d assets/modernlifepatch/models/item/gray_concrete_barrier.json
84a0567e3f014560778f924f2b8d8c9fd4c7f93f assets/modernlifepatch/models/item/green_concrete_barrier.json
3c734794d9c1fcf7664bb9d3faeef5d4d1ee298e assets/modernlifepatch/models/item/light_blue_concrete_barrier.json
53d8a0955735f262b6209005567f590a716163e1 assets/modernlifepatch/models/item/light_gray_concrete_barrier.json
88adeb6343ab5e6e36658df72cc8e8e82be4dcaa assets/modernlifepatch/models/item/lime_concrete_barrier.json
0fb4649f0b6b149e79e111b2bd59e04a92ee34ac assets/modernlifepatch/models/item/magenta_concrete_barrier.json
6e55165c8604cb1fff47a9a1b5ab1af60620b274 assets/modernlifepatch/models/item/orange_concrete_barrier.json
8f8d499631adf1fb5c8344e4f9534b7309ba2c5d assets/modernlifepatch/models/item/pink_concrete_barrier.json
3cbaeb4fe8b2afa39d5abb0cc9b3ec959ac8ee16 assets/modernlifepatch/models/item/purple_concrete_barrier.json
98d40fd38a81284295147a39f429e809565d9b3c assets/modernlifepatch/models/item/quartz_block_barrier.json
864d1685c60fcdaca3825e7d05af6eff438cf9cb assets/modernlifepatch/models/item/red_concrete_barrier.json
461bbfab1e521e5450df4dad7cd3a64d84299db7 assets/modernlifepatch/models/item/smooth_quartz_barrier.json
1feb32683f4f57640577fccf962c04ab48c2ce9d assets/modernlifepatch/models/item/white_concrete_barrier.json
9c3f0791c55bc96bbb9123a1024258053ead327a assets/modernlifepatch/models/item/yellow_concrete_barrier.json

View File

@ -1,2 +0,0 @@
// 1.20.1 2025-05-03T19:59:50.2236791 Languages: en_us
1c37169f53ac69857962e56f36baddc4708ec4a3 assets/modernlifepatch/lang/en_us.json

View File

@ -1,19 +0,0 @@
// 1.20.1 2025-03-24T10:47:19.616683 Block Models: modernlifepatch
f4ea0d1cb24bebbfe97a7c171dea09e7a1ecf079 assets/modernlifepatch/models/block/black_concrete_barrier.json
5d4d46839d475c269e64aae6622e7e756011cdbf assets/modernlifepatch/models/block/blue_concrete_barrier.json
8a75e83adc494c8d55d7b1e6e2fe5bb78164d5f2 assets/modernlifepatch/models/block/brown_concrete_barrier.json
bfdfab5b6efcb0d6a878778fa6c1b13687f9615f assets/modernlifepatch/models/block/cyan_concrete_barrier.json
278ca527ea91906ea0d5de90f2191c5ec5ebe052 assets/modernlifepatch/models/block/gray_concrete_barrier.json
0e7b7f208d7bfd035eaa418a09cb2689a6a50735 assets/modernlifepatch/models/block/green_concrete_barrier.json
225be6d26ad1250d38b280980b6a461125e1aabb assets/modernlifepatch/models/block/light_blue_concrete_barrier.json
5834552e5a416416d9b45cec0d1106eb8dab46c1 assets/modernlifepatch/models/block/light_gray_concrete_barrier.json
6a07aef2efbf0baa8cf1372840fba267fcdeaf55 assets/modernlifepatch/models/block/lime_concrete_barrier.json
c6b6df16d7bc531f4828255c760be1ad01918401 assets/modernlifepatch/models/block/magenta_concrete_barrier.json
d79a133bb4fa9cbbced6ffb198f2a6fe7ffb3546 assets/modernlifepatch/models/block/orange_concrete_barrier.json
7507729a4ba98d5fe574c1ab8d6c71a72ceae07e assets/modernlifepatch/models/block/pink_concrete_barrier.json
08690e199f8325c6802e5eed7b93da606a413980 assets/modernlifepatch/models/block/purple_concrete_barrier.json
d76a63d0df6430ae203949050b75d107865edce0 assets/modernlifepatch/models/block/quartz_block_barrier.json
3c61a1ef01205029ba38f1232759ba11d7c3bdca assets/modernlifepatch/models/block/red_concrete_barrier.json
5925b323b84c5099e8ef862ce7d2fed930379047 assets/modernlifepatch/models/block/smooth_quartz_barrier.json
dca56f2d184fa83ab10141a8a79f2ee278d4f377 assets/modernlifepatch/models/block/white_concrete_barrier.json
c593a92e9930b132e12a9d7a3a3a322b5b4abf20 assets/modernlifepatch/models/block/yellow_concrete_barrier.json

View File

@ -0,0 +1,252 @@
abee53e6e8b000e4dc2cc21c68ca41ee820d64f1 assets/modernlifepatch/blockstates/black_concrete_barrier.json
1bd1cee94493e1228a862ba4c700f720a76c4956 assets/modernlifepatch/blockstates/blue_concrete_barrier.json
581549be8f226667332b822bf9a66a21f79e265d assets/modernlifepatch/blockstates/brown_concrete_barrier.json
0efafdd4798ed117f7fc299cacbfd9379ae198a9 assets/modernlifepatch/blockstates/cyan_concrete_barrier.json
e988f9e5974021909ff2f2e89a827b9cf233f53e assets/modernlifepatch/blockstates/eight_block.json
d18224c7cff7aeddaad1848930a42fdfa30bafba assets/modernlifepatch/blockstates/five_block.json
f482b4b8669678957114a15fb6a67004d2b14804 assets/modernlifepatch/blockstates/four_block.json
db379df346ea8f3f4e1d44209ca420d9ee5d9173 assets/modernlifepatch/blockstates/gray_concrete_barrier.json
4770967e677fdf6a661f1753c416096e13a10cb8 assets/modernlifepatch/blockstates/green_concrete_barrier.json
ae20a92e7d3516486e708ca4eede4c42aeb3f7cb assets/modernlifepatch/blockstates/light_blue_concrete_barrier.json
58b3ec4c447ca55a38c0e9e84ce5c7a3fdc5dee9 assets/modernlifepatch/blockstates/light_gray_concrete_barrier.json
3ce683226d62da6a9467c6a6ef85026e6c73c5e6 assets/modernlifepatch/blockstates/lime_concrete_barrier.json
e2728d8903d9961eaacec9a4a1a264f5e2aeb987 assets/modernlifepatch/blockstates/magenta_concrete_barrier.json
49da7e91b638199f4b0b07161e26f785a189d69b assets/modernlifepatch/blockstates/nine_block.json
bf44b33d66bb5a547d7b22cb9c9ba415292029ca assets/modernlifepatch/blockstates/null_block.json
532a14443d227e9955996b28312db1b07e09e750 assets/modernlifepatch/blockstates/one_block.json
8cc4a69d742b9f9d53822b3c61d1f851d0a2af38 assets/modernlifepatch/blockstates/orange_concrete_barrier.json
ba687d6415b6c54b269570848911ec2432b104c8 assets/modernlifepatch/blockstates/pink_concrete_barrier.json
e0ddd840be4e61f34e07fdb7d7a2e1b04791e0a1 assets/modernlifepatch/blockstates/purple_concrete_barrier.json
211f927f735de1a819fe203123645315d88eb5e0 assets/modernlifepatch/blockstates/quartz_block_barrier.json
bfa6c9feda0cfea0f87ca0b5c80681c9b6e5875f assets/modernlifepatch/blockstates/red_concrete_barrier.json
aaf45b8b7f278b770b9881fd04afde3e69a3a61e assets/modernlifepatch/blockstates/seven_block.json
98343eb7712d5ab1294827097d41b3694bd737a2 assets/modernlifepatch/blockstates/six_block.json
66116c68dc85107b63a00a34f708ce6c7b1ee05a assets/modernlifepatch/blockstates/smooth_quartz_barrier.json
8f9a878ac5383e18cd87ac43b02f0b503c7bfb88 assets/modernlifepatch/blockstates/three_block.json
d5b9c1362a5b10137f0a8b20b4b5774cc2912429 assets/modernlifepatch/blockstates/two_block.json
b9ecfdaadc1a9dd536d7124b65d6054d2d6a2ff5 assets/modernlifepatch/blockstates/white_concrete_barrier.json
a65db9338552468602ea4ed3707f569d88e98ac4 assets/modernlifepatch/blockstates/yellow_concrete_barrier.json
2972f1d246d42a194df6ef0e4aa97637bd81d012 assets/modernlifepatch/blockstates/zero_block.json
f03bebdffac97a52a25b16735d27b1f4ce620e7e assets/modernlifepatch/lang/en_us.json
e312ccca0b8e9ef5f4d3df3c0d55ecb7f23e0aef assets/modernlifepatch/lang/zh_cn.json
2f9098dc8325d5df5c620c407b6b10ee665e2bc3 assets/modernlifepatch/models/block/black_concrete_barrier.json
7fe678ee95c63aebb23a377ba9936871238006bf assets/modernlifepatch/models/block/blue_concrete_barrier.json
4e6d4ce5154a735fa898431cdf16d6dbd48d795f assets/modernlifepatch/models/block/brown_concrete_barrier.json
7a0ff06de77ed8acb5d19c771f71bccc035cfd91 assets/modernlifepatch/models/block/cyan_concrete_barrier.json
01b2657496044ed794206c279ba5143ac4b3e59d assets/modernlifepatch/models/block/eight_block.json
51becd1dfd3479a5420810434f0c05ad40343b05 assets/modernlifepatch/models/block/five_block.json
87ffbb48bb533039d36f6975b6162398aeb27138 assets/modernlifepatch/models/block/four_block.json
d9dd48f5c165668c30ca2e7c385e3a360c82ac5e assets/modernlifepatch/models/block/gray_concrete_barrier.json
21cdf6bbe65055c572bb16604e6775757ec3b52b assets/modernlifepatch/models/block/green_concrete_barrier.json
e409887bf6618b759c36232f3b82e35279ffa81a assets/modernlifepatch/models/block/light_blue_concrete_barrier.json
c4fc2d2ef34f3c344b13c2ea6019c5067074cc5a assets/modernlifepatch/models/block/light_gray_concrete_barrier.json
7c8675df5f2bf5e75c710800b90f482bf3106497 assets/modernlifepatch/models/block/lime_concrete_barrier.json
58d3fee169c338be985552324b008768986f6dfb assets/modernlifepatch/models/block/magenta_concrete_barrier.json
c19a132aa4d3628c9406988e4537147c060de7fb assets/modernlifepatch/models/block/nine_block.json
39aaf990b6c471880cbb3280fb0945bad5f9940f assets/modernlifepatch/models/block/null_block.json
47b677200890ff70e53c900e350717103c1259ea assets/modernlifepatch/models/block/one_block.json
13d8a1554bba976044a85fd9a09c16cf3de788fa assets/modernlifepatch/models/block/orange_concrete_barrier.json
89c827f9155942e0ffc085ba506f835816f98110 assets/modernlifepatch/models/block/pink_concrete_barrier.json
c8aac0bfecb588c5c5a984597b0a47e95f40903a assets/modernlifepatch/models/block/purple_concrete_barrier.json
88c4a55c6cc5b20069f5caa5a90d475aee97ef5f assets/modernlifepatch/models/block/quartz_block_barrier.json
17d406d701961246f8c892aad69b0cd836a424c4 assets/modernlifepatch/models/block/red_concrete_barrier.json
1ea15d6e316c8ec431f08e02f91f445d7c5eaeba assets/modernlifepatch/models/block/seven_block.json
20f3648c45d5891e9fe9e0d8c5991f053ede507b assets/modernlifepatch/models/block/six_block.json
a7d8260dc68880f3110590226a1fb83818587586 assets/modernlifepatch/models/block/smooth_quartz_barrier.json
8d23e5c93b149ddd7c21cc307ac76583ee867155 assets/modernlifepatch/models/block/three_block.json
299bceae34425e8e865c35e1561d8967a7cace3e assets/modernlifepatch/models/block/two_block.json
06b847a878809b0a11992974018c231d64ade8b2 assets/modernlifepatch/models/block/white_concrete_barrier.json
5c63761872ee04c10163d1517054b323bce0879b assets/modernlifepatch/models/block/yellow_concrete_barrier.json
5fa98043ccd3415cd03e586456dad7a528fc4c74 assets/modernlifepatch/models/block/zero_block.json
3f05e49c9a4dc41050e540e392cae6f8d661b550 assets/modernlifepatch/models/item/black_concrete_barrier.json
257475b9a67cd737e0b9d703758dbfaeda199df8 assets/modernlifepatch/models/item/blue_concrete_barrier.json
e4ad59c26f4e6195e1c3a08b9315ca023d50ee66 assets/modernlifepatch/models/item/brown_concrete_barrier.json
486e77c42febdff075c3af512aa3d7668f4e1605 assets/modernlifepatch/models/item/cyan_concrete_barrier.json
896daf77109e8ab17397b657c7d0eefcd3ff8a4a assets/modernlifepatch/models/item/eight_block.json
1e6cd99a0c2744f2287cc7ab992d8e253d813e89 assets/modernlifepatch/models/item/five_block.json
8db3a8eb9b2a307cbee2943d55e6383936ce7fcb assets/modernlifepatch/models/item/four_block.json
ef511c3322c14ec0435fa1f80e8c4a3e7b9c70a9 assets/modernlifepatch/models/item/gray_concrete_barrier.json
6ac27fc3feae8f773efe63e5841729c9e3afd353 assets/modernlifepatch/models/item/green_concrete_barrier.json
ac9cec2e51193a3ebaa165fe91c9bb3f9f3fcc32 assets/modernlifepatch/models/item/large_mirror.json
41048ca136d1b6d4009784592f69123087481e77 assets/modernlifepatch/models/item/light_blue_concrete_barrier.json
67ce6ece60d574b4b1ae486ec708a9b11ddc8b02 assets/modernlifepatch/models/item/light_gray_concrete_barrier.json
b6d5b4adcd1080d10b1f61d8a005b189e9ac7916 assets/modernlifepatch/models/item/lime_concrete_barrier.json
b893eba1f576bd15b45738e5260c9c4e145f1ca9 assets/modernlifepatch/models/item/magenta_concrete_barrier.json
de63e31ba044ddc8d09dd10945a560d414e185c4 assets/modernlifepatch/models/item/massive_mirror.json
80cb85eae418087ea09e8b0d34289b3faf7f0faf assets/modernlifepatch/models/item/mirror.json
82c68c60c6298acd6f921273688430f04b221eee assets/modernlifepatch/models/item/nine_block.json
b09d30c3f6537b42312d1cef618a867b5cd5fcd7 assets/modernlifepatch/models/item/null_block.json
0a90421d1a0b2a7ec420314906228faf3dd80b83 assets/modernlifepatch/models/item/one_block.json
820ca45ce0583fecd57532e96d5e63c588de7857 assets/modernlifepatch/models/item/orange_concrete_barrier.json
c01d9ce9cad70c212304f05e598c5106f6ebf032 assets/modernlifepatch/models/item/pink_concrete_barrier.json
d48d83cd3164a34cd11b659d1b4f68c9621d859d assets/modernlifepatch/models/item/purple_concrete_barrier.json
4b20a7fb96ba97bcd8d55df4c299f03be3c8905a assets/modernlifepatch/models/item/quartz_block_barrier.json
a7b15c8732d9932731417784e20a7d8bf1cf0cb5 assets/modernlifepatch/models/item/red_concrete_barrier.json
22d963654ce437c2684c1b70a46fd895421287d6 assets/modernlifepatch/models/item/seven_block.json
278f14b1f3225eb0dca6cd28343daecb02199d8f assets/modernlifepatch/models/item/six_block.json
596c0a1f96a7ce89cfbdd16e7f45d64129fa152c assets/modernlifepatch/models/item/smooth_quartz_barrier.json
ddaaed0180f28afb8dfa1c4270e9872360aca2a7 assets/modernlifepatch/models/item/tall_mirror.json
aab252031fbdc186b94f49db4fc36350a31cadf3 assets/modernlifepatch/models/item/three_block.json
2af0c9fbbf39519c9f41ad5bb4ecfc1c00982de4 assets/modernlifepatch/models/item/two_block.json
b32a5f2cc4838d261cb0b2f4429e3bb534bf7bc9 assets/modernlifepatch/models/item/white_concrete_barrier.json
f6baef0eba7e5d6332945cc9d952843b07415297 assets/modernlifepatch/models/item/yellow_concrete_barrier.json
2c81d08ab208f11d8af04dec1fa83fb2dc8de823 assets/modernlifepatch/models/item/zero_block.json
5776b0035345ad6dffe20dd4fe89c2ba4ec4f445 data/minecraft/advancements/recipes/decorations/black_concrete_barrier_from_black_concrete_stonecutting.json
0fe9ac0e040844bfe8c7f8acf789e9e62d1b504b data/minecraft/advancements/recipes/decorations/blue_concrete_barrier_from_blue_concrete_stonecutting.json
b3b168bf51019cd6bd6875b86fd74bcc5f5c2525 data/minecraft/advancements/recipes/decorations/brown_concrete_barrier_from_brown_concrete_stonecutting.json
e19f14bc408cbf9d591ab60722751fbe296ac748 data/minecraft/advancements/recipes/decorations/cyan_concrete_barrier_from_cyan_concrete_stonecutting.json
d28da198e56740ec40b7929a639cb076300a3abb data/minecraft/advancements/recipes/decorations/eight_block_from_null_block_stonecutting.json
b1ed26cd9aae93b52fc140f48306e8e890faff2e data/minecraft/advancements/recipes/decorations/five_block_from_null_block_stonecutting.json
f59ca553538a9df9eb19c700e6b976945d2e70d5 data/minecraft/advancements/recipes/decorations/four_block_from_null_block_stonecutting.json
62fa8afe1fb37bebf5dce23a46083293721bc1ae data/minecraft/advancements/recipes/decorations/gray_concrete_barrier_from_gray_concrete_stonecutting.json
be500b4a7d01fa9f28e3f774e85eaedc3ce4f939 data/minecraft/advancements/recipes/decorations/green_concrete_barrier_from_green_concrete_stonecutting.json
033d5feb7e405c0e02747d96c56d4952a990e6c2 data/minecraft/advancements/recipes/decorations/light_blue_concrete_barrier_from_light_blue_concrete_stonecutting.json
3b8c8a95cf8bceb3b7cc2a385fbd6d248aca853e data/minecraft/advancements/recipes/decorations/light_gray_concrete_barrier_from_light_gray_concrete_stonecutting.json
1559e294263e0761ba2812d5dfafb3c6ef51c6d9 data/minecraft/advancements/recipes/decorations/lime_concrete_barrier_from_lime_concrete_stonecutting.json
a758afedffabf11c29bebcd4286929a236401126 data/minecraft/advancements/recipes/decorations/magenta_concrete_barrier_from_magenta_concrete_stonecutting.json
341b994882bf960ab16b546ec30cf0153db5a907 data/minecraft/advancements/recipes/decorations/nine_block_from_null_block_stonecutting.json
f298549ac9e2889c3b4f32843a01170380456737 data/minecraft/advancements/recipes/decorations/null_block_from_eight.json
9d3e62be93031bb136769eb32de13dcf6184cd3b data/minecraft/advancements/recipes/decorations/null_block_from_eight_block_stonecutting.json
c0444bbdb5cab43bb28f205f3573696afbf6f114 data/minecraft/advancements/recipes/decorations/null_block_from_five.json
6ecbd4a3f98cb621cffe8669971963f9127f9b0e data/minecraft/advancements/recipes/decorations/null_block_from_five_block_stonecutting.json
3458a4ca1137664a722de66b2003fcb65277ee58 data/minecraft/advancements/recipes/decorations/null_block_from_four.json
96845823cfb87a66c278e87d0097fcf1c812dbab data/minecraft/advancements/recipes/decorations/null_block_from_four_block_stonecutting.json
c8e8ea4f5793dbb1014a5b76fef2ef0cf34b90af data/minecraft/advancements/recipes/decorations/null_block_from_nine.json
4f85d55889b6492d68e88bca5c35242742e9979a data/minecraft/advancements/recipes/decorations/null_block_from_nine_block_stonecutting.json
769fd9886f7527ea7f054cdb95fcda2b559527c7 data/minecraft/advancements/recipes/decorations/null_block_from_null.json
3f6edef65fab8f8a5e944051968d3135cbbddf63 data/minecraft/advancements/recipes/decorations/null_block_from_one.json
4c645aad929ae66d1d725a9ecd8d74ad0ad55ae4 data/minecraft/advancements/recipes/decorations/null_block_from_one_block_stonecutting.json
8f0589b80bc4a26d4412310795658d0fe3e85c26 data/minecraft/advancements/recipes/decorations/null_block_from_seven.json
951284186595168bb90a997a873142497925dba0 data/minecraft/advancements/recipes/decorations/null_block_from_seven_block_stonecutting.json
c29d16b5d10a07102899d8abd5d793ac2e2e6c32 data/minecraft/advancements/recipes/decorations/null_block_from_six.json
f499decfaa405e06da9817959cfea0dce0ea9079 data/minecraft/advancements/recipes/decorations/null_block_from_six_block_stonecutting.json
402c3b9f35aa1d36728c35b6d88f81ec916a9258 data/minecraft/advancements/recipes/decorations/null_block_from_three.json
4e5e4023b6792b3e3d6c104f36ad006dd831c9f3 data/minecraft/advancements/recipes/decorations/null_block_from_three_block_stonecutting.json
455ad1cc75d7f6450904af666092ea0b6bb4e269 data/minecraft/advancements/recipes/decorations/null_block_from_two.json
f7e687f4423236697fcd781e900a9d5196ca1e0a data/minecraft/advancements/recipes/decorations/null_block_from_two_block_stonecutting.json
d7c65c2b8b6f74fd0c1e07214d9ff3db4ae3a244 data/minecraft/advancements/recipes/decorations/null_block_from_zero.json
71ae111d2932383c3b7966d534e7bfa95c69c641 data/minecraft/advancements/recipes/decorations/null_block_from_zero_block_stonecutting.json
5d79be42303b8e2b0d84713a2485f2972896bc2e data/minecraft/advancements/recipes/decorations/one_block_from_null_block_stonecutting.json
a8bb69149bf56f65266048f49113e8bfcace20df data/minecraft/advancements/recipes/decorations/orange_concrete_barrier_from_orange_concrete_stonecutting.json
c608e9a7535111ac04c3089b6d5424864cf5c98f data/minecraft/advancements/recipes/decorations/pink_concrete_barrier_from_pink_concrete_stonecutting.json
087267c71104df590f327f04f9ae9fe01ac08040 data/minecraft/advancements/recipes/decorations/purple_concrete_barrier_from_purple_concrete_stonecutting.json
119d9dd8905626856cb59b26d0815c10f2e40d69 data/minecraft/advancements/recipes/decorations/red_concrete_barrier_from_red_concrete_stonecutting.json
6213b888b484ad8123a74afc47a14cedace1bb4d data/minecraft/advancements/recipes/decorations/seven_block_from_null_block_stonecutting.json
de325e7fdf8a37f32f084bc7f6d7a53af73aa866 data/minecraft/advancements/recipes/decorations/six_block_from_null_block_stonecutting.json
9595c0ef4f89842667a1e403584dece96df71e4b data/minecraft/advancements/recipes/decorations/three_block_from_null_block_stonecutting.json
e34e114a60fcb22fa9407aaa8266668caef15ed6 data/minecraft/advancements/recipes/decorations/two_block_from_null_block_stonecutting.json
7d37a1522046bc62fefdb5f7224ec772a848361a data/minecraft/advancements/recipes/decorations/white_concrete_barrier_from_white_concrete_stonecutting.json
89f1730fe4599d5dff277e96a12fbb801a9f8817 data/minecraft/advancements/recipes/decorations/yellow_concrete_barrier_from_yellow_concrete_stonecutting.json
352d3021d7e52bfa00241a78220559017ad182e4 data/minecraft/advancements/recipes/decorations/zero_block_from_null_block_stonecutting.json
74509d78941e40f838c14855f073a57d6c259d99 data/minecraft/advancements/recipes/misc/bullet.json
bcab91745212b58fb613dd964a0a29a1b6762a4a data/minecraft/advancements/recipes/misc/bullet_2.json
39bf663009249d5015a00b6cdee0dc51b9e8faf3 data/minecraft/advancements/recipes/misc/four_bullet_magazine.json
988342071daa9a07bb4aa6e8b0ce6104525861b5 data/minecraft/advancements/recipes/misc/nine_bullet_extended_magazine.json
e30880e316bfc47eef75009d9eb69761b05a3b09 data/minecraft/advancements/recipes/misc/six_bullet_bullet_strip.json
9dfdfa6ed2e15eeb22d6d383ca792baa3cd4f5ee data/minecraft/recipes/black_concrete_barrier_from_black_concrete_stonecutting.json
9ed82a62eae3b6e3e44f6f60f54a0ed07c0d7198 data/minecraft/recipes/blue_concrete_barrier_from_blue_concrete_stonecutting.json
01f7e79edf080e798fc99a9cde3324dad61235ad data/minecraft/recipes/brown_concrete_barrier_from_brown_concrete_stonecutting.json
c442101f0f0f88c0f013cadd62f10c0e1a7f0427 data/minecraft/recipes/bullet.json
f30b7b3e30b1e23123a91c6bf98f02d8cb749b26 data/minecraft/recipes/bullet_2.json
61cb876a155802c028a9441e947b1307a76f9bcf data/minecraft/recipes/cyan_concrete_barrier_from_cyan_concrete_stonecutting.json
4d33f077731631d294153dbda23f66993a4f1e18 data/minecraft/recipes/eight_block_from_null_block_stonecutting.json
5d78d4af8178604aa62bdb150d65738d4779fa43 data/minecraft/recipes/five_block_from_null_block_stonecutting.json
df67f0d9aa8e19a55dcec2e334948a6b3d2453a7 data/minecraft/recipes/four_block_from_null_block_stonecutting.json
cbd7c90c79e60b11a75231ead35732c17025e60e data/minecraft/recipes/four_bullet_magazine.json
a5c93874a3c32623c9bb8ff52f461cac7d64e713 data/minecraft/recipes/gray_concrete_barrier_from_gray_concrete_stonecutting.json
1224ce5fdb8123a0f569ebec701c40982b610c05 data/minecraft/recipes/green_concrete_barrier_from_green_concrete_stonecutting.json
8726a2e9f4ca65e70c27af6632aafb0eeba59450 data/minecraft/recipes/light_blue_concrete_barrier_from_light_blue_concrete_stonecutting.json
cc14f460974dd834c62070978dfcd6e73adcad0b data/minecraft/recipes/light_gray_concrete_barrier_from_light_gray_concrete_stonecutting.json
33b7e28e49299cd25e773ab55d403f8fbeffb9f4 data/minecraft/recipes/lime_concrete_barrier_from_lime_concrete_stonecutting.json
6509628d9fd935727020347cc9758366bfdb27f5 data/minecraft/recipes/magenta_concrete_barrier_from_magenta_concrete_stonecutting.json
3b4a8677b55ab60aaa0ece86cbccf093cab27313 data/minecraft/recipes/nine_block_from_null_block_stonecutting.json
f48b5a2b9354ed86b74803bb1179bb77c6a73802 data/minecraft/recipes/nine_bullet_extended_magazine.json
beda77c06b8f08fbb49ca12c5ea921cccd4e4a30 data/minecraft/recipes/null_block_from_eight.json
dbb7542a7031c9a7ac41ba4d950a815780416460 data/minecraft/recipes/null_block_from_eight_block_stonecutting.json
2d102c294456a2a2c503e35c1b430c01a313710a data/minecraft/recipes/null_block_from_five.json
f787ed65041c0003c5964446baf294db97abe3b5 data/minecraft/recipes/null_block_from_five_block_stonecutting.json
30ef13cad4b3a83da462888db2b9d03df0d12558 data/minecraft/recipes/null_block_from_four.json
b5abffcb464db91b737c6cb4049460f3361d4d8f data/minecraft/recipes/null_block_from_four_block_stonecutting.json
3b5593914ad202bf81ed586d8a959527ffa17c24 data/minecraft/recipes/null_block_from_nine.json
b3001c685dd6790f1fb8ac603d0e0441cb9fb905 data/minecraft/recipes/null_block_from_nine_block_stonecutting.json
c5106d01de5944a8bdb587ff4ac1c913971d8766 data/minecraft/recipes/null_block_from_null.json
64b43dcb776e4c57ce5ed4ecbef9737d19dd04b0 data/minecraft/recipes/null_block_from_one.json
68f3036ec1bd9e2f616f295d8991a047c9a7e61b data/minecraft/recipes/null_block_from_one_block_stonecutting.json
91bb7533c27f51261ad8fbad25ba4aaed2c5f77e data/minecraft/recipes/null_block_from_seven.json
6d4a20b083c7a368710aeec3455038157c8222ef data/minecraft/recipes/null_block_from_seven_block_stonecutting.json
5a17ddaa1b84ca6678c9782ca9f1bda7306b05f8 data/minecraft/recipes/null_block_from_six.json
228b3e9ea69d38baf34040cec3a9433497e19fd3 data/minecraft/recipes/null_block_from_six_block_stonecutting.json
97e1aa034aa903daa4bfeb83890c30221de25160 data/minecraft/recipes/null_block_from_three.json
f2a97adb6332a5c5601a60d4c5b34f43e3b6a56a data/minecraft/recipes/null_block_from_three_block_stonecutting.json
9c4b0a95db393185a12db089a46c420ccee60c9c data/minecraft/recipes/null_block_from_two.json
38d3571df1b0b08da53c42b54d36abac639779be data/minecraft/recipes/null_block_from_two_block_stonecutting.json
cd5c2c81f39365d21c12a0f23a59715eb986afa4 data/minecraft/recipes/null_block_from_zero.json
f959175acdd8d2c4086a441e3c66db9f03c51362 data/minecraft/recipes/null_block_from_zero_block_stonecutting.json
4827ffecf6bc64c9a7bb19cf544a259b18de8745 data/minecraft/recipes/one_block_from_null_block_stonecutting.json
b76992df0fe4da86cfb46f6bdc72217a34676969 data/minecraft/recipes/orange_concrete_barrier_from_orange_concrete_stonecutting.json
71e135c7b6d37150a85519272c5d37b011818e52 data/minecraft/recipes/pink_concrete_barrier_from_pink_concrete_stonecutting.json
c77b4d1f638ae2ca79a261ed098a36335ce3adaf data/minecraft/recipes/purple_concrete_barrier_from_purple_concrete_stonecutting.json
c1209bbcfbd0aa2c4736bead0e57f4202f437325 data/minecraft/recipes/red_concrete_barrier_from_red_concrete_stonecutting.json
94db4279d39cfaf8d725acc533ee373aece8924d data/minecraft/recipes/seven_block_from_null_block_stonecutting.json
86e66a0ece599c41259ebec14e3bae407b1e03d0 data/minecraft/recipes/six_block_from_null_block_stonecutting.json
c37e48280686f3bb8f38ce2cfdf2e17c224c999f data/minecraft/recipes/six_bullet_bullet_strip.json
7c71493c9d1ca9390c698fdb6607c73ccfaa0d0d data/minecraft/recipes/three_block_from_null_block_stonecutting.json
9bc5f122b5df805cde884f093ae07c7e7754fed1 data/minecraft/recipes/two_block_from_null_block_stonecutting.json
59649b1469011a06386657bc10f03e4bd2f6f416 data/minecraft/recipes/white_concrete_barrier_from_white_concrete_stonecutting.json
9d1d3b65fa4845ce713feeb602a3cc8ec68077eb data/minecraft/recipes/yellow_concrete_barrier_from_yellow_concrete_stonecutting.json
1f72d12fce65102b5dc8f7facd82ac90824e1fa4 data/minecraft/recipes/zero_block_from_null_block_stonecutting.json
d47984a56d0e2e269c1653049710f7c111d21e46 data/minecraft/tags/blocks/mineable/pickaxe.json
e3b1f573605d846515a967f0dc47f6cc194054ea data/modernlifepatch/advancements/recipes/decorations/large_mirror.json
2e19bc218d3414988ba9744dde0065b56d8568f1 data/modernlifepatch/advancements/recipes/decorations/massive_mirror.json
5ca06b9db5622369088059c82f7fbd9d6ebdb4e0 data/modernlifepatch/advancements/recipes/decorations/mirror.json
fc829f2210f09b9f82d8b81d75b2580b3c488b0b data/modernlifepatch/advancements/recipes/decorations/null_block.json
f530958baac72ec117593beb583cfb489caaf795 data/modernlifepatch/advancements/recipes/decorations/tall_mirror.json
bf4d8877efd5a353a8c5648b1591b8b2dfefbbf1 data/modernlifepatch/loot_tables/blocks/black_concrete_barrier.json
eb288f8befe58a79b99e6434a9a74582d7ff82e9 data/modernlifepatch/loot_tables/blocks/blue_concrete_barrier.json
4981d3f3d7fc871c75dd86b6789bf746785778f6 data/modernlifepatch/loot_tables/blocks/brown_concrete_barrier.json
7425488b52d53cc07764ffd3709a6f6bed354ee4 data/modernlifepatch/loot_tables/blocks/cyan_concrete_barrier.json
d35d9264b4f7731cefc683ad39daec2aec636066 data/modernlifepatch/loot_tables/blocks/eight_block.json
8ef9f5c639ba0511713c90f52da684f0fe919fa1 data/modernlifepatch/loot_tables/blocks/five_block.json
3a39987c3d3483690cc815d78ea96c681b69658b data/modernlifepatch/loot_tables/blocks/four_block.json
6d714ba20e8a2da0bc91da5b8e53d1de845faf6d data/modernlifepatch/loot_tables/blocks/gray_concrete_barrier.json
e9bc60db7154bcea4edca56be60310f3b0d8f0c2 data/modernlifepatch/loot_tables/blocks/green_concrete_barrier.json
9a71f6635f4ffa1441d5f3120a7423cf2fdc2f1f data/modernlifepatch/loot_tables/blocks/large_mirror.json
3deac6a3f1148853d913141b2c0bd1cf5542fe87 data/modernlifepatch/loot_tables/blocks/light_blue_concrete_barrier.json
0c29153dbf6a8c6ee37fc56802df85aed0c041ad data/modernlifepatch/loot_tables/blocks/light_gray_concrete_barrier.json
559f9c862b4a6ecf086c2946b72a1efcd407dbd1 data/modernlifepatch/loot_tables/blocks/lime_concrete_barrier.json
76cdbb6bf24ae5b993cbf9ba91d74dc7ff152fe2 data/modernlifepatch/loot_tables/blocks/magenta_concrete_barrier.json
4d0d15aa540872b16a0d933522a63822564772e6 data/modernlifepatch/loot_tables/blocks/massive_mirror.json
0d9ab0fd3bb217e2cba98c4d870a49aad11df4ea data/modernlifepatch/loot_tables/blocks/mirror.json
d4a9e3806e5f97d2a487ca075670c5b9642d4760 data/modernlifepatch/loot_tables/blocks/nine_block.json
7362523be89841d95d9b20d4232ab9207a899ece data/modernlifepatch/loot_tables/blocks/null_block.json
cede4ebab918a30713e597dffe6dd86799fd4fcc data/modernlifepatch/loot_tables/blocks/one_block.json
697a4d3060fc91aa01f5725a66f8d3a40e2a457c data/modernlifepatch/loot_tables/blocks/orange_concrete_barrier.json
dcd569bcf98678d6d178ce4c2219b99c29ff7d81 data/modernlifepatch/loot_tables/blocks/pink_concrete_barrier.json
2045d2300e33ccaf42f3891040bf4e783b1e2e20 data/modernlifepatch/loot_tables/blocks/purple_concrete_barrier.json
a31062ef078d6b139beee23831c74ac4a54fe648 data/modernlifepatch/loot_tables/blocks/quartz_block_barrier.json
03c386cc7a13a8ff1f2711bab72f5f851662ce50 data/modernlifepatch/loot_tables/blocks/red_concrete_barrier.json
a20e5e3d8073e1d2034a9a96fa0f263dd0ef4a16 data/modernlifepatch/loot_tables/blocks/seven_block.json
eb207ede0cd5b1d4af813e3786e948b6b3e6807e data/modernlifepatch/loot_tables/blocks/six_block.json
92586a7f38606e4deaced1f85675df90ae09be8f data/modernlifepatch/loot_tables/blocks/smooth_quartz_barrier.json
2e8f6832411b91b57fe84a63e0f3fe5c855cf732 data/modernlifepatch/loot_tables/blocks/tall_mirror.json
5b07669780ccf2a978eda629eacd177092545c2d data/modernlifepatch/loot_tables/blocks/three_block.json
50f0dac0b998cea6c66bb5fb2cb2e65581575bf4 data/modernlifepatch/loot_tables/blocks/two_block.json
496794c4adec4be9142ffa00f320386761bd7258 data/modernlifepatch/loot_tables/blocks/white_concrete_barrier.json
3d6aae2794ef1eda74ce2f884f6298ab89911a81 data/modernlifepatch/loot_tables/blocks/yellow_concrete_barrier.json
333eff73bb4c9b9c8480ec5864a74c0ce871d158 data/modernlifepatch/loot_tables/blocks/zero_block.json
991b44d89265fa18c6eae9d488fe266f992938f2 data/modernlifepatch/recipes/large_mirror.json
ab176773d07c8e9d6a798aa814cdc3b47ddc0594 data/modernlifepatch/recipes/massive_mirror.json
981f4ada5cbf1c4a387846415a916088ab305059 data/modernlifepatch/recipes/mirror.json
a456ccc4dec979138e22e97041e1a2bec362429c data/modernlifepatch/recipes/null_block.json
520f615353aca735689ae25ba5b9d2a0728f97da data/modernlifepatch/recipes/tall_mirror.json
1becf0e6fd8a314f27873a4de1920598eb7d478a data/modernlifepatch/tags/items/bathroom.json
f1f91d804e6d1aa4180d305eafaf354637df142c data/modernlifepatch/tags/items/bedchamber.json
2ff1e9179559bd54ea43126ebc50ca8f7523df11 data/modernlifepatch/tags/items/door.json
af16229018ba92227ad85a9ade9fa065972342f7 data/modernlifepatch/tags/items/general.json
f62a523d04996ded165884ea9cce7479084440c7 data/modernlifepatch/tags/items/kitchen.json
2d43417737bb5eef1033e2fa811f1cb2eaa6d5ba data/modernlifepatch/tags/items/lounge.json
f52a1e6b5c7e5a24d7ad539db24a62c8070f0deb data/modernlifepatch/tags/items/m_tool.json
07a4097653cddfaa91ae0216c77b5c308347abc8 data/modernlifepatch/tags/items/outside.json
b6ff00d8ce15e61ff485b731f56b5cddc417da2a data/modernlifepatch/tags/items/seat.json
e904c1d09a41897554fec842da01a7db12dc7906 data/modernlifepatch/tags/items/shelf.json
a0bc81b25f981791faee3853ac99ae0fce572349 data/modernlifepatch/tags/items/table.json

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/black_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/black_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/black_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/black_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/blue_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/blue_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/blue_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/blue_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/brown_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/brown_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/brown_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/brown_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/cyan_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/cyan_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/cyan_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/cyan_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/eight_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/eight_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/eight_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/eight_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/five_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/five_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/five_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/five_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/four_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/four_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/four_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/four_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/gray_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/gray_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/gray_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/gray_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/green_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/green_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/green_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/green_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/light_blue_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/light_blue_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/light_blue_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/light_blue_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/light_gray_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/light_gray_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/light_gray_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/light_gray_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/lime_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/lime_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/lime_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/lime_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/magenta_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/magenta_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/magenta_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/magenta_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/nine_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/nine_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/nine_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/nine_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/null_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/null_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/null_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/null_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/one_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/one_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/one_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/one_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/orange_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/orange_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/orange_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/orange_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/pink_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/pink_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/pink_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/pink_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/purple_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/purple_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/purple_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/purple_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/quartz_block_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/quartz_block_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/quartz_block_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/quartz_block_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/red_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/red_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/red_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/red_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/seven_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/seven_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/seven_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/seven_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/six_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/six_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/six_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/six_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/smooth_quartz_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/smooth_quartz_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/smooth_quartz_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/smooth_quartz_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/three_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/three_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/three_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/three_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/two_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/two_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/two_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/two_block",
"y": 90
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/white_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/white_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/white_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/white_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/yellow_concrete_barrier",
"y": 270
},
"facing=north": {
"model": "modernlifepatch:block/yellow_concrete_barrier",
"y": 180
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/yellow_concrete_barrier",
"y": 90
},
"facing=east": {
"model": "modernlifepatch:block/yellow_concrete_barrier",
"y": 270
}
}
}

View File

@ -1,9 +1,5 @@
{
"variants": {
"facing=east": {
"model": "modernlifepatch:block/zero_block",
"y": 90
},
"facing=north": {
"model": "modernlifepatch:block/zero_block"
},
@ -14,6 +10,10 @@
"facing=west": {
"model": "modernlifepatch:block/zero_block",
"y": 270
},
"facing=east": {
"model": "modernlifepatch:block/zero_block",
"y": 90
}
}
}

View File

@ -44,18 +44,12 @@
"gui.tag_filter.modernlifepatch.shelf": "Shelf",
"gui.tag_filter.modernlifepatch.table": "Table",
"itemGroup.modernlifepatch": "Modern Life Patch",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm1": "Silent Alarm",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm2": "Alarm 1",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm3": "Alarm 2",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm4": "Alarm 3",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm5": "Alarm 4",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.silent_alarm": "Silent Alarm",
"modernlifepatch.lang.battery.hover_text.0": "Right click to recharge flashlight (battery will be consumed)",
"modernlifepatch.lang.bicycle.hover_text.0": "Right click to deploy",
"modernlifepatch.lang.bookshelf.hover_text.1": "Right click tp place a book on the shelf",
"modernlifepatch.lang.bookshelf.hover_text.2": "Shift-right-click with an empty hand to remove a book",
"modernlifepatch.lang.camera.hover_text.1": "Sounds an alarm when powered by redstone;",
"modernlifepatch.lang.camera.hover_text.2": "right-click with empty mainhand to change alarm sound",
"modernlifepatch.lang.camera.hover_text.1": "%d/%d photos stored in memory card",
"modernlifepatch.lang.camera.hover_text.2": "* Does not break when durability hits 0",
"modernlifepatch.lang.camera.hover_text.3": "* Take to a printer to print your photos",
"modernlifepatch.lang.canvas.hover_text.block_size": "%f x %f ",
"modernlifepatch.lang.canvas.hover_text.custom_size": "Custom print",
@ -111,8 +105,7 @@
"modernlifepatch.lang.motorboat.hover_text.1": "Right click to deploy",
"modernlifepatch.lang.motorboat.hover_text.2": "Remaining fuel: %f%%",
"modernlifepatch.lang.motorboat.hover_text.3": "Refuel by using a gas can on the deployed boat",
"modernlifepatch.lang.need_rs_power_turn_off.hover_text.0": "Requires redstone power to turn off",
"modernlifepatch.lang.need_rs_power_turn_on.hover_text.0": "Requires redstone power to turn on",
"modernlifepatch.lang.need_rs_power.hover_text.0": "Requires redstone power to operate",
"modernlifepatch.lang.number_block.hover_text.1": "The number on the block defaults to red and can be recolored using dyes.",
"modernlifepatch.lang.number_block.hover_text.2": "Can be converted into other numbers via a Stonecutter.",
"modernlifepatch.lang.paved_road.hover_text.0": "Slightly increases movement speed of vehicles",
@ -121,7 +114,7 @@
"modernlifepatch.lang.power_receiver.hover_text.1": "Receives power on the selected channel from all transmitters",
"modernlifepatch.lang.power_receiver.hover_text.2": "Right click block to change current channel",
"modernlifepatch.lang.power_transmitter.hover_text.1": "Transmits power on the selected channel to all receivers",
"modernlifepatch.lang.resource_pack.modernlifepatch.description": "All of textures and models are created by BF_Meow_Do not use for other purposes without permission.",
"modernlifepatch.lang.resource_pack.modernlifepatch.description": "All of textures and models are created by BF_Meow_\uFF0CDo not use for other purposes without permission.",
"modernlifepatch.lang.road_marker.hover_text.1": "* Right click paved road to apply currently selected road marker",
"modernlifepatch.lang.road_marker.hover_text.2": "* Right click elsewhere to toggle between available road markers",
"modernlifepatch.lang.seed_spreader.hover_text.0": "Automatically disperses seeds that are put inside of it",
@ -132,5 +125,5 @@
"modernlifepatch.lang.wall_shelf.hover_text.1": "Right click tp place an item on the shelf",
"modernlifepatch.lang.wall_shelf.hover_text.2": "Shift-right-click with an empty hand to remove an item",
"modernlifepatch.unknown": "Unknown",
"resource.modernlifepatch.modern_life_patch": "§b§lModern Life §fExclusive Materials"
"resource.modernlifepatch.modern_life_patch": "\u00A7b\u00A7lModern Life \u00A7fExclusive Materials"
}

View File

@ -1,136 +1,129 @@
{
"block.modernlifepatch.black_concrete_barrier": "黑色混凝土栅栏",
"block.modernlifepatch.blue_concrete_barrier": "蓝色混凝土栅栏",
"block.modernlifepatch.brown_concrete_barrier": "棕色混凝土栅栏",
"block.modernlifepatch.cyan_concrete_barrier": "青色混凝土栅栏",
"block.modernlifepatch.eight_block": "八",
"block.modernlifepatch.five_block": "五",
"block.modernlifepatch.four_block": "四",
"block.modernlifepatch.gray_concrete_barrier": "灰色混凝土栅栏",
"block.modernlifepatch.green_concrete_barrier": "绿色混凝土栅栏",
"block.modernlifepatch.large_mirror": "大型镜子",
"block.modernlifepatch.light_blue_concrete_barrier": "淡蓝色混凝土栅栏",
"block.modernlifepatch.light_gray_concrete_barrier": "淡灰色混凝土栅栏",
"block.modernlifepatch.lime_concrete_barrier": "黄绿色混凝土栅栏",
"block.modernlifepatch.magenta_concrete_barrier": "品红色混凝土栅栏",
"block.modernlifepatch.massive_mirror": "超大型镜子",
"block.modernlifepatch.mirror": "镜子",
"block.modernlifepatch.nine_block": "九",
"block.modernlifepatch.null_block": "空值",
"block.modernlifepatch.one_block": "一",
"block.modernlifepatch.orange_concrete_barrier": "橙色混凝土栅栏",
"block.modernlifepatch.pink_concrete_barrier": "粉红色混凝土栅栏",
"block.modernlifepatch.purple_concrete_barrier": "紫色混凝土栅栏",
"block.modernlifepatch.quartz_block_barrier": "石英栅栏",
"block.modernlifepatch.red_concrete_barrier": "红色混凝土栅栏",
"block.modernlifepatch.seven_block": "七",
"block.modernlifepatch.six_block": "六",
"block.modernlifepatch.smooth_quartz_barrier": "平滑石英栅栏",
"block.modernlifepatch.tall_mirror": "高镜子",
"block.modernlifepatch.three_block": "三",
"block.modernlifepatch.two_block": "二",
"block.modernlifepatch.white_concrete_barrier": "白色混凝土栅栏",
"block.modernlifepatch.yellow_concrete_barrier": "黄色混凝土栅栏",
"block.modernlifepatch.zero_block": "零",
"gui.tag_filter.modernlifepatch.bathroom": "卫生间",
"gui.tag_filter.modernlifepatch.bedchamber": "寝室",
"gui.tag_filter.modernlifepatch.door": "门",
"gui.tag_filter.modernlifepatch.general": "普通",
"gui.tag_filter.modernlifepatch.kitchen": "厨房",
"gui.tag_filter.modernlifepatch.lounge": "客厅",
"gui.tag_filter.modernlifepatch.m_tool": "工具",
"gui.tag_filter.modernlifepatch.outside": "户外",
"gui.tag_filter.modernlifepatch.seat": "坐具",
"gui.tag_filter.modernlifepatch.shelf": "架子",
"gui.tag_filter.modernlifepatch.table": "桌子",
"itemGroup.modernlifepatch": "摩登生活补丁",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm1": "静音警报",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm2": "警报1",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm3": "警报2",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm4": "警报3",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.alarm5": "警报4",
"modernlifepatch.lang.alarm_sound_type.modernlifepatch.silent_alarm": "静音警报",
"modernlifepatch.lang.battery.hover_text.0": "右键消耗为手电筒更换电池",
"modernlifepatch.lang.bicycle.hover_text.0": "右键放置",
"modernlifepatch.lang.bookshelf.hover_text.1": "右键以放置书在书架上",
"modernlifepatch.lang.bookshelf.hover_text.2": "空手按住Shift键+右键即可取下书",
"modernlifepatch.lang.camera.hover_text.1": "红石充能时发出警报",
"modernlifepatch.lang.camera.hover_text.2": "主手空手右击以改变警报声音",
"modernlifepatch.lang.camera.hover_text.3": "* 提供打印机把所拍照冲洗出来",
"block.modernlifepatch.black_concrete_barrier": "\u9ED1\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.blue_concrete_barrier": "\u84DD\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.brown_concrete_barrier": "\u68D5\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.cyan_concrete_barrier": "\u9752\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.eight_block": "\u516B",
"block.modernlifepatch.five_block": "\u4E94",
"block.modernlifepatch.four_block": "\u56DB",
"block.modernlifepatch.gray_concrete_barrier": "\u7070\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.green_concrete_barrier": "\u7EFF\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.large_mirror": "\u5927\u578B\u955C\u5B50",
"block.modernlifepatch.light_blue_concrete_barrier": "\u6DE1\u84DD\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.light_gray_concrete_barrier": "\u6DE1\u7070\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.lime_concrete_barrier": "\u9EC4\u7EFF\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.magenta_concrete_barrier": "\u54C1\u7EA2\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.massive_mirror": "\u8D85\u5927\u578B\u955C\u5B50",
"block.modernlifepatch.mirror": "\u955C\u5B50",
"block.modernlifepatch.nine_block": "\u4E5D",
"block.modernlifepatch.null_block": "\u7A7A\u503C",
"block.modernlifepatch.one_block": "\u4E00",
"block.modernlifepatch.orange_concrete_barrier": "\u6A59\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.pink_concrete_barrier": "\u7C89\u7EA2\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.purple_concrete_barrier": "\u7D2B\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.quartz_block_barrier": "\u77F3\u82F1\u6805\u680F",
"block.modernlifepatch.red_concrete_barrier": "\u7EA2\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.seven_block": "\u4E03",
"block.modernlifepatch.six_block": "\u516D",
"block.modernlifepatch.smooth_quartz_barrier": "\u5E73\u6ED1\u77F3\u82F1\u6805\u680F",
"block.modernlifepatch.tall_mirror": "\u9AD8\u955C\u5B50",
"block.modernlifepatch.three_block": "\u4E09",
"block.modernlifepatch.two_block": "\u4E8C",
"block.modernlifepatch.white_concrete_barrier": "\u767D\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.yellow_concrete_barrier": "\u9EC4\u8272\u6DF7\u51DD\u571F\u6805\u680F",
"block.modernlifepatch.zero_block": "\u96F6",
"gui.tag_filter.modernlifepatch.bathroom": "\u536B\u751F\u95F4",
"gui.tag_filter.modernlifepatch.bedchamber": "\u5BDD\u5BA4",
"gui.tag_filter.modernlifepatch.door": "\u95E8",
"gui.tag_filter.modernlifepatch.general": "\u666E\u901A",
"gui.tag_filter.modernlifepatch.kitchen": "\u53A8\u623F",
"gui.tag_filter.modernlifepatch.lounge": "\u5BA2\u5385",
"gui.tag_filter.modernlifepatch.m_tool": "\u5DE5\u5177",
"gui.tag_filter.modernlifepatch.outside": "\u6237\u5916",
"gui.tag_filter.modernlifepatch.seat": "\u5750\u5177",
"gui.tag_filter.modernlifepatch.shelf": "\u67B6\u5B50",
"gui.tag_filter.modernlifepatch.table": "\u684C\u5B50",
"itemGroup.modernlifepatch": "\u6469\u767B\u751F\u6D3B\u8865\u4E01",
"modernlifepatch.lang.battery.hover_text.0": "\u53F3\u952E\u6D88\u8017\u4E3A\u624B\u7535\u7B52\u66F4\u6362\u7535\u6C60",
"modernlifepatch.lang.bicycle.hover_text.0": "\u53F3\u952E\u653E\u7F6E",
"modernlifepatch.lang.bookshelf.hover_text.1": "\u53F3\u952E\u4EE5\u653E\u7F6E\u4E66\u5728\u4E66\u67B6\u4E0A",
"modernlifepatch.lang.bookshelf.hover_text.2": "\u7A7A\u624B\u6309\u4F4FShift\u952E+\u53F3\u952E\u5373\u53EF\u53D6\u4E0B\u4E66",
"modernlifepatch.lang.camera.hover_text.1": "\u5185\u5B58\u5361\u91CC\u7167\u7247\u6570: %d/%d",
"modernlifepatch.lang.camera.hover_text.2": "* \u5F53\u8010\u4E45\u6389\u52300\u65F6\uFF0C\u4E5F\u4E0D\u4F1A\u635F\u574F",
"modernlifepatch.lang.camera.hover_text.3": "* \u63D0\u4F9B\u6253\u5370\u673A\u628A\u6240\u62CD\u7167\u51B2\u6D17\u51FA\u6765",
"modernlifepatch.lang.canvas.hover_text.block_size": "%f x %f",
"modernlifepatch.lang.canvas.hover_text.custom_size": "自定义尺寸画作",
"modernlifepatch.lang.canvas.hover_text.desc_completed": "艺术品",
"modernlifepatch.lang.canvas.hover_text.desc_empty": "可用画架来创作",
"modernlifepatch.lang.canvas.hover_text.extra_large_size": "超大型尺寸画作",
"modernlifepatch.lang.canvas.hover_text.extra_large_square_size": "超大型方寸画作",
"modernlifepatch.lang.canvas.hover_text.large_size": "大型尺寸画作",
"modernlifepatch.lang.canvas.hover_text.large_square_size": "大型方寸画作",
"modernlifepatch.lang.canvas.hover_text.massive_size": "巨大尺寸的画作",
"modernlifepatch.lang.canvas.hover_text.massive_square_size": "巨大方寸画作",
"modernlifepatch.lang.canvas.hover_text.normal_size": "常规尺寸画作",
"modernlifepatch.lang.canvas.hover_text.custom_size": "\u81EA\u5B9A\u4E49\u5C3A\u5BF8\u753B\u4F5C",
"modernlifepatch.lang.canvas.hover_text.desc_completed": "\u827A\u672F\u54C1",
"modernlifepatch.lang.canvas.hover_text.desc_empty": "\u53EF\u7528\u753B\u67B6\u6765\u521B\u4F5C",
"modernlifepatch.lang.canvas.hover_text.extra_large_size": "\u8D85\u5927\u578B\u5C3A\u5BF8\u753B\u4F5C",
"modernlifepatch.lang.canvas.hover_text.extra_large_square_size": "\u8D85\u5927\u578B\u65B9\u5BF8\u753B\u4F5C",
"modernlifepatch.lang.canvas.hover_text.large_size": "\u5927\u578B\u5C3A\u5BF8\u753B\u4F5C",
"modernlifepatch.lang.canvas.hover_text.large_square_size": "\u5927\u578B\u65B9\u5BF8\u753B\u4F5C",
"modernlifepatch.lang.canvas.hover_text.massive_size": "\u5DE8\u5927\u5C3A\u5BF8\u7684\u753B\u4F5C",
"modernlifepatch.lang.canvas.hover_text.massive_square_size": "\u5DE8\u5927\u65B9\u5BF8\u753B\u4F5C",
"modernlifepatch.lang.canvas.hover_text.normal_size": "\u5E38\u89C4\u5C3A\u5BF8\u753B\u4F5C",
"modernlifepatch.lang.canvas.hover_text.offset": "(%f,%f)",
"modernlifepatch.lang.canvas.hover_text.pixels_size": "%d x %d 像素",
"modernlifepatch.lang.canvas.hover_text.pixels_size": "%d x %d \u50CF\u7D20",
"modernlifepatch.lang.canvas.hover_text.unique_id": "ID = %d",
"modernlifepatch.lang.chainsaw.hover_text.1": "右键使用",
"modernlifepatch.lang.chainsaw.hover_text.2": "* 一种极其高效砍树方案",
"modernlifepatch.lang.chess.modernlifepatch.bishop": "象",
"modernlifepatch.lang.chess.modernlifepatch.king": "国王",
"modernlifepatch.lang.chess.modernlifepatch.knight": "骑士",
"modernlifepatch.lang.chess.modernlifepatch.pawn": "士兵",
"modernlifepatch.lang.chess.modernlifepatch.queen": "皇后",
"modernlifepatch.lang.chess.modernlifepatch.rook": "车",
"modernlifepatch.lang.chess_board.hover_text.0": "放置后使用即可开始一场新游戏!",
"modernlifepatch.lang.easel.hover_text.0": "放置(帆布)画布在其上,即可开始绘画",
"modernlifepatch.lang.extractor.hover_text.0": "从其吸取端处的箱子或空间中取出物品",
"modernlifepatch.lang.flashlight.hover_text.1": "右键使用",
"modernlifepatch.lang.flashlight.hover_text.2": "* 使用它会耗尽电池,但不会损坏",
"modernlifepatch.lang.flashlight.hover_text.3": "* 电量耗尽前剩余%s分钟",
"modernlifepatch.lang.flashlight.hover_text.4": "* 一节满电电池可以为其提供至少%s分钟的照亮时间",
"modernlifepatch.lang.flashlight.hover_text.5": "* 通过电池来修复耐久",
"modernlifepatch.lang.gui.button.modernlifepatch.disable_filters": "禁用过滤器",
"modernlifepatch.lang.gui.button.modernlifepatch.enable_filters": "启用过滤器",
"modernlifepatch.lang.gui.button.modernlifepatch.scroll_filter_down": "向下",
"modernlifepatch.lang.gui.button.modernlifepatch.scroll_filter_up": "向上",
"modernlifepatch.lang.guitar.hover_text.1": "右键使用",
"modernlifepatch.lang.guitar.hover_text.2": "* 标准调谐EADGBE",
"modernlifepatch.lang.guitar_amplifier.hover_text.0": "在附近弹奏吉他以增加失真效果",
"modernlifepatch.lang.handgun.hover_text.1": "左键开火",
"modernlifepatch.lang.handgun.hover_text.2": "右键聚焦对准",
"modernlifepatch.lang.handgun.hover_text.3": "* 需要至少一个弹匣来发射",
"modernlifepatch.lang.menu.kitchen_cabinet": "厨房柜子",
"modernlifepatch.lang.menu.kitchen_drawer_cabinet": "厨房抽屉柜",
"modernlifepatch.lang.menu.night_stand": "床头柜",
"modernlifepatch.lang.menu.photo_copier": "复印机",
"modernlifepatch.lang.menu.print_size": "打印尺寸",
"modernlifepatch.lang.menu.printer": "打印机",
"modernlifepatch.lang.menu.radiator": "蒸汽散热器",
"modernlifepatch.lang.menu.refrigerator": "冰箱",
"modernlifepatch.lang.menu.seed_spreader": "播种器",
"modernlifepatch.lang.menu.trash_can": "垃圾桶",
"modernlifepatch.lang.metal_grate.hover_text.0": "允许水与物品自由地穿过",
"modernlifepatch.lang.motorboat.hover_text.1": "右键放置",
"modernlifepatch.lang.motorboat.hover_text.2": "燃料剩余量: %f%%",
"modernlifepatch.lang.motorboat.hover_text.3": "对船使用汽油罐来加油",
"modernlifepatch.lang.need_rs_power_turn_off.hover_text.0": "需要红石充能才能关闭",
"modernlifepatch.lang.need_rs_power_turn_on.hover_text.0": "需要红石充能才能开启",
"modernlifepatch.lang.number_block.hover_text.1": "数字方块数字颜色默认为红色,可以通过使用染料来改变其颜色。",
"modernlifepatch.lang.number_block.hover_text.2": "数字方块可以通过切石机换成其它数字。",
"modernlifepatch.lang.paved_road.hover_text.0": "载具在该路上行驶,移速会有所提升",
"modernlifepatch.lang.photocopier.hover_text.1": "可以用于照片或画作的复制",
"modernlifepatch.lang.photocopier.hover_text.2": " * 需要纸",
"modernlifepatch.lang.power_receiver.hover_text.1": "从所有能量发射器中去接收所选工作频道的能量",
"modernlifepatch.lang.power_receiver.hover_text.2": "右键方块打开界面,来切换工作频道",
"modernlifepatch.lang.power_transmitter.hover_text.1": "将红石信号传输给对应频道的所有能量接收器",
"modernlifepatch.lang.resource_pack.modernlifepatch.description": "所有材质和模型均由 白帆小喵BF_Meow_ 绘制。未经允许,请勿用作他用。",
"modernlifepatch.lang.road_marker.hover_text.1": "* 右键单击已铺设的道路以应用当前选定的道路标记",
"modernlifepatch.lang.road_marker.hover_text.2": "* 右键单击其他位置以在可用道路标记之间切换",
"modernlifepatch.lang.seed_spreader.hover_text.0": "自动播种机器里的种子",
"modernlifepatch.lang.steam_radiator.hover_text.0": "右键已放置的散热器,即可激活",
"modernlifepatch.lang.store_18.hover_text.0": "可存储18组物品",
"modernlifepatch.lang.trash_can.hover_text.0": "当垃圾桶已满时,进入垃圾桶的物品将被删除",
"modernlifepatch.lang.turn_table.hover_text.0": "当有红石充能时顺时针旋转",
"modernlifepatch.lang.wall_shelf.hover_text.1": "右键以放置物品在墙架上",
"modernlifepatch.lang.wall_shelf.hover_text.2": "空手按住Shift键+右键即可取下物品",
"modernlifepatch.unknown": "未知",
"resource.modernlifepatch.modern_life_patch": "§b§l摩登生活 §f专属材质"
"modernlifepatch.lang.chainsaw.hover_text.1": "\u53F3\u952E\u4F7F\u7528",
"modernlifepatch.lang.chainsaw.hover_text.2": "* \u4E00\u79CD\u6781\u5176\u9AD8\u6548\u780D\u6811\u65B9\u6848",
"modernlifepatch.lang.chess.modernlifepatch.bishop": "\u8C61",
"modernlifepatch.lang.chess.modernlifepatch.king": "\u56FD\u738B",
"modernlifepatch.lang.chess.modernlifepatch.knight": "\u9A91\u58EB",
"modernlifepatch.lang.chess.modernlifepatch.pawn": "\u58EB\u5175",
"modernlifepatch.lang.chess.modernlifepatch.queen": "\u7687\u540E",
"modernlifepatch.lang.chess.modernlifepatch.rook": "\u8F66",
"modernlifepatch.lang.chess_board.hover_text.0": "\u653E\u7F6E\u540E\u4F7F\u7528\u5373\u53EF\u5F00\u59CB\u4E00\u573A\u65B0\u6E38\u620F!",
"modernlifepatch.lang.easel.hover_text.0": "\u653E\u7F6E(\u5E06\u5E03)\u753B\u5E03\u5728\u5176\u4E0A\uFF0C\u5373\u53EF\u5F00\u59CB\u7ED8\u753B",
"modernlifepatch.lang.extractor.hover_text.0": "\u4ECE\u5176\u5438\u53D6\u7AEF\u5904\u7684\u7BB1\u5B50\u6216\u7A7A\u95F4\u4E2D\u53D6\u51FA\u7269\u54C1",
"modernlifepatch.lang.flashlight.hover_text.1": "\u53F3\u952E\u4F7F\u7528",
"modernlifepatch.lang.flashlight.hover_text.2": "* \u4F7F\u7528\u5B83\u4F1A\u8017\u5C3D\u7535\u6C60\uFF0C\u4F46\u4E0D\u4F1A\u635F\u574F",
"modernlifepatch.lang.flashlight.hover_text.3": "* \u7535\u91CF\u8017\u5C3D\u524D\u5269\u4F59%s\u5206\u949F",
"modernlifepatch.lang.flashlight.hover_text.4": "* \u4E00\u8282\u6EE1\u7535\u7535\u6C60\u53EF\u4EE5\u4E3A\u5176\u63D0\u4F9B\u81F3\u5C11%s\u5206\u949F\u7684\u7167\u4EAE\u65F6\u95F4",
"modernlifepatch.lang.flashlight.hover_text.5": "* \u901A\u8FC7\u7535\u6C60\u6765\u4FEE\u590D\u8010\u4E45",
"modernlifepatch.lang.gui.button.modernlifepatch.disable_filters": "\u7981\u7528\u8FC7\u6EE4\u5668",
"modernlifepatch.lang.gui.button.modernlifepatch.enable_filters": "\u542F\u7528\u8FC7\u6EE4\u5668",
"modernlifepatch.lang.gui.button.modernlifepatch.scroll_filter_down": "\u5411\u4E0B",
"modernlifepatch.lang.gui.button.modernlifepatch.scroll_filter_up": "\u5411\u4E0A",
"modernlifepatch.lang.guitar.hover_text.1": "\u53F3\u952E\u4F7F\u7528",
"modernlifepatch.lang.guitar.hover_text.2": "* \u6807\u51C6\u8C03\u8C10\uFF08EADGBE\uFF09",
"modernlifepatch.lang.guitar_amplifier.hover_text.0": "\u5728\u9644\u8FD1\u5F39\u594F\u5409\u4ED6\u4EE5\u589E\u52A0\u5931\u771F\u6548\u679C",
"modernlifepatch.lang.handgun.hover_text.1": "\u5DE6\u952E\u5F00\u706B",
"modernlifepatch.lang.handgun.hover_text.2": "\u53F3\u952E\u805A\u7126\u5BF9\u51C6",
"modernlifepatch.lang.handgun.hover_text.3": "* \u9700\u8981\u81F3\u5C11\u4E00\u4E2A\u5F39\u5323\u6765\u53D1\u5C04",
"modernlifepatch.lang.menu.kitchen_cabinet": "\u53A8\u623F\u67DC\u5B50",
"modernlifepatch.lang.menu.kitchen_drawer_cabinet": "\u53A8\u623F\u62BD\u5C49\u67DC",
"modernlifepatch.lang.menu.night_stand": "\u5E8A\u5934\u67DC",
"modernlifepatch.lang.menu.photo_copier": "\u590D\u5370\u673A",
"modernlifepatch.lang.menu.print_size": "\u6253\u5370\u5C3A\u5BF8",
"modernlifepatch.lang.menu.printer": "\u6253\u5370\u673A",
"modernlifepatch.lang.menu.radiator": "\u84B8\u6C7D\u6563\u70ED\u5668",
"modernlifepatch.lang.menu.refrigerator": "\u51B0\u7BB1",
"modernlifepatch.lang.menu.seed_spreader": "\u64AD\u79CD\u5668",
"modernlifepatch.lang.menu.trash_can": "\u5783\u573E\u6876",
"modernlifepatch.lang.metal_grate.hover_text.0": "\u5141\u8BB8\u6C34\u4E0E\u7269\u54C1\u81EA\u7531\u5730\u7A7F\u8FC7",
"modernlifepatch.lang.motorboat.hover_text.1": "\u53F3\u952E\u653E\u7F6E",
"modernlifepatch.lang.motorboat.hover_text.2": "\u71C3\u6599\u5269\u4F59\u91CF: %f%%",
"modernlifepatch.lang.motorboat.hover_text.3": "\u5BF9\u8239\u4F7F\u7528\u6C7D\u6CB9\u7F50\u6765\u52A0\u6CB9",
"modernlifepatch.lang.need_rs_power.hover_text.0": "\u9700\u8981\u7EA2\u77F3\u5145\u80FD",
"modernlifepatch.lang.number_block.hover_text.1": "\u6570\u5B57\u65B9\u5757\u6570\u5B57\u989C\u8272\u9ED8\u8BA4\u4E3A\u7EA2\u8272\uFF0C\u53EF\u4EE5\u901A\u8FC7\u4F7F\u7528\u67D3\u6599\u6765\u6539\u53D8\u5176\u989C\u8272\u3002",
"modernlifepatch.lang.number_block.hover_text.2": "\u6570\u5B57\u65B9\u5757\u53EF\u4EE5\u901A\u8FC7\u5207\u77F3\u673A\u6362\u6210\u5176\u5B83\u6570\u5B57\u3002",
"modernlifepatch.lang.paved_road.hover_text.0": "\u8F7D\u5177\u5728\u8BE5\u8DEF\u4E0A\u884C\u9A76\uFF0C\u79FB\u901F\u4F1A\u6709\u6240\u63D0\u5347",
"modernlifepatch.lang.photocopier.hover_text.1": "\u53EF\u4EE5\u7528\u4E8E\u7167\u7247\u6216\u753B\u4F5C\u7684\u590D\u5236",
"modernlifepatch.lang.photocopier.hover_text.2": " * \u9700\u8981\u7EB8",
"modernlifepatch.lang.power_receiver.hover_text.1": "\u4ECE\u6240\u6709\u80FD\u91CF\u53D1\u5C04\u5668\u4E2D\u53BB\u63A5\u6536\u6240\u9009\u5DE5\u4F5C\u9891\u9053\u7684\u80FD\u91CF",
"modernlifepatch.lang.power_receiver.hover_text.2": "\u53F3\u952E\u65B9\u5757\u6253\u5F00\u754C\u9762\uFF0C\u6765\u5207\u6362\u5DE5\u4F5C\u9891\u9053",
"modernlifepatch.lang.power_transmitter.hover_text.1": "\u5C06\u7EA2\u77F3\u4FE1\u53F7\u4F20\u8F93\u7ED9\u5BF9\u5E94\u9891\u9053\u7684\u6240\u6709\u80FD\u91CF\u63A5\u6536\u5668",
"modernlifepatch.lang.resource_pack.modernlifepatch.description": "\u6240\u6709\u6750\u8D28\u548C\u6A21\u578B\u5747\u7531 \u767D\u5E06\u5C0F\u55B5BF_Meow_ \u7ED8\u5236\u3002\u672A\u7ECF\u5141\u8BB8\uFF0C\u8BF7\u52FF\u7528\u4F5C\u4ED6\u7528\u3002",
"modernlifepatch.lang.road_marker.hover_text.1": "* \u53F3\u952E\u5355\u51FB\u5DF2\u94FA\u8BBE\u7684\u9053\u8DEF\u4EE5\u5E94\u7528\u5F53\u524D\u9009\u5B9A\u7684\u9053\u8DEF\u6807\u8BB0",
"modernlifepatch.lang.road_marker.hover_text.2": "* \u53F3\u952E\u5355\u51FB\u5176\u4ED6\u4F4D\u7F6E\u4EE5\u5728\u53EF\u7528\u9053\u8DEF\u6807\u8BB0\u4E4B\u95F4\u5207\u6362",
"modernlifepatch.lang.seed_spreader.hover_text.0": "\u81EA\u52A8\u64AD\u79CD\u673A\u5668\u91CC\u7684\u79CD\u5B50",
"modernlifepatch.lang.steam_radiator.hover_text.0": "\u53F3\u952E\u5DF2\u653E\u7F6E\u7684\u6563\u70ED\u5668\uFF0C\u5373\u53EF\u6FC0\u6D3B",
"modernlifepatch.lang.store_18.hover_text.0": "\u53EF\u5B58\u50A818\u7EC4\u7269\u54C1",
"modernlifepatch.lang.trash_can.hover_text.0": "\u5F53\u5783\u573E\u6876\u5DF2\u6EE1\u65F6\uFF0C\u8FDB\u5165\u5783\u573E\u6876\u7684\u7269\u54C1\u5C06\u88AB\u5220\u9664",
"modernlifepatch.lang.turn_table.hover_text.0": "\u5F53\u6709\u7EA2\u77F3\u5145\u80FD\u65F6\u987A\u65F6\u9488\u65CB\u8F6C",
"modernlifepatch.lang.wall_shelf.hover_text.1": "\u53F3\u952E\u4EE5\u653E\u7F6E\u7269\u54C1\u5728\u5899\u67B6\u4E0A",
"modernlifepatch.lang.wall_shelf.hover_text.2": "\u7A7A\u624B\u6309\u4F4FShift\u952E+\u53F3\u952E\u5373\u53EF\u53D6\u4E0B\u7269\u54C1",
"modernlifepatch.unknown": "\u672A\u77E5",
"resource.modernlifepatch.modern_life_patch": "\u00A7b\u00A7l\u6469\u767B\u751F\u6D3B \u00A7f\u4E13\u5C5E\u6750\u8D28"
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:black_concrete_barrier_from_black_concrete_stonecutting"
]
},
"criteria": {
"has_black_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:black_concrete_barrier_from_black_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_black_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:black_concrete_barrier_from_black_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:blue_concrete_barrier_from_blue_concrete_stonecutting"
]
},
"criteria": {
"has_blue_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:blue_concrete_barrier_from_blue_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_blue_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:blue_concrete_barrier_from_blue_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:brown_concrete_barrier_from_brown_concrete_stonecutting"
]
},
"criteria": {
"has_brown_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:brown_concrete_barrier_from_brown_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_brown_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:brown_concrete_barrier_from_brown_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:cyan_concrete_barrier_from_cyan_concrete_stonecutting"
]
},
"criteria": {
"has_cyan_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:cyan_concrete_barrier_from_cyan_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_cyan_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:cyan_concrete_barrier_from_cyan_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:eight_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:eight_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:eight_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:five_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:five_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:five_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:four_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:four_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:four_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:gray_concrete_barrier_from_gray_concrete_stonecutting"
]
},
"criteria": {
"has_gray_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:gray_concrete_barrier_from_gray_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_gray_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:gray_concrete_barrier_from_gray_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:green_concrete_barrier_from_green_concrete_stonecutting"
]
},
"criteria": {
"has_green_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:green_concrete_barrier_from_green_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_green_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:green_concrete_barrier_from_green_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:light_blue_concrete_barrier_from_light_blue_concrete_stonecutting"
]
},
"criteria": {
"has_light_blue_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:light_blue_concrete_barrier_from_light_blue_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_light_blue_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:light_blue_concrete_barrier_from_light_blue_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:light_gray_concrete_barrier_from_light_gray_concrete_stonecutting"
]
},
"criteria": {
"has_light_gray_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:light_gray_concrete_barrier_from_light_gray_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_light_gray_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:light_gray_concrete_barrier_from_light_gray_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:lime_concrete_barrier_from_lime_concrete_stonecutting"
]
},
"criteria": {
"has_lime_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:lime_concrete_barrier_from_lime_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_lime_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:lime_concrete_barrier_from_lime_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:magenta_concrete_barrier_from_magenta_concrete_stonecutting"
]
},
"criteria": {
"has_magenta_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:magenta_concrete_barrier_from_magenta_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_magenta_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:magenta_concrete_barrier_from_magenta_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:nine_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:nine_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:nine_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_eight"
]
},
"criteria": {
"has_eight_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_eight"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_eight_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_eight"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_eight_block_stonecutting"
]
},
"criteria": {
"has_eight_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_eight_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_eight_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_eight_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_five"
]
},
"criteria": {
"has_five_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_five"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_five_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_five"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_five_block_stonecutting"
]
},
"criteria": {
"has_five_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_five_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_five_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_five_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_four"
]
},
"criteria": {
"has_four_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_four"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_four_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_four"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_four_block_stonecutting"
]
},
"criteria": {
"has_four_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_four_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_four_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_four_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_nine"
]
},
"criteria": {
"has_nine_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_nine"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_nine_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_nine"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_nine_block_stonecutting"
]
},
"criteria": {
"has_nine_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_nine_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_nine_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_nine_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_null"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_null"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_null"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_one"
]
},
"criteria": {
"has_one_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_one"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_one_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_one"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_one_block_stonecutting"
]
},
"criteria": {
"has_one_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_one_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_one_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_one_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_seven"
]
},
"criteria": {
"has_seven_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_seven"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_seven_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_seven"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_seven_block_stonecutting"
]
},
"criteria": {
"has_seven_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_seven_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_seven_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_seven_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_six"
]
},
"criteria": {
"has_six_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_six"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_six_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_six"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_six_block_stonecutting"
]
},
"criteria": {
"has_six_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_six_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_six_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_six_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,13 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_three"
]
},
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:null_block_from_three"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_three_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -16,8 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_three"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_three_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_three"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,13 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_three_block_stonecutting"
]
},
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:null_block_from_three_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_three_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -16,8 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_three_block_stonecutting"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_three_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_three_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,13 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_two"
]
},
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:null_block_from_two"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_two_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -16,8 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_two"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_two_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_two"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,13 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_two_block_stonecutting"
]
},
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:null_block_from_two_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_two_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -16,8 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_two_block_stonecutting"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_two_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_two_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,13 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_zero"
]
},
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:null_block_from_zero"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_zero_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -16,8 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_zero"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_zero_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_zero"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,13 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:null_block_from_zero_block_stonecutting"
]
},
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:null_block_from_zero_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_zero_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -16,8 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:null_block_from_zero_block_stonecutting"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_zero_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:null_block_from_zero_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:one_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:one_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:one_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:orange_concrete_barrier_from_orange_concrete_stonecutting"
]
},
"criteria": {
"has_orange_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:orange_concrete_barrier_from_orange_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_orange_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:orange_concrete_barrier_from_orange_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:pink_concrete_barrier_from_pink_concrete_stonecutting"
]
},
"criteria": {
"has_pink_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:pink_concrete_barrier_from_pink_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_pink_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:pink_concrete_barrier_from_pink_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:purple_concrete_barrier_from_purple_concrete_stonecutting"
]
},
"criteria": {
"has_purple_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:purple_concrete_barrier_from_purple_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_purple_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:purple_concrete_barrier_from_purple_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:red_concrete_barrier_from_red_concrete_stonecutting"
]
},
"criteria": {
"has_red_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:red_concrete_barrier_from_red_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_red_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:red_concrete_barrier_from_red_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:seven_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:seven_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:seven_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:six_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:six_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:six_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:three_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:three_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:three_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:two_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:two_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:two_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,13 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:white_concrete_barrier_from_white_concrete_stonecutting"
]
},
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:white_concrete_barrier_from_white_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_white_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -16,8 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:white_concrete_barrier_from_white_concrete_stonecutting"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_white_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:white_concrete_barrier_from_white_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,13 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:yellow_concrete_barrier_from_yellow_concrete_stonecutting"
]
},
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "minecraft:yellow_concrete_barrier_from_yellow_concrete_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
},
"has_yellow_concrete": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -16,8 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:yellow_concrete_barrier_from_yellow_concrete_stonecutting"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_yellow_concrete",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:yellow_concrete_barrier_from_yellow_concrete_stonecutting"
]
},
"sends_telemetry_event": false
]
}

View File

@ -1,7 +1,13 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:zero_block_from_null_block_stonecutting"
]
},
"criteria": {
"has_null_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
@ -10,14 +16,13 @@
]
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:zero_block_from_null_block_stonecutting"
},
"trigger": "minecraft:recipe_unlocked"
}
}
},
"requirements": [
@ -25,11 +30,5 @@
"has_null_block",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecraft:zero_block_from_null_block_stonecutting"
]
},
"sends_telemetry_event": false
]
}

Some files were not shown because too many files have changed in this diff Show More