Compare commits
7 Commits
1.18.2
...
1.19.2-fab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd9acfcb94 | ||
|
|
e6c8effe4c | ||
|
|
f957e697d9 | ||
|
|
f6031652c2 | ||
|
|
b508cfef9f | ||
|
|
756d8cd137 | ||
|
|
c74c4937e2 |
252
build.gradle
252
build.gradle
@@ -1,191 +1,85 @@
|
||||
buildscript {
|
||||
repositories {
|
||||
// These repositories are only for Gradle plugins, put any other repositories in the repository block further below
|
||||
maven { url = 'https://maven.minecraftforge.net' }
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
maven { url = 'https://maven.parchmentmc.org' }
|
||||
maven { url = 'https://repo.spongepowered.org/repository/maven-public' }
|
||||
|
||||
}
|
||||
dependencies {
|
||||
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
|
||||
classpath "org.parchmentmc:librarian:${librarian_version}"
|
||||
classpath "org.spongepowered:mixingradle:0.7-SNAPSHOT"
|
||||
|
||||
}
|
||||
}
|
||||
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
|
||||
plugins {
|
||||
id 'eclipse'
|
||||
id 'fabric-loom' version "1.5-SNAPSHOT"
|
||||
id 'maven-publish'
|
||||
id 'com.matthewprenger.cursegradle' version '1.4.0'
|
||||
}
|
||||
apply plugin: 'net.minecraftforge.gradle'
|
||||
apply plugin: 'org.parchmentmc.librarian.forgegradle'
|
||||
apply plugin: 'org.spongepowered.mixin'
|
||||
|
||||
//mixin {
|
||||
// add sourceSets.main, "createindustry.refmap.json"
|
||||
//}
|
||||
|
||||
version = '0.9.0c-1.18.2'
|
||||
version = '0.9.0c-1.19.2-fabric'
|
||||
group = 'com.drmangotea.createindustry' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
|
||||
archivesBaseName = 'createindustry'
|
||||
|
||||
// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17.
|
||||
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
||||
|
||||
println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}"
|
||||
minecraft {
|
||||
mappings channel: 'parchment', version: "${parchment_version}-${minecraft_version}"
|
||||
|
||||
|
||||
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default.
|
||||
|
||||
runs {
|
||||
client {
|
||||
workingDirectory project.file('run')
|
||||
arg '-mixin.config=createindustry.mixins.json'
|
||||
property 'forge.logging.markers', 'REGISTRIES'
|
||||
property 'forge.logging.console.level', 'debug'
|
||||
property 'forge.enabledGameTestNamespaces', 'createindustry'
|
||||
property 'mixin.env.remapRefMap', 'true'
|
||||
property 'mixin.env.refMapRemappingFile', "${buildDir}/createSrgToMcp/output.srg"
|
||||
mods {
|
||||
createindustry {
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
workingDirectory project.file('run')
|
||||
arg '-mixin.config=createindustry.mixins.json'
|
||||
property 'forge.logging.markers', 'REGISTRIES'
|
||||
property 'forge.logging.console.level', 'debug'
|
||||
property 'forge.enabledGameTestNamespaces', 'createindustry'
|
||||
property 'mixin.env.remapRefMap', 'true'
|
||||
property 'mixin.env.refMapRemappingFile', "${buildDir}/createSrgToMcp/output.srg"
|
||||
mods {
|
||||
createindustry {
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
gameTestServer {
|
||||
workingDirectory project.file('run')
|
||||
property 'forge.logging.markers', 'REGISTRIES'
|
||||
property 'forge.logging.console.level', 'debug'
|
||||
property 'forge.enabledGameTestNamespaces', 'createindustry'
|
||||
property 'mixin.env.remapRefMap', 'true'
|
||||
property 'mixin.env.refMapRemappingFile', "${buildDir}/createSrgToMcp/output.srg"
|
||||
mods {
|
||||
createindustry {
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
data {
|
||||
workingDirectory project.file('run')
|
||||
property 'forge.logging.markers', 'REGISTRIES'
|
||||
property 'forge.logging.console.level', 'debug'
|
||||
args '--mod', 'createindustry', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
|
||||
mods {
|
||||
createindustry {
|
||||
source sourceSets.main
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Include resources generated by data generators.
|
||||
sourceSets.main.resources { srcDir 'src/generated/resources' }
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
|
||||
repositories {
|
||||
|
||||
maven {
|
||||
url = 'https://www.cursemaven.com'
|
||||
content {
|
||||
includeGroup "curse.maven"
|
||||
}
|
||||
}
|
||||
maven {
|
||||
// Location of the maven that hosts JEI files (and TiC) [1.18.2]
|
||||
name 'Progwml6 maven'
|
||||
url 'https://dvs1.progwml6.com/files/maven'
|
||||
}
|
||||
maven {
|
||||
// location of the maven that hosts JEI files since January 2023
|
||||
// location of the maven for Vazkii's mods
|
||||
name = "Jared's maven"
|
||||
url = "https://maven.blamejared.com/"
|
||||
}
|
||||
|
||||
maven {
|
||||
url "https://maven.tterrag.com/"
|
||||
}
|
||||
|
||||
|
||||
maven { url = "https://maven.shedaniel.me/" } // Cloth Config, REI
|
||||
maven { url = "https://maven.blamejared.com/" } // JEI
|
||||
maven { url = "https://maven.parchmentmc.org" } // Parchment mappings
|
||||
maven { url = "https://maven.quiltmc.org/repository/release" } // Quilt Mappings
|
||||
maven { url = "https://api.modrinth.com/maven" } // LazyDFU
|
||||
maven { url = "https://maven.terraformersmc.com/releases/" } // Mod Menu
|
||||
maven { url = "https://mvn.devos.one/snapshots/" } // Create, Porting Lib, Forge Tags, Milk Lib, Registrate
|
||||
maven { url = "https://raw.githubusercontent.com/Fuzss/modresources/main/maven/" } // Forge Config API Port
|
||||
maven { url = "https://maven.jamieswhiteshirt.com/libs-release" } // Reach Entity Attributes
|
||||
maven { url = "https://jitpack.io/" } // Mixin Extras, Fabric ASM
|
||||
maven { url = "https://maven.tterrag.com/" } // Flywheel
|
||||
maven { url = 'https://ladysnake.jfrog.io/artifactory/mods' } // I FUCKING HATE CAPABILITERS
|
||||
}
|
||||
|
||||
dependencies {
|
||||
minecraft("com.mojang:minecraft:${minecraft_version}")
|
||||
mappings(loom.layered {
|
||||
it.mappings("org.quiltmc:quilt-mappings:$minecraft_version+build.$quilt_version:intermediary-v2")
|
||||
it.parchment("org.parchmentmc.data:parchment-$minecraft_version:$parchment_version@zip")
|
||||
it.officialMojangMappings { nameSyntheticMembers = false }
|
||||
})
|
||||
modImplementation("net.fabricmc:fabric-loader:${fabric_loader_version}")
|
||||
|
||||
// dependencies
|
||||
modImplementation("net.fabricmc.fabric-api:fabric-api:${fabric_api_version}")
|
||||
|
||||
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
|
||||
// Create - dependencies are added transitively
|
||||
modImplementation("com.simibubi.create:create-fabric-${minecraft_version}:${create_version}")
|
||||
|
||||
//JEI
|
||||
compileOnly("mezz.jei:jei-${minecraft_version}-fabric-api:${jei_version}")
|
||||
runtimeOnly(compileOnly("mezz.jei:jei-${minecraft_version}-fabric:${jei_version}"))
|
||||
|
||||
compileOnly fg.deobf("com.tterrag.registrate:Registrate:${registrate_version}")
|
||||
implementation fg.deobf("com.jozufozu.flywheel:flywheel-forge-${minecraft_version}:${flywheel_version}")
|
||||
|
||||
implementation fg.deobf("com.simibubi.create:create-${minecraft_version}:${create_version}:all") { transitive = false }
|
||||
|
||||
|
||||
implementation fg.deobf("curse.maven:createaddition-439890:4683727")
|
||||
//implementation fg.deobf("curse.maven:zinclib-968773:5110339")
|
||||
|
||||
implementation fg.deobf("curse.maven:mekanism-268560:3875976")
|
||||
|
||||
implementation fg.deobf("curse.maven:selene-499980:5660287")
|
||||
|
||||
implementation fg.deobf("curse.maven:spark-361579:4505375")
|
||||
|
||||
//implementation fg.deobf("curse.maven:create-steam-n-rails-688231:5246888")
|
||||
|
||||
compileOnly fg.deobf("mezz.jei:jei-${jei_minecraft_version}:${jei_version}:api")
|
||||
runtimeOnly fg.deobf("mezz.jei:jei-${jei_minecraft_version}:${jei_version}")
|
||||
|
||||
|
||||
|
||||
|
||||
annotationProcessor "org.spongepowered:mixin:0.8.5:processor"
|
||||
testAnnotationProcessor "org.spongepowered:mixin:0.8.5:processor"
|
||||
// Development QOL
|
||||
modLocalRuntime("maven.modrinth:lazydfu:${lazydfu_version}")
|
||||
modLocalRuntime("com.terraformersmc:modmenu:${modmenu_version}")
|
||||
}
|
||||
|
||||
// Example for how to get properties into the manifest for reading at runtime.
|
||||
jar {
|
||||
manifest {
|
||||
attributes([
|
||||
"Specification-Title" : "createindustry",
|
||||
"Specification-Vendor" : "tfmgsareus",
|
||||
"Specification-Version" : "1", // We are version 1 of ourselves
|
||||
"Implementation-Title" : project.name,
|
||||
"Implementation-Version" : project.jar.archiveVersion,
|
||||
"Implementation-Vendor" : "tfmgsareus",
|
||||
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
|
||||
"MixinConfigs": "createindustry.mixins.json"
|
||||
])
|
||||
processResources {
|
||||
// require dependencies to be the version compiled against or newer
|
||||
// Map<String, String> properties = Map.of(
|
||||
// "version", version,
|
||||
// "fabric_loader_version", fabric_loader_version,
|
||||
// "fabric_api_version", fabric_api_version,
|
||||
// "create_version", create_version,
|
||||
// "minecraft_version", minecraft_version
|
||||
// )
|
||||
|
||||
inputs.properties(properties)
|
||||
|
||||
filesMatching("fabric.mod.json") {
|
||||
expand properties
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
it.options.release = Integer.parseInt(sourceCompatibility)
|
||||
}
|
||||
|
||||
jar.finalizedBy('reobfJar')
|
||||
|
||||
java {
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
jar {
|
||||
from("LICENSE") {
|
||||
rename { "${it}_${project.archivesBaseName}" }
|
||||
}
|
||||
}
|
||||
publishing {
|
||||
publications {
|
||||
mavenJava(MavenPublication) {
|
||||
@@ -199,6 +93,32 @@ publishing {
|
||||
}
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
|
||||
loom {
|
||||
runs {
|
||||
|
||||
data {
|
||||
environment = "data"
|
||||
|
||||
defaultMainClass = 'com.drmangotea.createindustry.CreateTFMG.java'
|
||||
//property 'forge.logging.markers', 'REGISTRIES'
|
||||
//property 'forge.logging.console.level', 'debug'
|
||||
programArgs '--mod', 'createindustry', '--all', '--output', 'src/generated/resources/', '--existing', 'src/main/resources/'
|
||||
}
|
||||
|
||||
// mixin {
|
||||
// defaultRefmapName = 'mixins.createindustry.refmap.json'
|
||||
// useRefmap = true
|
||||
// remap = true
|
||||
// }
|
||||
}
|
||||
}
|
||||
//minecraft {
|
||||
//
|
||||
//
|
||||
// // accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default.
|
||||
//
|
||||
|
||||
//}
|
||||
//
|
||||
//// Include resources generated by data generators.
|
||||
//sourceSets.main.resources { srcDir 'src/generated/resources' }
|
||||
|
||||
27
flake.lock
generated
27
flake.lock
generated
@@ -1,27 +0,0 @@
|
||||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1732014248,
|
||||
"narHash": "sha256-y/MEyuJ5oBWrWAic/14LaIr/u5E0wRVzyYsouYY3W6w=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "23e89b7da85c3640bbc2173fe04f4bd114342367",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixos-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
24
flake.nix
24
flake.nix
@@ -1,24 +0,0 @@
|
||||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }:
|
||||
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
libs = with pkgs; [
|
||||
libpulseaudio
|
||||
libGL
|
||||
glfw
|
||||
openal
|
||||
stdenv.cc.cc.lib
|
||||
];
|
||||
in {
|
||||
devShell.x86_64-linux = pkgs.mkShell {
|
||||
packages = [];
|
||||
buildInputs = libs;
|
||||
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath libs;
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1,14 +1,16 @@
|
||||
org.gradle.jvmargs=-Xmx3G
|
||||
org.gradle.daemon=false
|
||||
|
||||
jei_minecraft_version = 1.18.2
|
||||
jei_version = 9.7.0.209
|
||||
forge_version = 40.2.9
|
||||
jei_version = 11.6.0.1024
|
||||
fabric_loader_version = 0.15.7
|
||||
fabric_api_version = 0.92.0+1.20.1
|
||||
|
||||
minecraft_version = 1.18.2
|
||||
flywheel_version = 0.6.9-101
|
||||
create_version = 0.5.1.c-299
|
||||
librarian_version = 1.+
|
||||
parchment_version = 2022.11.06
|
||||
minecraft_version = 1.19.2
|
||||
create_version = 0.5.1-f-build.1334+mc1.19.2
|
||||
quilt_version = 22
|
||||
parchment_version = 2022.11.27
|
||||
|
||||
registrate_version = MC1.18.2-1.1.3
|
||||
registrate_version = MC1.19-1.1.5
|
||||
|
||||
modmenu_version = 4.2.0-beta.2
|
||||
lazydfu_version = 0.1.3
|
||||
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,7 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
35
gradlew
vendored
35
gradlew
vendored
@@ -55,7 +55,7 @@
|
||||
# Darwin, MinGW, and NonStop.
|
||||
#
|
||||
# (3) This script is generated from the Groovy template
|
||||
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||
# within the Gradle project.
|
||||
#
|
||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||
@@ -80,13 +80,11 @@ do
|
||||
esac
|
||||
done
|
||||
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||
|
||||
APP_NAME="Gradle"
|
||||
# This is normally unused
|
||||
# shellcheck disable=SC2034
|
||||
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"'
|
||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
||||
|
||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||
MAX_FD=maximum
|
||||
@@ -133,22 +131,29 @@ location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD=java
|
||||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
if ! command -v java >/dev/null 2>&1
|
||||
then
|
||||
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
fi
|
||||
|
||||
# Increase the maximum file descriptors if we can.
|
||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||
case $MAX_FD in #(
|
||||
max*)
|
||||
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||
# shellcheck disable=SC2039,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=SC2039,SC3045
|
||||
ulimit -n "$MAX_FD" ||
|
||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||
esac
|
||||
@@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then
|
||||
done
|
||||
fi
|
||||
|
||||
# Collect all arguments for the java command;
|
||||
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
||||
# shell script including quotes and variable substitutions, so put them in
|
||||
# double quotes to make sure that they get re-expanded; and
|
||||
# * put everything else in single quotes, so that it's not re-expanded.
|
||||
|
||||
# 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, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||
# and any embedded shellness will be escaped.
|
||||
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
||||
# treated as '${Hostname}' itself on the command line.
|
||||
|
||||
set -- \
|
||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||
|
||||
1
gradlew.bat
vendored
1
gradlew.bat
vendored
@@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal
|
||||
|
||||
set DIRNAME=%~dp0
|
||||
if "%DIRNAME%"=="" set DIRNAME=.
|
||||
@rem This is normally unused
|
||||
set APP_BASE_NAME=%~n0
|
||||
set APP_HOME=%DIRNAME%
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
maven { url = 'https://maven.minecraftforge.net/' }
|
||||
|
||||
|
||||
maven { url = "https://maven.fabricmc.net/" }
|
||||
maven { url = "https://maven.quiltmc.org/repository/release" }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// 1.19.2 2024-07-22T19:15:46.2542473 Registrate Provider for createindustry [Recipes, Advancements, Loot tables, Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), Blockstates, Item models, Lang (en_us/en_ud)]
|
||||
// 1.19.2 2024-07-03T15:07:29.6139549 Registrate Provider for createindustry [Recipes, Advancements, Loot tables, Tags (blocks), Tags (items), Tags (fluids), Tags (entity_types), Blockstates, Item models, Lang (en_us/en_ud)]
|
||||
618a4fde84a56aca00c6990dbde278f8fb76bb1e assets/createindustry/blockstates/accumulator.json
|
||||
50db526af77cf0ead08cadfd3f7daa8b84a40312 assets/createindustry/blockstates/air_intake.json
|
||||
429437419b2ec98bd716e7ba15583b84da7488d5 assets/createindustry/blockstates/aluminum_bars.json
|
||||
@@ -22,7 +22,6 @@ e464e2a4f734edddc561ed16c6ef59cff24f7c48 assets/createindustry/blockstates/aspha
|
||||
93a81066656b7dd0e3ddfa5c0acef85773691cbe assets/createindustry/blockstates/black_concrete_stairs.json
|
||||
e7be4ba03250473eed90673c18fa8ff499df4b2e assets/createindustry/blockstates/black_concrete_wall.json
|
||||
9444760b497a6f7a8b01dbbb9ef3c6d1c4cce578 assets/createindustry/blockstates/blast_furnace_output.json
|
||||
fbe4f941fdadbd4eefe6ff77e58a68227df6fff6 assets/createindustry/blockstates/blast_stove.json
|
||||
7d985fc27492c127bdb8dc5cc7fa4d4038ca92fe assets/createindustry/blockstates/blue_caution_block.json
|
||||
f844fd0e8d4d18f36fc3cf4e8872f1427f273101 assets/createindustry/blockstates/blue_concrete.json
|
||||
c45124689815c652aae0f78c9be6eb6e28d4d5d4 assets/createindustry/blockstates/blue_concrete_slab.json
|
||||
@@ -121,7 +120,6 @@ e5f2c9437f90c1f10f8eaabb26864aa857a1919a assets/createindustry/blockstates/facto
|
||||
99208a5e408102130b13f510ccebfaeb44290826 assets/createindustry/blockstates/fireproof_bricks.json
|
||||
cc2530ffc221ed2a1c2fd35526f720b40a94628b assets/createindustry/blockstates/fireproof_brick_reinforcement.json
|
||||
db10fa8e367e21a0e2a8031ce119acc3146580f6 assets/createindustry/blockstates/flarestack.json
|
||||
867c554a97c2c937ebda71d76117d4d1ab3e8932 assets/createindustry/blockstates/fluid_output.json
|
||||
37df5306e8020d0993c2db8008b65975b84912a2 assets/createindustry/blockstates/formwork_block.json
|
||||
d49ae2f7556fb9d5892399783e4a51554162761f assets/createindustry/blockstates/fossilstone.json
|
||||
c6acb588494564b6c3a8d2a14430780e3c2c403a assets/createindustry/blockstates/galena.json
|
||||
@@ -331,8 +329,8 @@ a3376853404f164207006a3e6797872b39748966 assets/createindustry/blockstates/yello
|
||||
cf86260011f9890489b886d2f29eec92ca423f94 assets/createindustry/blockstates/yellow_concrete_wall.json
|
||||
0305f011b989c226baf09bc39547daceff7ac826 assets/createindustry/blockstates/zinc_frame.json
|
||||
cbdfdcd64606aff5f426f6be20e9d60b155bed55 assets/createindustry/blockstates/zinc_truss.json
|
||||
1f2547484e4f4e6f04f9e68f434a2f0528c5f94e assets/createindustry/lang/en_ud.json
|
||||
a42f166cd990f4550aebdeb8f6686334be4392c1 assets/createindustry/lang/en_us.json
|
||||
956bbc8f41a89742a1e2690097f91de990b76a7d assets/createindustry/lang/en_ud.json
|
||||
648834006ff13f225f188bfd357e6c81e7f31b38 assets/createindustry/lang/en_us.json
|
||||
c97ace9182228ac09c3decbeae4a1c5f19bf2729 assets/createindustry/models/block/aluminum_block.json
|
||||
04ac8fe21a740f3dd29d3d6083d59729f129b14b assets/createindustry/models/block/aluminum_cable_hub.json
|
||||
eadb8c93c688022b4f6e9d928a09f6e3da7d1ff8 assets/createindustry/models/block/aluminum_cap.json
|
||||
@@ -557,7 +555,6 @@ e1e4f3b39217735e396719fa5114f1f3ff2d9bd3 assets/createindustry/models/block/fact
|
||||
54b1147d65e48f75952de33211975c83962d015c assets/createindustry/models/block/fireproof_brick_reinforcement_wall_post.json
|
||||
5ccef430d7d4768a444fb9c4df05aa8a972c8b2e assets/createindustry/models/block/fireproof_brick_reinforcement_wall_side.json
|
||||
d222386101c8e54e41c3fa63ebb25e451343bc78 assets/createindustry/models/block/fireproof_brick_reinforcement_wall_side_tall.json
|
||||
5c9252f68de67c7e17b4397ef65366eb62fca331 assets/createindustry/models/block/fluid_output.json
|
||||
94612d92d85d3a687b6dcf77bb72c0498d7d3cfe assets/createindustry/models/block/fossilstone.json
|
||||
3d8753f09d26238c9588aa0eed83204f022e5e0b assets/createindustry/models/block/galena_natural_0.json
|
||||
d3a33e53fd26e0b0fc528ff1d713dc583a22b877 assets/createindustry/models/block/galena_natural_1.json
|
||||
@@ -932,9 +929,7 @@ d781586c69140d00c4698d434426725148e53127 assets/createindustry/models/item/black
|
||||
9cf294ab7912a46233883d3e8118cfa2171d3676 assets/createindustry/models/item/black_concrete_stairs.json
|
||||
28865a2b9212f1bcc4a65a32002623bc186da9b1 assets/createindustry/models/item/black_concrete_wall.json
|
||||
bffbc5ebd39352eaca157e47c44cf3a7d43a29dc assets/createindustry/models/item/blasting_mixture.json
|
||||
607470667a74b14a9e6922f3e9db34112b8c9cb6 assets/createindustry/models/item/blast_furnace_gas_bucket.json
|
||||
eb79e25c93a3d2251496fddc141e749d2ace2b01 assets/createindustry/models/item/blast_furnace_output.json
|
||||
36cb9ebba6d775917a0156cc34c68c974b68bfcd assets/createindustry/models/item/blast_stove.json
|
||||
c7e6bbd897b6eb363505e2840b62ec9cee129894 assets/createindustry/models/item/block_mold.json
|
||||
7d7d4580545f0732e28341f8b2ad6fa059309866 assets/createindustry/models/item/blue_caution_block.json
|
||||
0e500b3a21b83741ff9a6015fa60bd944f4a9dc0 assets/createindustry/models/item/blue_concrete.json
|
||||
@@ -1049,7 +1044,6 @@ b59c027fe75c566a73d1c068f0558e0c8d262226 assets/createindustry/models/item/firec
|
||||
4375c1b9f57ca9b5b5cf700b9b7c4ff25c554650 assets/createindustry/models/item/fireproof_brick_reinforcement.json
|
||||
12c9549ea0701818057a9a8e5c75803b33f5ba14 assets/createindustry/models/item/flamethrower.json
|
||||
004725e848bb688280bcb1e0bb03901ab640318a assets/createindustry/models/item/flarestack.json
|
||||
e322478fbd14a6704b46f46b69844e145c457d35 assets/createindustry/models/item/fluid_output.json
|
||||
51b592f033acb1ebef30bcccb5893e8532169eeb assets/createindustry/models/item/formwork_block.json
|
||||
643ec369a783780a0c783c3190613930536d2141 assets/createindustry/models/item/fossilstone.json
|
||||
d3a33e53fd26e0b0fc528ff1d713dc583a22b877 assets/createindustry/models/item/galena.json
|
||||
@@ -1071,7 +1065,6 @@ f2e482ff0d0b555b4581c15edb4e01b9c7935820 assets/createindustry/models/item/gray_
|
||||
54e1b1c148e2a5f3235ed472d7386324fad82163 assets/createindustry/models/item/green_concrete_wall.json
|
||||
05529b1cd0b8e6f5ae54440f59bdf33b0e3a50b7 assets/createindustry/models/item/hardened_planks.json
|
||||
cc83f31a318b8c43e9bdc125c62d1c25750019ff assets/createindustry/models/item/hardened_planks_slab.json
|
||||
4538a79dee23e6d3828f35b9a5308f70c00322c7 assets/createindustry/models/item/heated_air_bucket.json
|
||||
f72c5699b4f2ed494d460dc4c9e05e69e12fddc0 assets/createindustry/models/item/heavy_cable_hub.json
|
||||
3ea2174152c3617010a278e23923c08917da844e assets/createindustry/models/item/heavy_casing_door.json
|
||||
e8c4d2eb1eba75a042a07210c237c9eb380370d0 assets/createindustry/models/item/heavy_casing_encased_aluminum_cogwheel.json
|
||||
@@ -1317,17 +1310,8 @@ d2674ab227f0eeb92258f423f03ef3286de168e3 data/createindustry/advancements/recipe
|
||||
009fd5fbd1380a356ff56b1789789c91cd4a50d7 data/createindustry/advancements/recipes/createindustry.building/aluminum_scaffolding_from_ingots_aluminum_stonecutting.json
|
||||
1d5c52d2325fb70c9c556cd301db08f462eed0cb data/createindustry/advancements/recipes/createindustry.building/bauxite_from_stone_types_bauxite_stonecutting.json
|
||||
b7581ba7be6397c4ad1f35b330add15e6de9228a data/createindustry/advancements/recipes/createindustry.building/bauxite_pillar_from_stone_types_bauxite_stonecutting.json
|
||||
7e7b33896d054b570bc2a149263085def1ff66ce data/createindustry/advancements/recipes/createindustry.building/black_concrete_slab_from_black_concrete_stonecutting.json
|
||||
89bc33f51f9986e5963e12cf409a6981941561e6 data/createindustry/advancements/recipes/createindustry.building/black_concrete_stairs_from_black_concrete_stonecutting.json
|
||||
2f3c38746785d951d202dfcc82c02ce4728c76a9 data/createindustry/advancements/recipes/createindustry.building/black_concrete_wall_from_black_concrete_stonecutting.json
|
||||
74d8e004c6455aee5688a68b0c2b88421f557fde data/createindustry/advancements/recipes/createindustry.building/blue_concrete_slab_from_blue_concrete_stonecutting.json
|
||||
3c399e6f78aa215fc41981cce126eab9c6025008 data/createindustry/advancements/recipes/createindustry.building/blue_concrete_stairs_from_blue_concrete_stonecutting.json
|
||||
f6bb773a24d1323b70cc09997e235ce8cb142e92 data/createindustry/advancements/recipes/createindustry.building/blue_concrete_wall_from_blue_concrete_stonecutting.json
|
||||
5283cd6664990505f294ecff96617720850747d6 data/createindustry/advancements/recipes/createindustry.building/brass_frame_from_ingots_brass_stonecutting.json
|
||||
0ca83190e88186440e0c9f9d8fd888cd81c81892 data/createindustry/advancements/recipes/createindustry.building/brass_truss_from_ingots_brass_stonecutting.json
|
||||
8b3626357a8ecb767bd679a42bbfd635432cfce2 data/createindustry/advancements/recipes/createindustry.building/brown_concrete_slab_from_brown_concrete_stonecutting.json
|
||||
6c025acaec671d8d5441efbe37c9a4d3ea82c0de data/createindustry/advancements/recipes/createindustry.building/brown_concrete_stairs_from_brown_concrete_stonecutting.json
|
||||
b15d0554a49e764e987b2afe8c56d12506dcfbc2 data/createindustry/advancements/recipes/createindustry.building/brown_concrete_wall_from_brown_concrete_stonecutting.json
|
||||
967e04b6c4fb862ca6b8cbb9bdb7c4e254672584 data/createindustry/advancements/recipes/createindustry.building/cast_iron_bars_from_ingots_cast_iron_stonecutting.json
|
||||
26c33f8368dc9ed39e9929a714d1e5110f94725d data/createindustry/advancements/recipes/createindustry.building/cast_iron_ladder_from_ingots_cast_iron_stonecutting.json
|
||||
10d9b0cf937e47b40bb980abb40ca5d6d164821d data/createindustry/advancements/recipes/createindustry.building/concrete_slab_from_concrete_stonecutting.json
|
||||
@@ -1367,45 +1351,18 @@ b84f0ff75600f120e5a6d19c107cd3c14224e95a data/createindustry/advancements/recipe
|
||||
61ad3008b0c4421768875529b3148242ec6916f5 data/createindustry/advancements/recipes/createindustry.building/cut_galena_stairs_from_stone_types_galena_stonecutting.json
|
||||
134528494c677fb4e6062d29a35f5c97cb91fa26 data/createindustry/advancements/recipes/createindustry.building/cut_galena_wall.json
|
||||
39e5b7451f429210f362f7e0a732da312dfb5c87 data/createindustry/advancements/recipes/createindustry.building/cut_galena_wall_from_stone_types_galena_stonecutting.json
|
||||
454bcf1b8cd9e36d1d976b198f826d8c7cc0d733 data/createindustry/advancements/recipes/createindustry.building/cyan_concrete_slab_from_cyan_concrete_stonecutting.json
|
||||
b22b4a153e93d05d4cd648007846e295bca0e7ec data/createindustry/advancements/recipes/createindustry.building/cyan_concrete_stairs_from_cyan_concrete_stonecutting.json
|
||||
5b1f0669e02cd36f2504447f4d4013f0cc97770b data/createindustry/advancements/recipes/createindustry.building/cyan_concrete_wall_from_cyan_concrete_stonecutting.json
|
||||
4b7b3ee4b321ef3f9f08e02c10f00d3ea4d6f9c6 data/createindustry/advancements/recipes/createindustry.building/galena_from_stone_types_galena_stonecutting.json
|
||||
ab255209c912e9ac90c8430df6b75642f615c35d data/createindustry/advancements/recipes/createindustry.building/galena_pillar_from_stone_types_galena_stonecutting.json
|
||||
c78f445ed73049146ee8f61a2349956be29d11ce data/createindustry/advancements/recipes/createindustry.building/gray_concrete_slab_from_gray_concrete_stonecutting.json
|
||||
a79c18b4390c6b0a2b2a193b003bb46db38c2ecf data/createindustry/advancements/recipes/createindustry.building/gray_concrete_stairs_from_gray_concrete_stonecutting.json
|
||||
ae89be9cfddb7cc07f2666fc5df3396cda8ae4c7 data/createindustry/advancements/recipes/createindustry.building/gray_concrete_wall_from_gray_concrete_stonecutting.json
|
||||
012ec1fcdf6b8f7947fb6c528e7c413c2f594950 data/createindustry/advancements/recipes/createindustry.building/green_concrete_slab_from_green_concrete_stonecutting.json
|
||||
5b7e1b6f7d35ad0f06e21fca8b42d70cc35b30b7 data/createindustry/advancements/recipes/createindustry.building/green_concrete_stairs_from_green_concrete_stonecutting.json
|
||||
9f42ec0a3e5cd0233e60646bda7948ee57be9ced data/createindustry/advancements/recipes/createindustry.building/green_concrete_wall_from_green_concrete_stonecutting.json
|
||||
584827d3369e4a9f7a2628df267ef782bd98b6f9 data/createindustry/advancements/recipes/createindustry.building/layered_bauxite_from_stone_types_bauxite_stonecutting.json
|
||||
b18bd32defaa39d69e2acf33b23dfca2dbab89b8 data/createindustry/advancements/recipes/createindustry.building/layered_galena_from_stone_types_galena_stonecutting.json
|
||||
6384e6ffce1c0ef227a2dd2284c58e2f09b61ea6 data/createindustry/advancements/recipes/createindustry.building/lead_bars_from_ingots_lead_stonecutting.json
|
||||
f6addd0e793f5ba973de0ed416fa3f3bc1f133c1 data/createindustry/advancements/recipes/createindustry.building/lead_frame_from_ingots_lead_stonecutting.json
|
||||
6b602cb386e43f343b8e53318034b79867a6aab3 data/createindustry/advancements/recipes/createindustry.building/lead_ladder_from_ingots_lead_stonecutting.json
|
||||
09c09c4e318d8b5012f30154508b8be710527f2d data/createindustry/advancements/recipes/createindustry.building/lead_truss_from_ingots_lead_stonecutting.json
|
||||
40c20c313127309c67084110121c4543a5a31928 data/createindustry/advancements/recipes/createindustry.building/light_blue_concrete_slab_from_light_blue_concrete_stonecutting.json
|
||||
28d3f181bcf5b51bd4bc5538b48fd4d13b7f0cf3 data/createindustry/advancements/recipes/createindustry.building/light_blue_concrete_stairs_from_light_blue_concrete_stonecutting.json
|
||||
b777235bfc1ec2ea24b5ab4b3acc64ae2a4abdb0 data/createindustry/advancements/recipes/createindustry.building/light_blue_concrete_wall_from_light_blue_concrete_stonecutting.json
|
||||
5fcd3753857457a18d7834d5cb32f5aa267db9ba data/createindustry/advancements/recipes/createindustry.building/light_gray_concrete_slab_from_light_gray_concrete_stonecutting.json
|
||||
bc7c83255b4ce8b6045b5aa70f0a5e16ec940ae9 data/createindustry/advancements/recipes/createindustry.building/light_gray_concrete_stairs_from_light_gray_concrete_stonecutting.json
|
||||
a230297611f055034da7a7864e67eb69633737f3 data/createindustry/advancements/recipes/createindustry.building/light_gray_concrete_wall_from_light_gray_concrete_stonecutting.json
|
||||
0214dcd0df9567c77c946a3e1535d19ab6acb4c8 data/createindustry/advancements/recipes/createindustry.building/lime_concrete_slab_from_lime_concrete_stonecutting.json
|
||||
a1790a43025ecb38570c82b98a21d56c736b1ddb data/createindustry/advancements/recipes/createindustry.building/lime_concrete_stairs_from_lime_concrete_stonecutting.json
|
||||
9c86d53f54c9da9ea1180497f699504f66982fc9 data/createindustry/advancements/recipes/createindustry.building/lime_concrete_wall_from_lime_concrete_stonecutting.json
|
||||
6f24b019cf394fea4597b5f63e93205a71cb1fe9 data/createindustry/advancements/recipes/createindustry.building/magenta_concrete_slab_from_magenta_concrete_stonecutting.json
|
||||
0f1ed0168386ccdec22ff30946297ac7b22c9ebc data/createindustry/advancements/recipes/createindustry.building/magenta_concrete_stairs_from_magenta_concrete_stonecutting.json
|
||||
5d6771ffa604ad94f8ac53e58a6ee17000844f24 data/createindustry/advancements/recipes/createindustry.building/magenta_concrete_wall_from_magenta_concrete_stonecutting.json
|
||||
171db373d1846016b2ec665c57c7e98fe8558de6 data/createindustry/advancements/recipes/createindustry.building/nickel_bars_from_ingots_nickel_stonecutting.json
|
||||
437d390f50060a63027fb128812a9bae9426b2fa data/createindustry/advancements/recipes/createindustry.building/nickel_frame_from_ingots_nickel_stonecutting.json
|
||||
54291532100d1975263fb96587d1db0e8581fcc0 data/createindustry/advancements/recipes/createindustry.building/nickel_ladder_from_ingots_nickel_stonecutting.json
|
||||
0154a88e337b1a6396eb74c12c6a93fdc5d4b435 data/createindustry/advancements/recipes/createindustry.building/nickel_truss_from_ingots_nickel_stonecutting.json
|
||||
5d526b0dfc921d41eeea9418806a505d96d00743 data/createindustry/advancements/recipes/createindustry.building/orange_concrete_slab_from_orange_concrete_stonecutting.json
|
||||
c96e7c86efc8ea7522c632c07908e90515977a54 data/createindustry/advancements/recipes/createindustry.building/orange_concrete_stairs_from_orange_concrete_stonecutting.json
|
||||
fe89a1d790080e892331570a21cc1b532fe05eb4 data/createindustry/advancements/recipes/createindustry.building/orange_concrete_wall_from_orange_concrete_stonecutting.json
|
||||
fac7554a9fccf7322ccfc8870094b865335cd05a data/createindustry/advancements/recipes/createindustry.building/pink_concrete_slab_from_pink_concrete_stonecutting.json
|
||||
15c1798d29ad71ef9d753eef4840a0ea85bd1a83 data/createindustry/advancements/recipes/createindustry.building/pink_concrete_stairs_from_pink_concrete_stonecutting.json
|
||||
a080b37828a407ccb25a39524f46458ad878e2de data/createindustry/advancements/recipes/createindustry.building/pink_concrete_wall_from_pink_concrete_stonecutting.json
|
||||
cb14f63af64b6ea52af2f1676d4f94772f7707d5 data/createindustry/advancements/recipes/createindustry.building/polished_cut_bauxite_from_stone_types_bauxite_stonecutting.json
|
||||
033df645e8ff979abd5d78fad26641c9a56ca5bd data/createindustry/advancements/recipes/createindustry.building/polished_cut_bauxite_slab.json
|
||||
476faffb71beaff22049bf58c14624e947986f8d data/createindustry/advancements/recipes/createindustry.building/polished_cut_bauxite_slab_from_stone_types_bauxite_stonecutting.json
|
||||
@@ -1422,13 +1379,7 @@ b0c61949440e4867bd4a7d1a53b6d81401e3b45e data/createindustry/advancements/recipe
|
||||
7cf05421ce7f91c2b526919073f2de13b00b2f92 data/createindustry/advancements/recipes/createindustry.building/polished_cut_galena_stairs_from_stone_types_galena_stonecutting.json
|
||||
19f98ebd97dd179292a0fb674f254fb26dbc0939 data/createindustry/advancements/recipes/createindustry.building/polished_cut_galena_wall.json
|
||||
132e7001a262bb1ddf375c4d87ddd3f90bb6e3fc data/createindustry/advancements/recipes/createindustry.building/polished_cut_galena_wall_from_stone_types_galena_stonecutting.json
|
||||
6d03afe8d1a0911ee01b2dc92aabc9a6a747363b data/createindustry/advancements/recipes/createindustry.building/purple_concrete_slab_from_purple_concrete_stonecutting.json
|
||||
4a9b1034a60402f00a1af2cdd39e6e316d2d51db data/createindustry/advancements/recipes/createindustry.building/purple_concrete_stairs_from_purple_concrete_stonecutting.json
|
||||
983696fa146942636556004756909c139153ad60 data/createindustry/advancements/recipes/createindustry.building/purple_concrete_wall_from_purple_concrete_stonecutting.json
|
||||
0280358a26e7e09605674cf3293bde493e708491 data/createindustry/advancements/recipes/createindustry.building/rebar_concrete_slab_from_rebar_concrete_stonecutting.json
|
||||
d36a3380b101332a83b8d3772ce75b4d0520520b data/createindustry/advancements/recipes/createindustry.building/red_concrete_slab_from_red_concrete_stonecutting.json
|
||||
64ea2a5015e184683a42274a39a07726c9a2584d data/createindustry/advancements/recipes/createindustry.building/red_concrete_stairs_from_red_concrete_stonecutting.json
|
||||
d4c04754b5400459a98bd69806b90c80244cb2a3 data/createindustry/advancements/recipes/createindustry.building/red_concrete_wall_from_red_concrete_stonecutting.json
|
||||
e569c8560d069caf0b682a0eaa579a0ca2fbb634 data/createindustry/advancements/recipes/createindustry.building/small_bauxite_bricks_from_stone_types_bauxite_stonecutting.json
|
||||
aba10772636e91d259ad5d7aa183f68ca131db00 data/createindustry/advancements/recipes/createindustry.building/small_bauxite_brick_slab.json
|
||||
8269301b00ac7508bb192dca97a47236eb6d769b data/createindustry/advancements/recipes/createindustry.building/small_bauxite_brick_slab_from_stone_types_bauxite_stonecutting.json
|
||||
@@ -1448,12 +1399,6 @@ ccfa4762f732fa30d22fbbea75ab7be37063428f data/createindustry/advancements/recipe
|
||||
676ffb2246d0d0077aaccc5f6f2de4481b09bdf9 data/createindustry/advancements/recipes/createindustry.building/steel_bars_from_ingots_steel_stonecutting.json
|
||||
7f0a202e2cdf6c9d07aabbccb2de107f732da92d data/createindustry/advancements/recipes/createindustry.building/steel_ladder_from_ingots_steel_stonecutting.json
|
||||
341d7345e8c6384c0a1b051f4e4d69b98c4e0089 data/createindustry/advancements/recipes/createindustry.building/steel_scaffolding_from_ingots_steel_stonecutting.json
|
||||
7bea325d84ae46de41a070bf434d185eb621081f data/createindustry/advancements/recipes/createindustry.building/white_concrete_slab_from_white_concrete_stonecutting.json
|
||||
3608af49e140a850cee25d50392803286da8996a data/createindustry/advancements/recipes/createindustry.building/white_concrete_stairs_from_white_concrete_stonecutting.json
|
||||
b00df9e6d25f4b29a57cc589e8fe15221cfa56ba data/createindustry/advancements/recipes/createindustry.building/white_concrete_wall_from_white_concrete_stonecutting.json
|
||||
de1591355ac8b88b9fbc53b1ae4eff5dd0100908 data/createindustry/advancements/recipes/createindustry.building/yellow_concrete_slab_from_yellow_concrete_stonecutting.json
|
||||
62228af9525fc48f83c880aaef8befe6fa16524d data/createindustry/advancements/recipes/createindustry.building/yellow_concrete_stairs_from_yellow_concrete_stonecutting.json
|
||||
9df4748b0c2e983bc519aae741fa7a357aba69ab data/createindustry/advancements/recipes/createindustry.building/yellow_concrete_wall_from_yellow_concrete_stonecutting.json
|
||||
e87030d8e7c99edde9291fa703fd5c89a15f5c9b data/createindustry/advancements/recipes/createindustry.building/zinc_frame_from_ingots_zinc_stonecutting.json
|
||||
7e1c572245dbeff28e34d48910d1dabca150735e data/createindustry/advancements/recipes/createindustry.building/zinc_truss_from_ingots_zinc_stonecutting.json
|
||||
109c8f09132b868ee36e5812e9e5d94553b302e7 data/createindustry/loot_tables/blocks/accumulator.json
|
||||
@@ -1479,7 +1424,6 @@ d4877afdadc46be2f29b04b05efc0c99867f4e47 data/createindustry/loot_tables/blocks/
|
||||
098f069575ea2aae6b5319052aa7056c6f456924 data/createindustry/loot_tables/blocks/black_concrete_stairs.json
|
||||
33af91d47277dfdb85241b92424cceba48dcc6ec data/createindustry/loot_tables/blocks/black_concrete_wall.json
|
||||
e695854289287dccc00102aa689eeaec111b52a1 data/createindustry/loot_tables/blocks/blast_furnace_output.json
|
||||
72e9dbf59438d95ebf8806e26148437b20f60283 data/createindustry/loot_tables/blocks/blast_stove.json
|
||||
6438a4f0600426fcbe9d08a7d7ebfb0d89f52b23 data/createindustry/loot_tables/blocks/blue_caution_block.json
|
||||
31428000d99664e19e46cd9d84ccaf811a67f5c4 data/createindustry/loot_tables/blocks/blue_concrete.json
|
||||
454f4c7dc8aaae9af0bcb8af2537bed95997a910 data/createindustry/loot_tables/blocks/blue_concrete_slab.json
|
||||
@@ -1574,7 +1518,6 @@ eeed2ad0af88d5e3048848be9302ae0abbba071a data/createindustry/loot_tables/blocks/
|
||||
90f596af44be27cd43c4db44408e4bb78c495669 data/createindustry/loot_tables/blocks/fireproof_bricks.json
|
||||
64a448ce12f834191e77eb96b5edbaf3d71c4b8d data/createindustry/loot_tables/blocks/fireproof_brick_reinforcement.json
|
||||
6689e290ede100d11c15d60105ce24e7e3dbc723 data/createindustry/loot_tables/blocks/flarestack.json
|
||||
e339fcfca2e5f424f5afeadecc5128985604542c data/createindustry/loot_tables/blocks/fluid_output.json
|
||||
b340d10b7eda3c5d50aa44984bd4bf8173f10638 data/createindustry/loot_tables/blocks/formwork_block.json
|
||||
0771c6f9b8a849cc5f826fba90669cbbdac3a34f data/createindustry/loot_tables/blocks/fossilstone.json
|
||||
ac74e86294604a13dfe6e78210d5752ca59d13c8 data/createindustry/loot_tables/blocks/galena.json
|
||||
@@ -1776,17 +1719,8 @@ ba930ee89155dc321e546aef3df7e6275e7c8f3b data/createindustry/recipes/aluminum_ba
|
||||
73173b977371d01cc437cf583ce233b7a439c58a data/createindustry/recipes/aluminum_scaffolding_from_ingots_aluminum_stonecutting.json
|
||||
50fedca289c3aae4c5a2aa5e4a9facb84c847da7 data/createindustry/recipes/bauxite_from_stone_types_bauxite_stonecutting.json
|
||||
abee45903bfc415321b86d794bd4ddcd91532660 data/createindustry/recipes/bauxite_pillar_from_stone_types_bauxite_stonecutting.json
|
||||
f44236623296b7e872b2de6a8aa745d05661b571 data/createindustry/recipes/black_concrete_slab_from_black_concrete_stonecutting.json
|
||||
be66f1cd72752220f24ab32849ecb9cdf98f5003 data/createindustry/recipes/black_concrete_stairs_from_black_concrete_stonecutting.json
|
||||
49e6f12d4418cca9d8c367449a74fd715aac12c1 data/createindustry/recipes/black_concrete_wall_from_black_concrete_stonecutting.json
|
||||
42d0d79c0e339454660909e001b6a8d03a3d4921 data/createindustry/recipes/blue_concrete_slab_from_blue_concrete_stonecutting.json
|
||||
795b29948ee4b3a66dc4dba1707868813c050e40 data/createindustry/recipes/blue_concrete_stairs_from_blue_concrete_stonecutting.json
|
||||
df8bbbe4a842d78879e641884e4b8b7b31776944 data/createindustry/recipes/blue_concrete_wall_from_blue_concrete_stonecutting.json
|
||||
498f518ba7465da1547da2ae6f082b345db9d2b7 data/createindustry/recipes/brass_frame_from_ingots_brass_stonecutting.json
|
||||
809778aaf97d20c214a5b98ed13950388b2982a4 data/createindustry/recipes/brass_truss_from_ingots_brass_stonecutting.json
|
||||
1461155cdf0c9008cdbae767328328ab12b1986d data/createindustry/recipes/brown_concrete_slab_from_brown_concrete_stonecutting.json
|
||||
940e62dfa9d1c43120e81ab268fcb8a4d7892062 data/createindustry/recipes/brown_concrete_stairs_from_brown_concrete_stonecutting.json
|
||||
84a9a408807e65e201294af6b0a638bf3f8d1edd data/createindustry/recipes/brown_concrete_wall_from_brown_concrete_stonecutting.json
|
||||
6d3f05fb8a16273588219d3b017f6043a4a2ff05 data/createindustry/recipes/cast_iron_bars_from_ingots_cast_iron_stonecutting.json
|
||||
342bfbca2a3a51a772bf9b504336d80ae46dbf64 data/createindustry/recipes/cast_iron_ladder_from_ingots_cast_iron_stonecutting.json
|
||||
a74b0a75d87d545c9a66ad660b02918b34fb28e2 data/createindustry/recipes/cinderblock_from_concrete_stonecutting.json
|
||||
@@ -1827,45 +1761,18 @@ e4375725157ca0594a8facaa4326abecb5a00efe data/createindustry/recipes/cut_galena_
|
||||
a8b5f6ec2701058cc5a8a03d28429086e100d443 data/createindustry/recipes/cut_galena_stairs_from_stone_types_galena_stonecutting.json
|
||||
9c003bb5033de93cfbdd96dbb29700ada7e4b0d5 data/createindustry/recipes/cut_galena_wall.json
|
||||
52b7a8d7b028afd8a76b25aa433de82a54385902 data/createindustry/recipes/cut_galena_wall_from_stone_types_galena_stonecutting.json
|
||||
86aae3002e6f85a9c0e637ee6ac4e056cb034ad9 data/createindustry/recipes/cyan_concrete_slab_from_cyan_concrete_stonecutting.json
|
||||
6a14458c396bba1ff1f59ac9961ae3820ca45875 data/createindustry/recipes/cyan_concrete_stairs_from_cyan_concrete_stonecutting.json
|
||||
d899d6495f51b52673ab70094473bee78f0970a0 data/createindustry/recipes/cyan_concrete_wall_from_cyan_concrete_stonecutting.json
|
||||
4dd60c91dab6786525df4388ea338b125e2392ac data/createindustry/recipes/galena_from_stone_types_galena_stonecutting.json
|
||||
0efdebc7cc2ab10a83da366e90ab82b9d45b4c1f data/createindustry/recipes/galena_pillar_from_stone_types_galena_stonecutting.json
|
||||
19cffa02751e45cc279806a97babf2b440803f61 data/createindustry/recipes/gray_concrete_slab_from_gray_concrete_stonecutting.json
|
||||
c8df33d28867d2103bcceb87e67e5cc87113ef9c data/createindustry/recipes/gray_concrete_stairs_from_gray_concrete_stonecutting.json
|
||||
6da0a18822e7dc8635391fbebf60d170fdb64ebf data/createindustry/recipes/gray_concrete_wall_from_gray_concrete_stonecutting.json
|
||||
fa9fcb4e854749858c237a2dae2ff104836f6069 data/createindustry/recipes/green_concrete_slab_from_green_concrete_stonecutting.json
|
||||
bd87b219e3fffcf43811c8f728c09b5ca213e018 data/createindustry/recipes/green_concrete_stairs_from_green_concrete_stonecutting.json
|
||||
33107106290275c917c1373e8b4819418bded9b3 data/createindustry/recipes/green_concrete_wall_from_green_concrete_stonecutting.json
|
||||
25704cca2c6e1a8733542959c6b8cb62c4887d08 data/createindustry/recipes/layered_bauxite_from_stone_types_bauxite_stonecutting.json
|
||||
d5f15df148876382599af5ca634aa4e13355f2f8 data/createindustry/recipes/layered_galena_from_stone_types_galena_stonecutting.json
|
||||
4b2d95295687385c816c9004789fc7a6ceef876f data/createindustry/recipes/lead_bars_from_ingots_lead_stonecutting.json
|
||||
25b6a5c836bb927f542c9fe517a8dde9e56388f3 data/createindustry/recipes/lead_frame_from_ingots_lead_stonecutting.json
|
||||
87e87dd946b0ed5d8b8157e6f1958dc7605cdfa9 data/createindustry/recipes/lead_ladder_from_ingots_lead_stonecutting.json
|
||||
c9b247458d6ed97000cf99fad9996dcf384fda7e data/createindustry/recipes/lead_truss_from_ingots_lead_stonecutting.json
|
||||
85410c50443cbf2adad606ead1ec6b444a127f94 data/createindustry/recipes/light_blue_concrete_slab_from_light_blue_concrete_stonecutting.json
|
||||
4581cb14645dad16af81b59a0bdd5b42c889d872 data/createindustry/recipes/light_blue_concrete_stairs_from_light_blue_concrete_stonecutting.json
|
||||
00bc528f51bb5ef064b4ec3a9835df06baccfad8 data/createindustry/recipes/light_blue_concrete_wall_from_light_blue_concrete_stonecutting.json
|
||||
076c0732b0fe421c9fd8e2f8b64a2fc686870b0c data/createindustry/recipes/light_gray_concrete_slab_from_light_gray_concrete_stonecutting.json
|
||||
39680aded359ce3c40110365cad683740c21f96b data/createindustry/recipes/light_gray_concrete_stairs_from_light_gray_concrete_stonecutting.json
|
||||
0e37bc9cafaecdba52aadf6f6cee9e93a4ab04c1 data/createindustry/recipes/light_gray_concrete_wall_from_light_gray_concrete_stonecutting.json
|
||||
114c218adb80a3cdda3f81d82c96314bb259b5b7 data/createindustry/recipes/lime_concrete_slab_from_lime_concrete_stonecutting.json
|
||||
5bce7501f6ae6fbb035c53cfe1cf63a72c61b036 data/createindustry/recipes/lime_concrete_stairs_from_lime_concrete_stonecutting.json
|
||||
1008cfb92910d5e77dcade9edb204e6778725b47 data/createindustry/recipes/lime_concrete_wall_from_lime_concrete_stonecutting.json
|
||||
81473414d75a5278b608be086448fa0ca1138ad5 data/createindustry/recipes/magenta_concrete_slab_from_magenta_concrete_stonecutting.json
|
||||
19ac61053c8a98720080f7a51782549a210305be data/createindustry/recipes/magenta_concrete_stairs_from_magenta_concrete_stonecutting.json
|
||||
847121a62769e973e84d097a0f3b55f18a7030ae data/createindustry/recipes/magenta_concrete_wall_from_magenta_concrete_stonecutting.json
|
||||
f62e5d367c18c9802f322a37c05784fa57d1b6dc data/createindustry/recipes/nickel_bars_from_ingots_nickel_stonecutting.json
|
||||
90cdd665bcee7f1b09058f644d4178ce0c2a14b4 data/createindustry/recipes/nickel_frame_from_ingots_nickel_stonecutting.json
|
||||
18d96369990005fe7e20f58211b719f25203af40 data/createindustry/recipes/nickel_ladder_from_ingots_nickel_stonecutting.json
|
||||
2fe0e7742fc2df5ebf6a9d1ca40a9e36b1807c23 data/createindustry/recipes/nickel_truss_from_ingots_nickel_stonecutting.json
|
||||
1f5bc870fddab135da3483edb70d005b1b9177f3 data/createindustry/recipes/orange_concrete_slab_from_orange_concrete_stonecutting.json
|
||||
00fd23ccdf13b8d8bf8b85278ec07471872edbf4 data/createindustry/recipes/orange_concrete_stairs_from_orange_concrete_stonecutting.json
|
||||
b956c5c04365e2c894bfe741c577a2bdca7753da data/createindustry/recipes/orange_concrete_wall_from_orange_concrete_stonecutting.json
|
||||
d77ff5d6d99da6cd1275377e8a38980d7264284b data/createindustry/recipes/pink_concrete_slab_from_pink_concrete_stonecutting.json
|
||||
44833c1e27bf6ece90c73a4b143aeea7287b78ff data/createindustry/recipes/pink_concrete_stairs_from_pink_concrete_stonecutting.json
|
||||
9f0eba63d93066c7e1e191ad466aa3830b89c4c2 data/createindustry/recipes/pink_concrete_wall_from_pink_concrete_stonecutting.json
|
||||
5063ac5e6c029317ce9c808074bc5a61781b60cd data/createindustry/recipes/polished_cut_bauxite_from_stone_types_bauxite_stonecutting.json
|
||||
63863bef147fa85f0cc5aca000164f805a504b66 data/createindustry/recipes/polished_cut_bauxite_slab.json
|
||||
f64d9e73f878cf66c9915c41bd7c6a78ca277ba7 data/createindustry/recipes/polished_cut_bauxite_slab_from_stone_types_bauxite_stonecutting.json
|
||||
@@ -1882,13 +1789,7 @@ b0fcd376ad0c8633c10bf179f41441ec43a82459 data/createindustry/recipes/polished_cu
|
||||
9cfa3caf0b7dfe705e0c0ace179a9f1743c3b8d9 data/createindustry/recipes/polished_cut_galena_stairs_from_stone_types_galena_stonecutting.json
|
||||
52d3f5a086edb3dc21194c9d04762db7a9365e74 data/createindustry/recipes/polished_cut_galena_wall.json
|
||||
462634ffcb403f5377f7a9beeaa1f6909ae4eb71 data/createindustry/recipes/polished_cut_galena_wall_from_stone_types_galena_stonecutting.json
|
||||
75a8c6b872a3dac15f7d856be9824fa6bbf57343 data/createindustry/recipes/purple_concrete_slab_from_purple_concrete_stonecutting.json
|
||||
ae3d4290eb060fb055ba115b7423b2266f0ed3de data/createindustry/recipes/purple_concrete_stairs_from_purple_concrete_stonecutting.json
|
||||
3b33f3210dc9343ba0baed5094ba7479b7946756 data/createindustry/recipes/purple_concrete_wall_from_purple_concrete_stonecutting.json
|
||||
5e0ad39f1c6de2d3cd897ae46c47c87aeaf32369 data/createindustry/recipes/rebar_concrete_slab_from_rebar_concrete_stonecutting.json
|
||||
2786c91e864839717c3853956945e2378cf3fea0 data/createindustry/recipes/red_concrete_slab_from_red_concrete_stonecutting.json
|
||||
105a455d14fa5f0f975f5e0fdebaa19c294184ed data/createindustry/recipes/red_concrete_stairs_from_red_concrete_stonecutting.json
|
||||
26148f387f22902567389b05ea43d600b9af0276 data/createindustry/recipes/red_concrete_wall_from_red_concrete_stonecutting.json
|
||||
6f6a608aa0e725dffb9cbaba2db54efb0577b83b data/createindustry/recipes/small_bauxite_bricks_from_stone_types_bauxite_stonecutting.json
|
||||
b8d40a154023fac37543de2de2d5e57808682b85 data/createindustry/recipes/small_bauxite_brick_slab.json
|
||||
ea81ff80cfbb97837fb58a9b3413641acfce0f74 data/createindustry/recipes/small_bauxite_brick_slab_from_stone_types_bauxite_stonecutting.json
|
||||
@@ -1908,17 +1809,10 @@ d552da0f118007c997159e5bc12899e46325507b data/createindustry/recipes/small_galen
|
||||
76687910efa99f4c1a04429ef5f6846c594f97eb data/createindustry/recipes/steel_bars_from_ingots_steel_stonecutting.json
|
||||
4bd3f4b3e1612feee9253f9a77ffc8b03afca749 data/createindustry/recipes/steel_ladder_from_ingots_steel_stonecutting.json
|
||||
3a8f9eee9835e5400a9dd664a150985ce336fa61 data/createindustry/recipes/steel_scaffolding_from_ingots_steel_stonecutting.json
|
||||
62e7068babd8cb08456f175b3689a6be80428c9c data/createindustry/recipes/white_concrete_slab_from_white_concrete_stonecutting.json
|
||||
c6780e7a1826925eeca6ec387e64c9ca542d94ca data/createindustry/recipes/white_concrete_stairs_from_white_concrete_stonecutting.json
|
||||
e030a640c28336c5541d022d00a68b9abc640d2e data/createindustry/recipes/white_concrete_wall_from_white_concrete_stonecutting.json
|
||||
dad9566f47a93c6e34c837223d939fdf3eebaac5 data/createindustry/recipes/yellow_concrete_slab_from_yellow_concrete_stonecutting.json
|
||||
792e974fbbc0caf8d9f0fecb1ac1780b3f58acab data/createindustry/recipes/yellow_concrete_stairs_from_yellow_concrete_stonecutting.json
|
||||
1e45593e1375420bd23210dc0f9099a337e94c78 data/createindustry/recipes/yellow_concrete_wall_from_yellow_concrete_stonecutting.json
|
||||
0165af18f74ef648bf5bc43fa6a3e1bfecc28d37 data/createindustry/recipes/zinc_frame_from_ingots_zinc_stonecutting.json
|
||||
daa491cd60ae376335b7127363d95f371386facf data/createindustry/recipes/zinc_truss_from_ingots_zinc_stonecutting.json
|
||||
9a8080fd49571cad3f24ea0807d9c0c44c117734 data/createindustry/tags/blocks/air_intake_transparent.json
|
||||
503c7a40ea8a115006c886e6491ac53f80e7e6fe data/createindustry/tags/fluids/flammable.json
|
||||
87856087484f006ce6cb7fd66fb9f604230cf4d0 data/createindustry/tags/fluids/gas.json
|
||||
16e1a691a318f0b61485f03f9a53518f6dac1172 data/createindustry/tags/fluids/flammable.json
|
||||
a02b460633b0dca808eb512863a03012741681bf data/createindustry/tags/fluids/gas.json
|
||||
9790752bec1ad9dc61eb08c66e62caa28516713c data/createindustry/tags/items/stone_types/bauxite.json
|
||||
452f588ae1f56a1550e8474a84475e247702956d data/createindustry/tags/items/stone_types/galena.json
|
||||
f06c7fc56a3fd8c006ab1a4dc1bea7d249f5fa1a data/create/tags/blocks/casing.json
|
||||
@@ -1954,7 +1848,6 @@ b155c2a248cf00210ec9bf5f667f5311fae11fac data/forge/tags/fluids/lpg.json
|
||||
7ce9a02e99bee89703ff24fdbe21abcce1347a6a data/forge/tags/fluids/molten_steel.json
|
||||
43cc953e0d37f106d45720e3b60d68b1326dc918 data/forge/tags/fluids/naphtha.json
|
||||
fdf36a6ebc5ded27ea102a86a012e1e67cc04735 data/forge/tags/items/buckets/air.json
|
||||
15b17fd094ff312b575c078bcca4c21fffb4a6eb data/forge/tags/items/buckets/blast_furnace_gas.json
|
||||
5d76fa22c3b4c2ed6179a747ee09e1f9a08c7330 data/forge/tags/items/buckets/butane.json
|
||||
e984f557bf075b4520d7f5b4289495d42cdef8bf data/forge/tags/items/buckets/carbon_dioxide.json
|
||||
56e275681f5a224499cd75db791b9fdb75d41de4 data/forge/tags/items/buckets/creosote.json
|
||||
@@ -1962,7 +1855,6 @@ e984f557bf075b4520d7f5b4289495d42cdef8bf data/forge/tags/items/buckets/carbon_di
|
||||
91713040b0e0f63ca939cd49cb6790ba8f4bbe56 data/forge/tags/items/buckets/diesel.json
|
||||
71b01dc21125186f1d721142e6b1fe5fa8c36b44 data/forge/tags/items/buckets/ethylene.json
|
||||
cccd098fb747b51c1f93b9ab165dfcc84ee86685 data/forge/tags/items/buckets/gasoline.json
|
||||
5fe1cb81af1dd19795b8b643cfc435871636bfda data/forge/tags/items/buckets/heated_air.json
|
||||
089a1707a509a2b162328f22e140b12f3ffc7ed6 data/forge/tags/items/buckets/heavy_oil.json
|
||||
e381969c78533c39cd1e932732de254e2c304cd4 data/forge/tags/items/buckets/kerosene.json
|
||||
701ce1eb09cd3e0d5fdd02a12646293fab95cc71 data/forge/tags/items/buckets/lpg.json
|
||||
@@ -2016,14 +1908,14 @@ bfe14208dfd52956c9f8ef191e52402124ef9197 data/minecraft/tags/blocks/azalea_root_
|
||||
bfe14208dfd52956c9f8ef191e52402124ef9197 data/minecraft/tags/blocks/dripstone_replaceable_blocks.json
|
||||
bfe14208dfd52956c9f8ef191e52402124ef9197 data/minecraft/tags/blocks/lush_ground_replaceable.json
|
||||
0135251ca2defce82e1a0a793b1cf049410e9e7e data/minecraft/tags/blocks/mineable/axe.json
|
||||
ca051180bd0a3cb105653f7ee369ff4b0926540e data/minecraft/tags/blocks/mineable/pickaxe.json
|
||||
d192f035136a3a60c6e9dbf3587ff9595f0c1771 data/minecraft/tags/blocks/mineable/pickaxe.json
|
||||
bfe14208dfd52956c9f8ef191e52402124ef9197 data/minecraft/tags/blocks/moss_replaceable.json
|
||||
442d600c050b48c5627c116134ba76ba64ad8427 data/minecraft/tags/blocks/needs_diamond_tool.json
|
||||
8a3dfd27452a21f14ee2a9936ddc357c3dbb9ae4 data/minecraft/tags/blocks/needs_diamond_tool.json
|
||||
7f9d5c5e9c71eab5cf9c876e16959b9a741db3c1 data/minecraft/tags/blocks/needs_iron_tool.json
|
||||
f4bb81f2f2e310a52829280124a1859ec391cdad data/minecraft/tags/blocks/needs_stone_tool.json
|
||||
69c0ae1c2e6a270df5095fa1e5e399ae7a6a4697 data/minecraft/tags/blocks/slabs.json
|
||||
22dcdc168532e6a58d1857d42a938b7077b453db data/minecraft/tags/blocks/stairs.json
|
||||
c24c3718cb06e9140b4328b7366a97c9b77c23bc data/minecraft/tags/blocks/walls.json
|
||||
242f9a36d2b0e7c0bd5578d9de3af023c9d4dcda data/minecraft/tags/blocks/needs_stone_tool.json
|
||||
78373a936afe2a40d0a891f4498ab54029245e44 data/minecraft/tags/blocks/slabs.json
|
||||
b8ac4ce0d3db740b9d02b97853804db08ed0826c data/minecraft/tags/blocks/stairs.json
|
||||
4e45d4da715835a2e978e35791b90fe7e97da935 data/minecraft/tags/blocks/walls.json
|
||||
23cf02cfaf4f4efd7feb2a328e623fc63523216b data/minecraft/tags/blocks/wooden_doors.json
|
||||
23cf02cfaf4f4efd7feb2a328e623fc63523216b data/minecraft/tags/items/doors.json
|
||||
78373a936afe2a40d0a891f4498ab54029245e44 data/minecraft/tags/items/slabs.json
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
// 1.19.2 2024-07-22T12:33:14.6532438 TFMG's Sequenced Assembly Recipes
|
||||
258d38baea53fb3126ec94f06a5d5e6e6c14d7d1 data/createindustry/recipes/sequenced_assembly/gasoline_engine.json
|
||||
e30d3f96b49da40f39cc488873345e2793c4f8d8 data/createindustry/recipes/sequenced_assembly/heavy_plate.json
|
||||
da3f1fceaf82a27b879d176056d3c541bb35ce99 data/createindustry/recipes/sequenced_assembly/lpg_engine.json
|
||||
83bf2c416a7ac7c7958dd4ab8feedfd9429d8dad data/createindustry/recipes/sequenced_assembly/steel_mechanism.json
|
||||
bfac9c93d67d83a0761bb65bb12346514639ad51 data/createindustry/recipes/sequenced_assembly/turbine_engine.json
|
||||
@@ -1,57 +0,0 @@
|
||||
// 1.19.2 2024-07-22T19:15:46.2532461 TFMG's Processing Recipes
|
||||
b37b7a8bacea5e80c7e080905b858b915af79763 data/createindustry/recipes/casting/steel.json
|
||||
bfa68e40711dec40213c454b51825a08fa7135bf data/createindustry/recipes/coking/charcoal.json
|
||||
54e9218c4e8656d38cf51f2af80652a1bd251593 data/createindustry/recipes/coking/coal_coke.json
|
||||
6fd40a434761c8167eff8b8a7ade51f4fd1be313 data/createindustry/recipes/compacting/bitumen.json
|
||||
52c90dd510024a3e1bdf6ae5990d4090927ac836 data/createindustry/recipes/compacting/cinderflourblock.json
|
||||
180ceaee957572e9053b5e2165481dd56b3b2307 data/createindustry/recipes/compacting/plastic_molding.json
|
||||
d98e44345a87579988171eb09a36d70f6fb368d6 data/createindustry/recipes/compacting/steel_block.json
|
||||
a8b002d3bd79ea96c81cb5464026d40aeb919573 data/createindustry/recipes/compacting/thermite_powder.json
|
||||
ae0f1f08c8804c0917062bc4c27c3b703167c275 data/createindustry/recipes/crushing/bauxite_recycling.json
|
||||
8316b31edf4ef34ca86cd0c45b4da63e0f9a4143 data/createindustry/recipes/crushing/coal_coke_dust.json
|
||||
da04be7e09f0619a70ce0381bf70b2f18f8be1b5 data/createindustry/recipes/crushing/copper_sulfate.json
|
||||
6f659f695f6c4d2ac797054aba421d870dc59117 data/createindustry/recipes/crushing/galena_recycling.json
|
||||
513e6b31cd5bda6a8f587a3002791624a4dc512b data/createindustry/recipes/crushing/lignite.json
|
||||
6fd8239d1a5d74e4396b4678726b0b4284344e11 data/createindustry/recipes/crushing/limesand.json
|
||||
c3d2fe15beb23f8cf18d7a848caefbaa06f335f2 data/createindustry/recipes/crushing/saltpeter.json
|
||||
10bbf46b2a239ed623f16dbf3bdc84233280511b data/createindustry/recipes/crushing/sulfur.json
|
||||
2375441aac6ee7dbbe6e5267a3d6415ecbfe3181 data/createindustry/recipes/distillation/crude_oil.json
|
||||
e892ae58a62b6418064d356119b2fcd606b844fa data/createindustry/recipes/distillation/crude_oil_no_naphtha.json
|
||||
dd6e8cf86ffa4ed576f46bfda151d242bb80de64 data/createindustry/recipes/distillation/heavy_oil.json
|
||||
383264cd5bf9809d9787f403677bc2382b369eb7 data/createindustry/recipes/distillation/naphtha.json
|
||||
f978eccd4691cdf7f79a854357abbc8b1307341b data/createindustry/recipes/filling/air_tank.json
|
||||
45ac3b54e9a50b2a47a1bfedcfc6e6e674fdc47f data/createindustry/recipes/filling/bottle_of_battery_acid.json
|
||||
ee5247aa1b17d5b14df206af42b3c7905c50bb94 data/createindustry/recipes/filling/bottle_of_concrete.json
|
||||
812a539e4f87190ee283c5add67d7b125badebc8 data/createindustry/recipes/filling/butane_tank.json
|
||||
e21db6e692dd85709d0c00559fc9220c2a2e6530 data/createindustry/recipes/filling/carbon_dioxide_tank.json
|
||||
2d8da4d48e238d543e8129895ca59a0935ad1067 data/createindustry/recipes/filling/ethylene_tank.json
|
||||
283aa7be890ca3fbd25357c8be288124cdbae975 data/createindustry/recipes/filling/hardened_wood_creosote.json
|
||||
2b950614669ac2bb8463c48e606ae88f796eb2fa data/createindustry/recipes/filling/lpg_tank.json
|
||||
7c1adb066b59fa889525812f48432cdafce178c3 data/createindustry/recipes/filling/napalm_potato.json
|
||||
821ea765f7054283f6bf8d04e0ec1c82b8cfcf09 data/createindustry/recipes/filling/neon_tank.json
|
||||
240a0d9935faa5eb8024245f1bf3ee2a83e23856 data/createindustry/recipes/filling/propane_tank.json
|
||||
434aa03777ec738eeac96443ca45046fa2f1037b data/createindustry/recipes/filling/propylene_tank.json
|
||||
734bb4adb55a628db6d205901dda3c35a8489855 data/createindustry/recipes/gas_blasting/heated_air.json
|
||||
0939d97f720d323a0aec8f1f1e6c02698c634a79 data/createindustry/recipes/industrial_blasting/steel.json
|
||||
9d96784b0740ffc3ceb0f11679bef7e26f6061d5 data/createindustry/recipes/item_application/heavy_machinery_casing.json
|
||||
65ea7b81b508a91bb849cc64744bc11aa74082f6 data/createindustry/recipes/item_application/steel_casing.json
|
||||
82ddfc0e1f1077beb8f3a6b20fb6960312411217 data/createindustry/recipes/milling/limesand.json
|
||||
e59186ee803780bdbe9fae2212433476d2459f0f data/createindustry/recipes/mixing/blasting_mixture.json
|
||||
24faf88c6b9dc8e53c99ca690fa2a56bafc634ec data/createindustry/recipes/mixing/cast_iron_ingot.json
|
||||
9805ae2291c59912f5dea85061e98f85b8820705 data/createindustry/recipes/mixing/cement.json
|
||||
30bd501977960395aa9c1d7263eafc790f4c14cb data/createindustry/recipes/mixing/concrete_mixture.json
|
||||
ead743154be8c100fea443696d3c93835ac1c584 data/createindustry/recipes/mixing/concrete_mixture_from_slag.json
|
||||
63ab0af81c7c3c721d1192ac610b61756c3643dc data/createindustry/recipes/mixing/cooling_fluid.json
|
||||
86220a406057c4281aca95f93589e5721d2b8b82 data/createindustry/recipes/mixing/copper_sulfate.json
|
||||
d714d33c8ee6cd65f925464d663e06bcbd87709c data/createindustry/recipes/mixing/gun_powder.json
|
||||
2f98cbeaab5ebaffea418d448ed5ea481237adad data/createindustry/recipes/mixing/heated_air_tank.json
|
||||
cab04677cf05d6c9f14bcaa6e201c3240c0f6998 data/createindustry/recipes/mixing/liquid_asphalt.json
|
||||
01351b9d90e07c1396b574aab4fc6e0e9cdb1b2a data/createindustry/recipes/mixing/liquid_concrete.json
|
||||
70db70b38822f87335fb197912837bd2ebd46348 data/createindustry/recipes/mixing/liquid_plastic_from_ethylene.json
|
||||
84830703ef22cc705280f136044d83a2ee08baff data/createindustry/recipes/mixing/liquid_plastic_from_propylene.json
|
||||
df0cee89322a498b43363ceeb226b551f7dd4803 data/createindustry/recipes/mixing/napalm.json
|
||||
5d287309d6d632d44e73a291b6da191e175a98b4 data/createindustry/recipes/mixing/neon.json
|
||||
e8349432c4aa738fa5992294353ea18dafced4e9 data/createindustry/recipes/mixing/slag.json
|
||||
4a84b6e28baa9b148f0a87202e510ecca5882165 data/createindustry/recipes/mixing/sulfuric_acid.json
|
||||
26a945e79d613057da87156c0c859e3319a42eb8 data/createindustry/recipes/mixing/zinc_sulfate.json
|
||||
b30fc6733ead4e816811f4302159279adc2f485e data/createindustry/recipes/pressing/synthetic_leather.json
|
||||
@@ -0,0 +1,2 @@
|
||||
// 1.19.2 2024-07-04T21:35:03.7066189 Create: The Factory Must Grow's lang merger
|
||||
667bd974985484dace99ea6a538d4b4bf26283f8 assets/createindustry/lang/en_us.json
|
||||
@@ -1,19 +0,0 @@
|
||||
// 1.19.2 2024-07-22T12:33:14.6532438 TFMG's Mechanical Crafting Recipes
|
||||
943bb90b6ad0c793849cf95481b330abac7d7b14 data/createindustry/recipes/mechanical_crafting/advanced_potato_cannon.json
|
||||
186a2a531980ac2f606a78a1b911fe0e2625b16d data/createindustry/recipes/mechanical_crafting/diesel_engine.json
|
||||
6a98e0b3dffc6f85248962a6e6394aeb051ff68e data/createindustry/recipes/mechanical_crafting/engine_base.json
|
||||
b82c5db4030da57245d2a706e0d35f53bf34e453 data/createindustry/recipes/mechanical_crafting/engine_chamber.json
|
||||
6de25f528d7b58c42be4a75457b5a568c5d530a0 data/createindustry/recipes/mechanical_crafting/flamethrower.json
|
||||
c479fcfc368163072ee415028bed90890f2ac9d5 data/createindustry/recipes/mechanical_crafting/generator.json
|
||||
e2ccd4d3cee345a55beac281c6dc6ae46c6b744f data/createindustry/recipes/mechanical_crafting/large_radial_engine.json
|
||||
f56738f712c94c7de85f801533c4891e161f8923 data/createindustry/recipes/mechanical_crafting/lithium_blade.json
|
||||
df8d95c2c1e0df5028f47cde8deaca9df890e8d1 data/createindustry/recipes/mechanical_crafting/pumpjack_base.json
|
||||
ecf585a454dc7a12ab50edf689bc9e8af91f07ef data/createindustry/recipes/mechanical_crafting/pumpjack_crank.json
|
||||
2a62e8e8f0e160fb7d893ab31d4426a3757f65e7 data/createindustry/recipes/mechanical_crafting/quad_potato_cannon.json
|
||||
500cde4e41bef594b28e8c628394147ac5daef49 data/createindustry/recipes/mechanical_crafting/radial_engine.json
|
||||
6ee95c0ef86697df16cbe602fa15c3911084f84c data/createindustry/recipes/mechanical_crafting/rotor.json
|
||||
f6b1c4af8f20cfc987de77b0b611452f954a2bd6 data/createindustry/recipes/mechanical_crafting/spark_plug.json
|
||||
96fa8c1bf732f1c5f4b59d78185ca6e9dc92d426 data/createindustry/recipes/mechanical_crafting/stator.json
|
||||
bf8682fa294a02a842d1ce74b7754753a18a5b26 data/createindustry/recipes/mechanical_crafting/steel_distillation_controller.json
|
||||
bc6f7b98d34b36a35e2d905e1207464932e4fa8a data/createindustry/recipes/mechanical_crafting/steel_distillation_output.json
|
||||
ea4ef2ce08d85c2430846c95a2c867ea5e2ba2ec data/createindustry/recipes/mechanical_crafting/surface_scanner.json
|
||||
@@ -1 +0,0 @@
|
||||
// 1.19.2 2024-07-22T12:33:14.6422344 TFMG's Standard Recipes
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,running=false": {
|
||||
"model": "createindustry:block/blast_stove/block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,running=true": {
|
||||
"model": "createindustry:block/blast_stove/block_running",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,running=false": {
|
||||
"model": "createindustry:block/blast_stove/block"
|
||||
},
|
||||
"facing=north,running=true": {
|
||||
"model": "createindustry:block/blast_stove/block_running"
|
||||
},
|
||||
"facing=south,running=false": {
|
||||
"model": "createindustry:block/blast_stove/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,running=true": {
|
||||
"model": "createindustry:block/blast_stove/block_running",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,running=false": {
|
||||
"model": "createindustry:block/blast_stove/block",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,running=true": {
|
||||
"model": "createindustry:block/blast_stove/block_running",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/fluid_output"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,6 @@
|
||||
{
|
||||
"OwO": "∩ʍ∩",
|
||||
"block.createindustry.accumulator": "ɹoʇɐןnɯnɔɔⱯ",
|
||||
"block.createindustry.accumulator.tooltip.summary": "do⟘ ǝɥʇ ɯoɹɟ ʎןʍoןS pǝʇʇndʇno ǝq uɐɔ ʇɐɥʇ )ɯoʇʇoq ɯoɹɟ pǝʇɹǝsuı( ʎbɹǝuǝ ɟo ʇunoɯⱯ ǝbɹɐꞀ ɐ spןoH",
|
||||
"block.createindustry.air_intake": "ǝʞɐʇuI ɹıⱯ",
|
||||
"block.createindustry.aluminium_cable_hub.tooltip.summary": "ǝuoʇspǝɹ ɥʇıʍ ɟɟo pǝuɹnʇ ǝq uɐƆ",
|
||||
"block.createindustry.aluminum_bars": "sɹɐᗺ ɯnuıɯnןⱯ",
|
||||
"block.createindustry.aluminum_block": "ɯnuıɯnןⱯ ɟo ʞɔoןᗺ",
|
||||
"block.createindustry.aluminum_cable_hub": "qnH ǝןqɐƆ ɯnuıɯnןⱯ",
|
||||
@@ -25,14 +22,12 @@
|
||||
"block.createindustry.black_concrete_stairs": "sɹıɐʇS ǝʇǝɹɔuoƆ ʞɔɐןᗺ",
|
||||
"block.createindustry.black_concrete_wall": "ןןɐM ǝʇǝɹɔuoƆ ʞɔɐןᗺ",
|
||||
"block.createindustry.blast_furnace_output": "ʇndʇnO ǝɔɐuɹnℲ ʇsɐןᗺ",
|
||||
"block.createindustry.blast_stove": "ǝʌoʇS ʇsɐןᗺ",
|
||||
"block.createindustry.blue_caution_block": "ʞɔoןᗺ uoıʇnɐƆ ǝnןᗺ",
|
||||
"block.createindustry.blue_concrete": "ǝʇǝɹɔuoƆ ǝnןᗺ",
|
||||
"block.createindustry.blue_concrete_slab": "qɐןS ǝʇǝɹɔuoƆ ǝnןᗺ",
|
||||
"block.createindustry.blue_concrete_stairs": "sɹıɐʇS ǝʇǝɹɔuoƆ ǝnןᗺ",
|
||||
"block.createindustry.blue_concrete_wall": "ןןɐM ǝʇǝɹɔuoƆ ǝnןᗺ",
|
||||
"block.createindustry.brass_cable_hub": "qnH ǝןqɐƆ ssɐɹᗺ",
|
||||
"block.createindustry.brass_cable_hub.tooltip.summary": "ǝuoʇspǝɹ ɥʇıʍ ɟɟo pǝuɹnʇ ǝq uɐƆ",
|
||||
"block.createindustry.brass_fluid_valve": "ǝʌןɐΛ pınןℲ ssɐɹᗺ",
|
||||
"block.createindustry.brass_frame": "ǝɯɐɹℲ ssɐɹᗺ",
|
||||
"block.createindustry.brass_mechanical_pump": "dɯnԀ ןɐɔıuɐɥɔǝW ssɐɹᗺ",
|
||||
@@ -44,12 +39,9 @@
|
||||
"block.createindustry.brown_concrete_slab": "qɐןS ǝʇǝɹɔuoƆ uʍoɹᗺ",
|
||||
"block.createindustry.brown_concrete_stairs": "sɹıɐʇS ǝʇǝɹɔuoƆ uʍoɹᗺ",
|
||||
"block.createindustry.brown_concrete_wall": "ןןɐM ǝʇǝɹɔuoƆ uʍoɹᗺ",
|
||||
"block.createindustry.cable connector.tooltip.summary": "‾ʎbɹǝuƎ‾ ʇɹodsuɐɹʇ ɯǝɥʇ buıʞɯɐ ‾ǝןqɐƆ ɹǝddoƆ‾ ɐ ɥʇıʍ sɹoʇɔǝuuoɔ ǝןqɐɔ ᄅ ʞɔıןɔ ʇɥbıᴚ",
|
||||
"block.createindustry.cable_connector": "ɹoʇɔǝuuoƆ ǝןqɐƆ",
|
||||
"block.createindustry.cable_tube": "ǝqn⟘ ǝןqɐƆ",
|
||||
"block.createindustry.cable_tube.tooltip.summary": "ǝןqɐƆ ɐ ǝʞıן ʎbɹǝuƎ sʇɹodsuɐɹ⟘",
|
||||
"block.createindustry.capacitor": "ɹoʇıɔɐdɐƆ",
|
||||
"block.createindustry.capacitor.tooltip.summary": "do⟘ ǝɥʇ ɯoɹɟ ʎןʞɔınὉ pǝʇʇndʇno ǝq uɐɔ ʇɐɥʇ )ɯoʇʇoq ɯoɹɟ pǝʇɹǝsuı( ʎbɹǝuǝ ɟo ʇunoɯⱯ ןןɐɯS ɐ spןoH",
|
||||
"block.createindustry.cast_iron_bars": "sɹɐᗺ uoɹI ʇsɐƆ",
|
||||
"block.createindustry.cast_iron_block": "uoɹI ʇsɐƆ ɟo ʞɔoןᗺ",
|
||||
"block.createindustry.cast_iron_fluid_valve": "ǝʌןɐΛ pınןℲ uoɹI ʇsɐƆ",
|
||||
@@ -68,23 +60,14 @@
|
||||
"block.createindustry.coal_coke_block": "ǝʞoƆ ןɐoƆ ɟo ʞɔoןᗺ",
|
||||
"block.createindustry.coke_oven": "uǝʌO ǝʞoƆ",
|
||||
"block.createindustry.compact_engine": "ǝuıbuƎ ʇɔɐdɯoƆ",
|
||||
"block.createindustry.compact_engine.behaviour1": "ʇı oʇuı pǝʇʇnduı ‾ןɐubıS ǝuoʇspǝᴚ‾ ǝɥʇ ɟo ɥʇbuǝɹʇs ǝɥʇ uo pǝsɐq ‾WԀᴚ‾ ʇndʇno ןןıM",
|
||||
"block.createindustry.compact_engine.condition1": "oʇuı ǝʇosoǝɹƆ ǝuıןosɐ⅁ uǝɥM",
|
||||
"block.createindustry.compact_engine.tooltip.summary": "ǝuıןosɐ⅁ ɯoɹɟ uoıʇɐʇoᴚ sǝʞɐW",
|
||||
"block.createindustry.concrete": "ǝʇǝɹɔuoƆ",
|
||||
"block.createindustry.concrete_slab": "qɐןS ǝʇǝɹɔuoƆ",
|
||||
"block.createindustry.concrete_stairs": "sɹıɐʇS ǝʇǝɹɔuoƆ",
|
||||
"block.createindustry.concrete_wall": "ןןɐM ǝʇǝɹɔuoƆ",
|
||||
"block.createindustry.converter": "ɹǝʇɹǝʌuoƆ",
|
||||
"block.createindustry.converter.behaviour1": "‾⅁WℲ⟘‾ ɥʇıʍ ǝןqɐsn ʇı buıʞɐɯ ‾ǝbɐʇןoΛ‾ ɥʇıM ƎℲ sʇndʇno ‾do⟘‾ ǝɥ⟘",
|
||||
"block.createindustry.converter.condition1": "ɯoʇʇoᗺ ɯoɹɟ ƎℲ ʇnԀ uǝɥM",
|
||||
"block.createindustry.converter.tooltip.summary": "ǝbɐʇןoʌ buıppɐ ʎq ⅁WℲ⟘ ɥʇıʍ ǝןqıʇɐdɯoɔ spoɯ ɹǝɥʇo sǝʞɐW",
|
||||
"block.createindustry.cooling_fluid": "pınןℲ buıןooƆ",
|
||||
"block.createindustry.copper_cable_hub": "qnH ǝןqɐƆ ɹǝddoƆ",
|
||||
"block.createindustry.copper_cable_hub.tooltip.summary": "ǝuoʇspǝɹ ɥʇıʍ ɟɟo pǝuɹnʇ ǝq uɐƆ",
|
||||
"block.createindustry.copper_coil": "ןıoƆ ɹǝddoƆ",
|
||||
"block.createindustry.copper_coil.tooltip.behaviour1": "sɹǝʍoʇ ǝʌıʇɔǝdsǝɹ ɹıǝɥʇ ɟo doʇ ǝɥʇ uo pǝʇʇndʇno puɐ pǝʇʇnduı ɥʇoq sı ʎbɹǝuƎ ˙ʇndʇno ǝɥʇ ʇı ǝʞɐɯ oʇ ɥɔuǝɹʍ ɐ ɥʇıʍ ɹǝʍoʇ ɹǝbɹɐן ǝɥʇ uı ʞɔoןq doʇ ǝɥʇ ʞɔıןƆ-ᴚ ˙buıɥɔnoʇ sʞɔoןq doʇ ɹıǝɥʇ ɥʇıʍ puɐ ʇɥbıǝɥ uı sʞɔoןq ϛ xɐɯ ɥʇoq 'ɹǝɥʇo ǝɥʇ uɐɥʇ ɹǝbɹɐן ʞɔoןq Ɩ ʇsɐǝןʇɐ ǝuo 'ɹǝɥʇoɥɔɐǝ ɯoɹɟ ʞɔoןq ǝuo ɹo oʇ ʇxǝu ɹǝɥʇıǝ sןıoɔ ɟo sɹǝʍoʇ oʇ ǝʌɐɥ oʇ ǝʌɐɥ noʎ ǝbɐʇןoʌ ǝsɐǝɹɔuı o⟘",
|
||||
"block.createindustry.copper_coil.tooltip.summary": "ǝbɐʇןoΛ sǝsɐǝɹɔuI",
|
||||
"block.createindustry.copper_encased_aluminum_pipe": "ǝdıԀ ɯnuıɯnןⱯ pǝsɐɔuƎ ɹǝddoƆ",
|
||||
"block.createindustry.copper_encased_brass_pipe": "ǝdıԀ ssɐɹᗺ pǝsɐɔuƎ ɹǝddoƆ",
|
||||
"block.createindustry.copper_encased_cast_iron_pipe": "ǝdıԀ uoɹI ʇsɐƆ pǝsɐɔuƎ ɹǝddoƆ",
|
||||
@@ -94,9 +77,7 @@
|
||||
"block.createindustry.copper_truss": "ssnɹ⟘ ɹǝddoƆ",
|
||||
"block.createindustry.copycat_cable_base": "ǝsɐᗺ ǝןqɐƆ ʇɐɔʎdoƆ",
|
||||
"block.createindustry.copycat_cable_block": "ʞɔoןᗺ ǝןqɐƆ ʇɐɔʎdoƆ",
|
||||
"block.createindustry.copycat_cable_block.tooltip.summary": "ǝuoʇspǝɹ ɥʇıʍ ɟɟo pǝuɹnʇ ǝq uɐƆ",
|
||||
"block.createindustry.creative_generator": "ɹoʇɐɹǝuǝ⅁ ǝʌıʇɐǝɹƆ",
|
||||
"block.createindustry.creative_generator.tooltip.summary": "ןǝuɐd ʇnduı sʇı uo ǝnןɐʌ ǝɥʇ uo pǝsɐq ʎbɹǝuǝ sʇndʇnO",
|
||||
"block.createindustry.creosote": "ǝʇosoǝɹƆ",
|
||||
"block.createindustry.crude_oil": "ןıO ǝpnɹƆ",
|
||||
"block.createindustry.cut_bauxite": "ǝʇıxnɐᗺ ʇnƆ",
|
||||
@@ -124,50 +105,30 @@
|
||||
"block.createindustry.deepslate_lithium_ore": "ǝɹO ɯnıɥʇıꞀ ǝʇɐןsdǝǝᗡ",
|
||||
"block.createindustry.deepslate_nickel_ore": "ǝɹO ןǝʞɔıN ǝʇɐןsdǝǝᗡ",
|
||||
"block.createindustry.diagonal_cable_block": "ʞɔoןᗺ ǝןqɐƆ ןɐuobɐıᗡ",
|
||||
"block.createindustry.diagonal_cable_block.tooltip.summary": ")ʎןןɐuobɐıp ʇnᗺ( ǝןqɐƆ ɐ ǝʞıן ʎbɹǝuƎ sʇɹodsuɐɹ⟘",
|
||||
"block.createindustry.diesel": "ןǝsǝıᗡ",
|
||||
"block.createindustry.diesel_engine": "ǝuıbuƎ ןǝsǝıᗡ",
|
||||
"block.createindustry.diesel_engine_expansion": "uoısuɐdxƎ ǝuıbuƎ ןǝsǝıᗡ",
|
||||
"block.createindustry.electric_casing": "buısɐƆ ɔıɹʇɔǝןƎ",
|
||||
"block.createindustry.electric_motor": "ɹoʇoW ɔıɹʇɔǝןƎ",
|
||||
"block.createindustry.electric_motor.tooltip.summary": ")ǝpıs uo ǝןqɐɹnbıɟuoɔ ɯdɹ( uoıʇɐʇoɹ oʇ ʎbɹǝuǝ sǝbuɐɥƆ",
|
||||
"block.createindustry.energy_meter": "ɹǝʇǝW ʎbɹǝuƎ",
|
||||
"block.createindustry.energy_meter.condition1": "ǝɔɹnoS ɹǝʍoԀ uo ʇnd uǝɥM",
|
||||
"block.createindustry.energy_meter.condition2": "sǝןbbo⅁ s,ɹǝǝuıbuƎ ɥʇıʍ uo pǝʞooן uǝɥM",
|
||||
"block.createindustry.energy_meter.tooltip.behaviour1": "‾ǝɔɹnoS ɹǝʍoԀ‾ ǝɥʇ ɟo ‾ʎbɹǝuƎ‾ ǝɥʇ sǝɹnsɐǝW",
|
||||
"block.createindustry.energy_meter.tooltip.behaviour2": "ʎbɹǝuǝ sǝɔɹnos ǝɥʇ uo oɟuı pǝןıɐʇǝp sʍoɥS",
|
||||
"block.createindustry.energy_meter.tooltip.summary": "ʎbɹǝuǝ sǝɹnsɐǝW",
|
||||
"block.createindustry.exhaust": "ʇsnɐɥxƎ",
|
||||
"block.createindustry.factory_floor": "ɹooןℲ ʎɹoʇɔɐℲ",
|
||||
"block.createindustry.factory_floor_slab": "qɐןS ɹooןℲ ʎɹoʇɔɐℲ",
|
||||
"block.createindustry.factory_floor_stairs": "sɹıɐʇS ɹooןℲ ʎɹoʇɔɐℲ",
|
||||
"block.createindustry.firebox": "xoqǝɹıℲ",
|
||||
"block.createindustry.firebox.condition1": "oʇuı sǝןqɐuɹnq pǝʇʇnduı uǝɥM",
|
||||
"block.createindustry.firebox.tooltip.behaviour1": "ʇı ʇɐǝɥɹǝdns oʇ ʎɐʍ ou sı ǝɹǝɥʇ 'ןǝnɟ ɟo ʇno sunɹ ʇı ןıʇun ‾ɹǝuɹnᗺ ǝzɐןᗺ‾ ɐ sɐ ʇɔɐ ןןıʍ ‾xoqǝɹıℲ‾ ǝɥ⟘",
|
||||
"block.createindustry.firebox.tooltip.summary": "ɹǝuɹnq ǝzɐןq ɐ sɐ uoıʇɔunɟ oʇ sǝןqɐuɹnq sǝs∩",
|
||||
"block.createindustry.fireclay": "ʎɐןɔǝɹıℲ",
|
||||
"block.createindustry.fireclay.tooltip.summary": "pןɹoʍɹǝʌo ǝɥʇ uı suıǝʌ punoɹbɹǝpun uı punoɟ sı ʇI",
|
||||
"block.createindustry.fireproof_brick_reinforcement": "ʇuǝɯǝɔɹoɟuıǝᴚ ʞɔıɹᗺ ɟooɹdǝɹıℲ",
|
||||
"block.createindustry.fireproof_bricks": "sʞɔıɹᗺ ɟooɹdǝɹıℲ",
|
||||
"block.createindustry.flarestack": "ʞɔɐʇsǝɹɐןℲ",
|
||||
"block.createindustry.flarestack.tooltip.behaviour1": "ǝpısuı pǝdɯnd sı ʇɐɥʍ sǝʇǝןǝᗡ",
|
||||
"block.createindustry.flarestack.tooltip.condition1": "ɯoʇʇoq ǝɥʇ ɯoɹɟ oʇuı sǝsɐ⅁/spınןℲ ǝןqɐuɹnq pǝdɯnԀ uǝɥM",
|
||||
"block.createindustry.flarestack.tooltip.summary": "sʇɔnpoɹd ןıo pǝpǝǝuun suɹnᗺ",
|
||||
"block.createindustry.fluid_output": "ʇndʇnO pınןℲ",
|
||||
"block.createindustry.formwork_block": "ʞɔoןᗺ ʞɹoʍɯɹoℲ",
|
||||
"block.createindustry.formwork_block.tooltip.behaviour1": "sʞɔoןq pıןos oʇuı suɹnʇ ʎןןɐnʇuǝʌǝ ǝʇǝɹɔuoƆ sıɥʇ '‾ǝʇǝɹɔuoƆ pınbıꞀ‾ ɥʇıʍ ʇno sןןıℲ",
|
||||
"block.createindustry.formwork_block.tooltip.condition1": "oʇuı ǝʇǝɹɔuoɔ pǝdɯnԀ uǝɥM",
|
||||
"block.createindustry.formwork_block.tooltip.summary": "sʞɔoןq ǝʇǝɹɔuoɔ oʇuı suɹnʇ ʇı ןıʇun ǝʇǝɹɔuoƆ pınbıꞀ spןoH",
|
||||
"block.createindustry.fossilstone": "ǝuoʇsןıssoℲ",
|
||||
"block.createindustry.galena": "ɐuǝןɐ⅁",
|
||||
"block.createindustry.galena_pillar": "ɹɐןןıԀ ɐuǝןɐ⅁",
|
||||
"block.createindustry.galvanic_cell": "ןןǝƆ ɔıuɐʌןɐ⅁",
|
||||
"block.createindustry.galvanic_cell.tooltip.summary": "ʎʇıɔıɹʇɔǝןǝ oʇuı ǝɹnʇuǝʌ ɹnoʎ buıʇɹɐʇs ɹoɟ ןɐǝpı 'ǝpısuı ʎbɹǝuǝ ǝןqɐbɹɐɥɔun ɟo ʇunoɯɐ ןןɐɯs ɐ sɐH",
|
||||
"block.createindustry.gasoline": "ǝuıןosɐ⅁",
|
||||
"block.createindustry.gasoline_engine": "ǝuıbuƎ ǝuıןosɐ⅁",
|
||||
"block.createindustry.gasoline_engine_back": "ʞɔɐᗺ ǝuıbuƎ ǝuıןosɐ⅁",
|
||||
"block.createindustry.generator": "ɹoʇɐɹǝuǝ⅁",
|
||||
"block.createindustry.generator.tooltip.summary": "ʎbɹǝuǝ oʇ uoıʇɐʇoɹ sǝbuɐɥƆ",
|
||||
"block.createindustry.glass_aluminum_pipe": "ǝdıԀ ɯnuıɯnןⱯ ssɐן⅁",
|
||||
"block.createindustry.glass_brass_pipe": "ǝdıԀ ssɐɹᗺ ssɐן⅁",
|
||||
"block.createindustry.glass_cast_iron_pipe": "ǝdıԀ uoɹI ʇsɐƆ ssɐן⅁",
|
||||
@@ -186,7 +147,6 @@
|
||||
"block.createindustry.hardened_planks": "sʞuɐןԀ pǝuǝpɹɐH",
|
||||
"block.createindustry.hardened_planks_slab": "qɐןS sʞuɐןԀ pǝuǝpɹɐH",
|
||||
"block.createindustry.heavy_cable_hub": "qnH ǝןqɐƆ ʎʌɐǝH",
|
||||
"block.createindustry.heavy_cable_hub.tooltip.summary": "ǝuoʇspǝɹ ɥʇıʍ ɟɟo pǝuɹnʇ ǝq uɐƆ",
|
||||
"block.createindustry.heavy_casing_door": "ɹooᗡ buısɐƆ ʎʌɐǝH",
|
||||
"block.createindustry.heavy_casing_encased_aluminum_cogwheel": "ןǝǝɥʍboƆ ɯnuıɯnןⱯ pǝsɐɔuƎ buısɐƆ ʎʌɐǝH",
|
||||
"block.createindustry.heavy_casing_encased_cogwheel": "ןǝǝɥʍboƆ pǝsɐɔuƎ buısɐƆ ʎʌɐǝH",
|
||||
@@ -221,9 +181,6 @@
|
||||
"block.createindustry.light_blue_concrete_stairs": "sɹıɐʇS ǝʇǝɹɔuoƆ ǝnןᗺ ʇɥbıꞀ",
|
||||
"block.createindustry.light_blue_concrete_wall": "ןןɐM ǝʇǝɹɔuoƆ ǝnןᗺ ʇɥbıꞀ",
|
||||
"block.createindustry.light_bulb": "qןnᗺ ʇɥbıꞀ",
|
||||
"block.createindustry.light_bulb.behaviour1": "ʍoןb ǝɥʇ ɹǝbuoɹʇs ǝɥʇ '‾ǝbɐʇןoΛ‾ ǝɥʇ ɹǝɥbıɥ ǝɥʇ 'pǝɔuɐןɐq ǝɹɐ ‾ʎbɹǝuƎ‾ puɐ ‾ǝbɐʇןoΛ‾ ɟı ‾ʍoן⅁‾ ןןıʍ qןnqʇɥbıן ǝɥ⟘",
|
||||
"block.createindustry.light_bulb.condition1": "ǝɔɹnoS ɹǝʍoԀ uo ʇnd uǝɥM",
|
||||
"block.createindustry.light_bulb.tooltip.summary": "pǝɹǝʍoԀ uǝɥʍ sʍoן⅁",
|
||||
"block.createindustry.light_gray_caution_block": "ʞɔoןᗺ uoıʇnɐƆ ʎɐɹ⅁ ʇɥbıꞀ",
|
||||
"block.createindustry.light_gray_concrete": "ǝʇǝɹɔuoƆ ʎɐɹ⅁ ʇɥbıꞀ",
|
||||
"block.createindustry.light_gray_concrete_slab": "qɐןS ǝʇǝɹɔuoƆ ʎɐɹ⅁ ʇɥbıꞀ",
|
||||
@@ -241,11 +198,7 @@
|
||||
"block.createindustry.lithium_block": "ɯnıɥʇıꞀ ɟo ʞɔoןᗺ",
|
||||
"block.createindustry.lithium_ore": "ǝɹO ɯnıɥʇıꞀ",
|
||||
"block.createindustry.lithium_torch": "ɥɔɹo⟘ ɯnıɥʇıꞀ",
|
||||
"block.createindustry.lithium_torch.tooltip.summary": "uʍop ǝpısdn pǝɔɐןd ǝq uɐɔ puɐ ɹǝʇɐʍɹǝpun sʞɹoM",
|
||||
"block.createindustry.low_grade_fuel_engine": "ǝuıbuƎ ןǝnℲ ǝpɐɹ⅁ ʍoꞀ",
|
||||
"block.createindustry.low_grade_fuel_engine.behaviour1": "ʇı oʇuı pǝʇʇnduı ‾ןɐubıS ǝuoʇspǝᴚ‾ ǝɥʇ ɟo ɥʇbuǝɹʇs ǝɥʇ uo pǝsɐq ‾WԀᴚ‾ ɟo ʇunoɯɐ ןןɐɯs ɐ ʇndʇno ןןıM",
|
||||
"block.createindustry.low_grade_fuel_engine.condition1": "oʇuı ǝʇosoǝɹƆ pǝdɯnԀ uǝɥM",
|
||||
"block.createindustry.low_grade_fuel_engine.tooltip.summary": "ǝʇosoǝɹƆ ɯoɹɟ uoıʇɐʇoᴚ sǝʞɐW",
|
||||
"block.createindustry.lpg_engine": "ǝuıbuƎ bdꞀ",
|
||||
"block.createindustry.lpg_engine_back": "ʞɔɐᗺ ǝuıbuƎ bdꞀ",
|
||||
"block.createindustry.lubrication_oil": "ןıO uoıʇɐɔıɹqnꞀ",
|
||||
@@ -262,11 +215,6 @@
|
||||
"block.createindustry.napalm_bomb": "qɯoᗺ ɯןɐdɐN",
|
||||
"block.createindustry.naphtha": "ɐɥʇɥdɐN",
|
||||
"block.createindustry.neon_tube": "ǝqn⟘ uoǝN",
|
||||
"block.createindustry.neon_tube.behaviour1": " ‾ʍoן⅁‾ ןןıʍ ǝqnʇ ǝɥ⟘",
|
||||
"block.createindustry.neon_tube.behaviour2": "ɹoןoƆ sǝbuɐɥƆ",
|
||||
"block.createindustry.neon_tube.condition1": "ǝɔɹnoS ɹǝʍoԀ uo ʇnd uǝɥM",
|
||||
"block.createindustry.neon_tube.condition2": "ǝʎᗡ ɥʇıʍ pǝʞɔıןƆ-ᴚ uǝɥM",
|
||||
"block.createindustry.neon_tube.tooltip.summary": "pǝɹǝʍoԀ uǝɥʍ ɹoןoɔ uıɐʇɹǝɔ ɐ uı sʍoן⅁",
|
||||
"block.createindustry.nickel_bars": "sɹɐᗺ ןǝʞɔıN",
|
||||
"block.createindustry.nickel_block": "ןǝʞɔıN ɟo ʞɔoןᗺ",
|
||||
"block.createindustry.nickel_flywheel": "ןǝǝɥʍʎןℲ ןǝʞɔıN",
|
||||
@@ -291,9 +239,6 @@
|
||||
"block.createindustry.plastic_pipe": "ǝdıԀ ɔıʇsɐןԀ",
|
||||
"block.createindustry.plastic_smart_fluid_pipe": "ǝdıԀ pınןℲ ʇɹɐɯS ɔıʇsɐןԀ",
|
||||
"block.createindustry.polarizer": "ɹǝzıɹɐןoԀ",
|
||||
"block.createindustry.polarizer.condition1": "pǝɹǝʍod uǝɥM",
|
||||
"block.createindustry.polarizer.tooltip.behaviour1": "‾ʇobuI ןǝǝʇS‾ ɐ ɥʇıʍ pǝʞɔıןɔ ʇɥbıɹ uǝɥʍ ‾ʇobuI ɔıʇǝubɐW‾ ɐ oʇuı ‾ʇobuI ןǝǝʇS‾ ɐ uɹnʇ ןןıM",
|
||||
"block.createindustry.polarizer.tooltip.summary": "ןǝǝʇS ɟo ʇno sʇobuI ɔıʇǝubɐW sǝʞɐW",
|
||||
"block.createindustry.polished_cut_bauxite": "ǝʇıxnɐᗺ ʇnƆ pǝɥsıןoԀ",
|
||||
"block.createindustry.polished_cut_bauxite_slab": "qɐןS ǝʇıxnɐᗺ ʇnƆ pǝɥsıןoԀ",
|
||||
"block.createindustry.polished_cut_bauxite_stairs": "sɹıɐʇS ǝʇıxnɐᗺ ʇnƆ pǝɥsıןoԀ",
|
||||
@@ -321,24 +266,13 @@
|
||||
"block.createindustry.rebar_concrete_stairs": "sɹıɐʇS ǝʇǝɹɔuoƆ ɹɐqǝᴚ",
|
||||
"block.createindustry.rebar_concrete_wall": "ןןɐM ǝʇǝɹɔuoƆ ɹɐqǝᴚ",
|
||||
"block.createindustry.rebar_formwork_block": "ʞɔoןᗺ ʞɹoʍɯɹoℲ ɹɐqǝᴚ",
|
||||
"block.createindustry.rebar_formwork_block.tooltip.behaviour1": "sʞɔoןq ǝʇǝɹɔuoɔ ɹɐqǝɹ pıןos oʇuı suɹnʇ ʎןןɐnʇuǝʌǝ ǝʇǝɹɔuoɔ sıɥʇ '‾ǝʇǝɹɔuoƆ pınbıꞀ‾ ɥʇıʍ ʇno sןןıℲ",
|
||||
"block.createindustry.rebar_formwork_block.tooltip.condition1": "oʇuı ǝʇǝɹɔuoɔ pǝdɯnԀ uǝɥM",
|
||||
"block.createindustry.rebar_formwork_block.tooltip.summary": "sʞɔoןq ǝʇǝɹɔuoɔ ɹɐqǝɹ oʇuı suɹnʇ ʇı ןıʇun ǝʇǝɹɔuoƆ pınbıꞀ spןoH",
|
||||
"block.createindustry.red_caution_block": "ʞɔoןᗺ uoıʇnɐƆ pǝᴚ",
|
||||
"block.createindustry.red_concrete": "ǝʇǝɹɔuoƆ pǝᴚ",
|
||||
"block.createindustry.red_concrete_slab": "qɐןS ǝʇǝɹɔuoƆ pǝᴚ",
|
||||
"block.createindustry.red_concrete_stairs": "sɹıɐʇS ǝʇǝɹɔuoƆ pǝᴚ",
|
||||
"block.createindustry.red_concrete_wall": "ןןɐM ǝʇǝɹɔuoƆ pǝᴚ",
|
||||
"block.createindustry.resistor": "ɹoʇsısǝᴚ",
|
||||
"block.createindustry.resistor.tooltip.behaviour1": "ʇuoɹɟ uo )doʇ uo ǝןqɐɹnbıɟuoɔ( ǝbɐʇןoʌ pǝʍoןןɐ sʇı uo pǝsɐq ǝbɐʇןoʌ ɥʇıʍ ʎbɹǝuǝ sʇndʇnO",
|
||||
"block.createindustry.resistor.tooltip.condition1": ")ǝɹnʇxǝʇ ǝɥʇ ɟo doʇ uo ɹǝןןɐɯs sı pɐǝן ɟo dıɹʇs ǝɹǝɥʍ( ʞɔɐq ǝɥʇ ɯoɹɟ oʇuı ʎbɹǝuƎ ʇnԀ uǝɥM",
|
||||
"block.createindustry.resistor.tooltip.summary": "ǝbɐʇןoʌ sǝɔnpǝᴚ",
|
||||
"block.createindustry.rgb_light_bulb": "qןnᗺ ʇɥbıꞀ qbᴚ",
|
||||
"block.createindustry.rgb_light_bulb.behaviour1": "ʍoןb ǝɥʇ ɹǝbuoɹʇs ǝɥʇ '‾ǝbɐʇןoΛ‾ ǝɥʇ ɹǝɥbıɥ ǝɥʇ 'pǝɔuɐןɐq ǝɹɐ ‾ʎbɹǝuƎ‾ puɐ ‾ǝbɐʇןoΛ‾ ɟı ‾ʍoן⅁‾ ןןıʍ qןnqʇɥbıן ǝɥ⟘",
|
||||
"block.createindustry.rgb_light_bulb.behaviour2": "sɹoןoɔ ɥbnoɹɥʇ sǝןɔʎƆ",
|
||||
"block.createindustry.rgb_light_bulb.condition1": "ǝɔɹnoS ɹǝʍoԀ uo ʇnd uǝɥM",
|
||||
"block.createindustry.rgb_light_bulb.condition2": "ɥɔuǝɹM ɥʇıʍ pǝʞɔıןƆ-ᴚ uǝɥM",
|
||||
"block.createindustry.rgb_light_bulb.tooltip.summary": "pǝɹǝʍoԀ uǝɥʍ ɹoןoɔ uıɐʇɹǝɔ ɐ uı sʍoן⅁",
|
||||
"block.createindustry.rotor": "ɹoʇoᴚ",
|
||||
"block.createindustry.small_bauxite_brick_slab": "qɐןS ʞɔıɹᗺ ǝʇıxnɐᗺ ןןɐɯS",
|
||||
"block.createindustry.small_bauxite_brick_stairs": "sɹıɐʇS ʞɔıɹᗺ ǝʇıxnɐᗺ ןןɐɯS",
|
||||
@@ -352,10 +286,8 @@
|
||||
"block.createindustry.steel_bars": "sɹɐᗺ ןǝǝʇS",
|
||||
"block.createindustry.steel_block": "ןǝǝʇS ɟo ʞɔoןᗺ",
|
||||
"block.createindustry.steel_cable_hub": "qnH ǝןqɐƆ ןǝǝʇS",
|
||||
"block.createindustry.steel_cable_hub.tooltip.summary": "ǝuoʇspǝɹ ɥʇıʍ ɟɟo pǝuɹnʇ ǝq uɐƆ",
|
||||
"block.createindustry.steel_casing": "buısɐƆ ןǝǝʇS",
|
||||
"block.createindustry.steel_casing_cable_hub": "qnH ǝןqɐƆ buısɐƆ ןǝǝʇS",
|
||||
"block.createindustry.steel_casing_cable_hub.tooltip.summary": "ǝuoʇspǝɹ ɥʇıʍ ɟɟo pǝuɹnʇ ǝq uɐƆ",
|
||||
"block.createindustry.steel_cogwheel": "ןǝǝɥʍboƆ ןǝǝʇS",
|
||||
"block.createindustry.steel_distillation_controller": "ɹǝןןoɹʇuoƆ uoıʇɐןןıʇsıᗡ ןǝǝʇS",
|
||||
"block.createindustry.steel_distillation_output": "ʇndʇnO uoıʇɐןןıʇsıᗡ ןǝǝʇS",
|
||||
@@ -385,13 +317,6 @@
|
||||
"block.createindustry.turbine_engine_back": "ʞɔɐᗺ ǝuıbuƎ ǝuıqɹn⟘",
|
||||
"block.createindustry.voltage_cube": "ǝqnƆ ǝbɐʇןoΛ",
|
||||
"block.createindustry.voltmeter": "ɹǝʇǝɯʇןoΛ",
|
||||
"block.createindustry.voltmeter.condition1": "ǝɔɹnoS ɹǝʍoԀ uo ʇnd uǝɥM",
|
||||
"block.createindustry.voltmeter.condition2": "sǝןbbo⅁ s,ɹǝǝuıbuƎ ɥʇıʍ uo pǝʞooן uǝɥM",
|
||||
"block.createindustry.voltmeter.condition3": "ɥɔuǝɹM ɥʇıʍ pǝʞɔıןƆ-ᴚ uǝɥM",
|
||||
"block.createindustry.voltmeter.tooltip.behaviour1": "‾ǝbuɐᴚ buıɹnsɐǝW‾ sʇı ʎq pǝuıɯɹǝʇǝp sı ‾ɹǝʇǝɯʇןoΛ‾ ǝɥʇ uo ʎbɹǝuǝ xɐɯ ǝɥʇ ‾ǝɔɹnoS ɹǝʍoԀ‾ ǝɥʇ ɟo ‾ǝbɐʇןoΛ‾ ǝɥʇ sǝɹnsɐǝW",
|
||||
"block.createindustry.voltmeter.tooltip.behaviour2": "‾ǝbuɐᴚ buıɹnsɐǝW‾ sɹǝʇǝɯʇןoΛ ǝɥʇ sɐ ןןǝʍ sɐ ‾ǝbɐʇןoΛ‾ sǝɔɹnos ǝɥʇ uo oɟuı pǝןıɐʇǝp sʍoɥS",
|
||||
"block.createindustry.voltmeter.tooltip.behaviour3": "‾ǝbuɐᴚ buıɹnsɐǝW‾ ǝɥʇ sǝbuɐɥƆ",
|
||||
"block.createindustry.voltmeter.tooltip.summary": "ǝbɐʇןoʌ sǝɹnsɐǝW",
|
||||
"block.createindustry.white_caution_block": "ʞɔoןᗺ uoıʇnɐƆ ǝʇıɥM",
|
||||
"block.createindustry.white_concrete": "ǝʇǝɹɔuoƆ ǝʇıɥM",
|
||||
"block.createindustry.white_concrete_slab": "qɐןS ǝʇǝɹɔuoƆ ǝʇıɥM",
|
||||
@@ -404,153 +329,7 @@
|
||||
"block.createindustry.yellow_concrete_wall": "ןןɐM ǝʇǝɹɔuoƆ ʍoןןǝʎ",
|
||||
"block.createindustry.zinc_frame": "ǝɯɐɹℲ ɔuıZ",
|
||||
"block.createindustry.zinc_truss": "ssnɹ⟘ ɔuıZ",
|
||||
"create.creative_generator.voltage_generation": "uoıʇɐɹǝuǝ⅁ ǝbɐʇןoΛ",
|
||||
"create.goggles.blast_furnace.diameter.one": "Ɩ :ɹǝʇǝɯɐıᗡ",
|
||||
"create.goggles.blast_furnace.diameter.two": "ᄅ :ɹǝʇǝɯɐıᗡ",
|
||||
"create.goggles.blast_furnace.fuel_amount": "%1$s :ʇunoɯⱯ ןǝnℲ",
|
||||
"create.goggles.blast_furnace.height": "%1$s :ʇɥbıǝH",
|
||||
"create.goggles.blast_furnace.invalid": "pıןɐʌuI ǝɔɐuɹnℲ ʇsɐןᗺ",
|
||||
"create.goggles.blast_furnace.item_count": "%1$s :ʇunoƆ ɯǝʇI",
|
||||
"create.goggles.blast_furnace.nothing_lol": "",
|
||||
"create.goggles.blast_furnace.stats": ":ǝɔɐuɹnℲ ʇsɐןᗺ",
|
||||
"create.goggles.blast_furnace.status.off": "ǝןpI :snʇɐʇS",
|
||||
"create.goggles.blast_furnace.status.running": "buıuunᴚ :snʇɐʇS",
|
||||
"create.goggles.coke_oven.fluid_amount_exhaust": "qɯ %1$s :ǝpıxoıᗡ uoqɹɐƆ",
|
||||
"create.goggles.coke_oven.fluid_amount_output": "qɯ %1$s :sʇuǝʇuoƆ ʞuɐ⟘ ןɐuɹǝʇuI",
|
||||
"create.goggles.coke_oven.invalid": "pıןɐʌuI uǝʌO ǝʞoƆ",
|
||||
"create.goggles.coke_oven.item_count": "%1$s :ʇunoƆ ɯǝʇI ǝbɐɹoʇS ןɐuɹǝʇuI",
|
||||
"create.goggles.coke_oven.progress": "%1$s :ssǝɹboɹԀ",
|
||||
"create.goggles.coke_oven.status": ":uǝʌO ǝʞoƆ",
|
||||
"create.goggles.coke_oven.tank_full": "ןןnℲ sı ʞuɐ⟘ ןɐuɹǝʇuI uⱯ",
|
||||
"create.goggles.diesel_engine.info": ":ǝuıbuƎ ןǝsǝıᗡ",
|
||||
"create.goggles.distillation_tower.found_outputs": "%1$s :ʇunoƆ ʇndʇnO",
|
||||
"create.goggles.distillation_tower.level": "%1$s :ןǝʌǝꞀ ʇɐǝH",
|
||||
"create.goggles.distillation_tower.no_outputs": "punoℲ sʞɔoןᗺ ʇndʇnO oN",
|
||||
"create.goggles.distillation_tower.status": ":oɟuI ɹǝʍo⟘ uoıʇɐןןıʇsıᗡ",
|
||||
"create.goggles.distillation_tower.tank_not_found": "punoℲ ʇoN ʞuɐ⟘ pınןℲ ןǝǝʇS",
|
||||
"create.goggles.electric_machine.no_power": "ɹǝʍoԀ oN",
|
||||
"create.goggles.electricity.insufficient_voltage": "ǝbɐʇןoΛ ʇuǝıɔıɟɟnsuI",
|
||||
"create.goggles.energy_meter": ":ɹǝʇǝW ʎbɹǝuƎ",
|
||||
"create.goggles.energy_meter.energy": "ǝɟ %1$s :ʎbɹǝuƎ ",
|
||||
"create.goggles.engine.backpartmissing": ":buıssıW ʇɹɐԀ ʞɔɐᗺ",
|
||||
"create.goggles.engine.efficiency": ":ʎɔuǝıɔıɟɟƎ",
|
||||
"create.goggles.engine.stress": "n%1$ss",
|
||||
"create.goggles.engine_exhaust_stats": ":sʇɐʇS ʇsnɐɥxƎ ǝuıbuƎ",
|
||||
"create.goggles.engine_redstone_input": ":pǝǝdS",
|
||||
"create.goggles.engine_stats": ":sʇɐʇS ǝuıbuƎ",
|
||||
"create.goggles.fluid_in_tank": ":sʇuǝʇuoƆ ʞuɐ⟘",
|
||||
"create.goggles.fuel_container": "ǝbɐɹoʇS pınןℲ",
|
||||
"create.goggles.generator.production": "ʇ/ǝɟ %1$s :uoıʇɔnpoɹԀ ʎbɹǝuƎ",
|
||||
"create.goggles.get_engine_efficiency": "%1$s",
|
||||
"create.goggles.machine_input.info": "oɟuI ʇnduI ǝuıɥɔɐW",
|
||||
"create.goggles.machine_input.no_rot": "¡pǝpıʌoɹԀ uoıʇɐʇoᴚ oN",
|
||||
"create.goggles.machine_input.power_level": " :ןǝʌǝꞀ ɹǝʍoԀ",
|
||||
"create.goggles.misc.dot_one": "˙",
|
||||
"create.goggles.misc.dot_three": "˙˙˙",
|
||||
"create.goggles.misc.dot_two": "˙˙",
|
||||
"create.goggles.misc.number": "%1$s",
|
||||
"create.goggles.misc.percent_symbol": "%",
|
||||
"create.goggles.misc.storage_info": ":oɟuI ǝbɐɹoʇS",
|
||||
"create.goggles.motor.usage": "ʇ/ǝɟ %1$s :ǝbɐs∩ ʎbɹǝuƎ",
|
||||
"create.goggles.pumpjack.deposit_info": ":oɟuI ʇısodǝᗡ",
|
||||
"create.goggles.pumpjack.fluid_amount": ":ʇunoɯⱯ pınןℲ",
|
||||
"create.goggles.pumpjack.part_missing": "buıssıW ʞuɐɹƆ ɹo ɹǝɯɯɐH",
|
||||
"create.goggles.pumpjack.wrong_rotation1": "ʇsnɯ ɹǝʞɹɐɯ pǝɹ ǝɥʇ 'ʎןʇɔǝɹɹoɔuı pǝʇuǝıɹo sı ǝsɐᗺ ʞɔɐظdɯnԀ ǝɥ⟘",
|
||||
"create.goggles.pumpjack.wrong_rotation2": "ɹǝpןoH ɹǝɯɯɐH ʞɔɐظdɯnԀ ǝɥʇ ɯoɹɟ ʎɐʍɐ ǝɔɐɟ",
|
||||
"create.goggles.pumpjack_fluid_storage": ":oɟuI ʞuɐ⟘ pınןℲ",
|
||||
"create.goggles.pumpjack_info": ":oɟuI ʞɔɐظdɯnԀ",
|
||||
"create.goggles.surface_scanner.deposit_found": "¡pǝʇɐɔoꞀ ʇısodǝᗡ",
|
||||
"create.goggles.surface_scanner.distance": "sʞɔoןᗺ %1$s :ǝɔuɐʇsıᗡ",
|
||||
"create.goggles.surface_scanner.no_deposit": "punoℲ ʇısodǝᗡ oN",
|
||||
"create.goggles.surface_scanner.no_rotation": "pǝɹǝʍodu∩ ǝuıɥɔɐW",
|
||||
"create.goggles.surface_scanner.scanning_surface": "ǝɔɐɟɹnS ǝɥ⟘ buıuuɐɔS",
|
||||
"create.goggles.voltmeter": ":ɹǝʇǝɯʇןoΛ",
|
||||
"create.goggles.voltmeter.range": "Λ %1$s :ǝbuɐᴚ buıɹnsɐǝW ",
|
||||
"create.goggles.voltmeter.voltage": "Λ %1$s :ǝbɐʇןoΛ pǝɹnsɐǝW ",
|
||||
"create.goggles.zero": "pıןɐʌuI ǝuıɥɔɐW",
|
||||
"create.pumpjack_deposit_amount": "sʇǝʞɔnᗺ %1$s",
|
||||
"create.recipe.advanced_distillation": "uoıʇɐןןıʇsıᗡ pǝɔuɐʌpⱯ",
|
||||
"create.recipe.casting": "buıʇsɐƆ",
|
||||
"create.recipe.coking": "buıʞoƆ",
|
||||
"create.recipe.distillation": "uoıʇɐןןıʇsıᗡ",
|
||||
"create.recipe.industrial_blasting": "buıʇsɐןᗺ ןɐıɹʇsnpuI",
|
||||
"create.resistor.allowed_voltage": "ǝbɐʇןoΛ pǝʍoןןⱯ",
|
||||
"create.tooltip.engine_analog_strength": "ϛƖ/%1$s",
|
||||
"create.wires.removed_data": "pǝʌoɯǝᴚ ɐʇɐᗡ",
|
||||
"createindustry.ponder.blast_furnace.header": "ǝɔɐuɹnℲ ʇsɐןᗺ ɐ buıpןınᗺ",
|
||||
"createindustry.ponder.blast_furnace.text_1": "ʞɔoןq ʇndʇnO ǝɔɐuɹnℲ ʇsɐןᗺ ɐ sı ǝɔɐuɹnℲ ʇsɐןᗺ ǝɥʇ ɟo ǝsɐq ǝɥ⟘",
|
||||
"createindustry.ponder.blast_furnace.text_2": "ǝuǝɔs ǝɥʇ uı uʍoɥs sɐ sʞɔıɹᗺ ɟooɹdǝɹıℲ buısn ʎǝuɯıɥɔ ɐ ʇɔnɹʇsuoɔ 'ǝɔɐuɹnℲ ʇsɐןᗺ ɐ ǝןqɯǝssɐ o⟘",
|
||||
"createindustry.ponder.blast_furnace.text_3": "pǝɔɹoɟuıǝɹ ǝq oʇ sǝɹınbǝɹ ʎǝuɯıɥɔ ǝɥʇ ɟo ɟןɐɥ ɯoʇʇoq ǝɥ⟘",
|
||||
"createindustry.ponder.blast_furnace.text_4": "doʇ ǝɥʇ ʇɐ buıuǝdo ǝɥʇ ɥbnoɹɥʇ pǝʇɹǝsuı ǝɹɐ sɯǝʇı ɹǝɥʇo puɐ ןǝnℲ",
|
||||
"createindustry.ponder.casting.header": "ןɐʇǝW buıʇsɐƆ",
|
||||
"createindustry.ponder.casting.text_1": "ʇnodS buıʇsɐƆ ɐ buısn uısɐᗺ buıʇsɐƆ ɐ oʇuı ןɐʇǝɯ pınbıן buıɹnod ɟo ssǝɔoɹd ǝɥʇ sı buıʇsɐƆ",
|
||||
"createindustry.ponder.casting.text_2": "uoıʇɔunɟ oʇ pןoɯ ɐ sǝɹınbǝɹ 'ʎןsnoıʌqo 'uısɐᗺ buıʇsɐƆ ǝɥ⟘",
|
||||
"createindustry.ponder.coke_oven.header": "uǝʌO ǝʞoƆ ɐ buıpןınᗺ",
|
||||
"createindustry.ponder.coke_oven.text_1": "ɥɔuǝɹʍ ɐ ɥʇıʍ ǝpıs sʇı buıʞɔıןɔ puɐ 'ǝuǝɔs ǝɥʇ uı uʍoɥs sɐ sʞɔoןq uǝʌO ǝʞoƆ buıɔɐןd ʎq ʇןınq sı uǝʌO ǝʞoƆ ǝɥ⟘",
|
||||
"createindustry.ponder.coke_oven.text_2": "ʎןsnoǝuɐʇןnɯıs buıʞɹoʍ suǝʌo ɟo sʎɐɹɹɐ buoן ǝʌɐɥ oʇ ʇuǝıɔıɟɟǝ ǝɹoɯ sı ʇı os 'ʍoןs sı buıʞoɔ ɟo ssǝɔoɹd ǝɥ⟘",
|
||||
"createindustry.ponder.coke_oven.text_3": "ǝpıs ʎuɐ ɯoɹɟ pǝʇʇnduı ǝq uɐɔ ןɐoƆ",
|
||||
"createindustry.ponder.coke_oven.text_4": "uoıʇɔunɟ oʇ ʇı ɹoɟ ʇno pǝdɯnd ǝq oʇ ǝʌɐɥ ɥɔıɥʍ ᄅOƆ puɐ ǝʇosoǝɹƆ sǝɔnpoɹd uǝʌo ǝɥʇ 'buıuunɹ ǝןıɥM",
|
||||
"createindustry.ponder.coke_oven.text_5": "buıuǝdo ǝɥʇ ɟo ʇno doɹp ןןıʍ ǝʞoƆ ןɐoƆ 'ǝuop ǝɔuO",
|
||||
"createindustry.ponder.diesel_engine.header": "ǝuıbuƎ ןǝsǝıᗡ ɐ buıpןınᗺ",
|
||||
"createindustry.ponder.diesel_engine.text_1": "ʞɔoןq ǝuıbuƎ ןǝsǝıᗡ ɐ ɟo ʇuoɹɟuı ʇɟɐɥs ɐ buıɔɐןd ʎq pǝןqɯǝssɐ ǝɹɐ sǝuıbuƎ ןǝsǝıᗡ",
|
||||
"createindustry.ponder.diesel_engine.text_2": "ʞɔoןq ʇsnɐɥxǝ uɐ puɐ sǝdıd ɥʇıʍ pǝʌoɯǝɹ ǝq oʇ sɐɥ ɥɔıɥʍ sɐb ʇsnɐɥxǝ sǝɔnpoɹd ǝuıbuǝ ǝɥ⟘",
|
||||
"createindustry.ponder.diesel_engine.text_3": "pǝɹınbǝɹ sı ǝʞɐʇuI ɹıⱯ uɐ os 'unɹ oʇ ǝuıbuǝ ǝɥʇ ɹoɟ pǝpǝǝu sı ɹıⱯ",
|
||||
"createindustry.ponder.diesel_engine_expansion.header": "sǝuıbuƎ ןǝsǝıᗡ buıpuɐdxƎ",
|
||||
"createindustry.ponder.diesel_engine_expansion.text_1": "spınןɟ ɹoʇɐıpɐɹ puɐ uoıʇɐɔıɹqnן ɹoɟ 'sʇoןs ʇnduı ʍǝu oʍʇ ǝuıbuƎ ןǝsǝıᗡ ɐ ǝʌıb uɐɔ suoısuɐdxƎ ǝuıbuƎ ןǝsǝıᗡ",
|
||||
"createindustry.ponder.distillation_tower.header": "dnʇǝS ɹǝʍo⟘ uoıʇɐןןıʇsıᗡ",
|
||||
"createindustry.ponder.distillation_tower.text_1": "ɹǝʍo⟘ uoıʇɐןןıʇsıᗡ ɐ oʇuı pǝuɹnʇ ǝq uɐɔ ʞuɐ⟘ pınןℲ ןǝǝʇS ǝbɹɐן ʎןʇuǝıɔıɟɟns Ɐ",
|
||||
"createindustry.ponder.distillation_tower.text_10": "ǝuǝsoɹǝʞ",
|
||||
"createindustry.ponder.distillation_tower.text_11": "ןǝsǝıᗡ",
|
||||
"createindustry.ponder.distillation_tower.text_12": "ןıO ʎʌɐǝH",
|
||||
"createindustry.ponder.distillation_tower.text_2": "˙˙˙ʞuɐʇ ǝɥʇ oʇ ʇxǝu ɹǝןןoɹʇuoƆ ɹǝʍo⟘ uoıʇɐןןıʇsıᗡ ןǝǝʇS ɐ buıɔɐןd ʇsɹıɟ ʎq pǝןqɯǝssɐ sı ɹǝʍoʇ ǝɥ⟘",
|
||||
"createindustry.ponder.distillation_tower.text_3": "sǝdıԀ ןɐıɹʇsnpuI ɥʇıʍ pǝʇɔǝuuoɔ ןןɐ 'sʇndʇnO ɹǝʍo⟘ uoıʇɐןןıʇsıᗡ 9 oʇ dn buıɔɐןd puⱯ",
|
||||
"createindustry.ponder.distillation_tower.text_4": "sןǝʌǝן ɹǝʍod ʇuǝɹɹnɔ sʎɐןdsıp ןɐıp ǝɥ⟘ ˙ɹǝʍo⟘ uoıʇɐןןıʇsıᗡ ǝɥʇ unɹ oʇ pǝɹınbǝɹ ǝɹɐ sɹǝuɹnᗺ ǝzɐןᗺ",
|
||||
"createindustry.ponder.distillation_tower.text_5": "ʞɔoןq ɹǝןןoɹʇuoɔ ǝɥʇ oʇuı pǝdɯnd ǝq ʇsnɯ ʇı 'ןıO ǝpnɹƆ ʇnduı o⟘",
|
||||
"createindustry.ponder.distillation_tower.text_6": "sʇɔnpoɹdʎq ןıO ǝɥʇ ɟo ǝuo sǝpıʌoɹd ʞɔoןq ʇndʇno ɥɔɐƎ",
|
||||
"createindustry.ponder.distillation_tower.text_7": "⅁ԀꞀ",
|
||||
"createindustry.ponder.distillation_tower.text_8": "ǝuıןosɐ⅁",
|
||||
"createindustry.ponder.distillation_tower.text_9": "ɐɥʇɥdɐN",
|
||||
"createindustry.ponder.large_generator.header": "ɹoʇɐɹǝuǝ⅁ ǝbɹɐꞀ ɐ buıpןınᗺ",
|
||||
"createindustry.ponder.large_generator.text_1": "ɹoʇoᴚ ǝɥʇ sı ɹoʇɐɹǝuǝ⅁ ǝbɹɐꞀ ǝɥʇ ɟo uıɐɯ ǝɥ⟘",
|
||||
"createindustry.ponder.large_generator.text_2": "ɹoʇoᴚ ǝɥʇ punoɹɐ ʞɔoןq ɹoʇɐʇS ǝɔɐןd 'ɹoʇɐɹǝuǝ⅁ ǝbɹɐꞀ ǝɥʇ ǝʇǝןdɯoɔ o⟘",
|
||||
"createindustry.ponder.large_generator.text_3": "ʎbɹǝuǝ ɔıɹʇɔǝןǝ ǝɔnpoɹd ןןıʍ ɹoʇoᴚ ǝɥʇ oʇ ɹǝʍod ןɐuoıʇɐʇoɹ buıpıʌoɹԀ",
|
||||
"createindustry.ponder.large_generator.text_4": "ʇndʇno ʎbɹǝuǝ ǝɥʇ ʇı ǝʞɐɯ ןןıʍ ɥɔuǝɹʍ ɐ ɥʇıʍ ǝpıs ɐ buıʞɔıןƆ",
|
||||
"createindustry.ponder.pumpjack.header": "sʞɔɐظdɯnԀ buıpןınᗺ",
|
||||
"createindustry.ponder.pumpjack.text_1": "sǝdıԀ ןɐıɹʇsnpuI buısn ʇısodǝp ɐ ɟo doʇ uo ǝuıןǝdıd ɐ pןınq ʇsɹıɟ ʇsnɯ noʎ 'ןıO buıʇɔɐɹʇxǝ ʇɹɐʇs o⟘",
|
||||
"createindustry.ponder.pumpjack.text_2": "˙˙˙ǝsɐᗺ ʞɔɐظdɯnԀ ɐ uʍop buıɔɐןd ʇsɹıɟ ʎq ǝuıןǝdıd ǝɥʇ ɟo doʇ uo ʞɔɐظdɯnԀ ɐ ʇɔnɹʇsuoɔ 'uǝɥ⟘",
|
||||
"createindustry.ponder.pumpjack.text_3": "˙˙˙ʇı puıɥǝq ɹǝɯɯɐH ʞɔɐظdɯnԀ ǝɥʇ buıɔɐןԀ",
|
||||
"createindustry.ponder.pumpjack.text_4": "ǝsɐq ǝɥʇ puɐ ʞuɐɹɔ ǝɥʇ ǝʌoqɐ ʞɔɐظdɯnԀ ǝɥʇ ɟo pɐǝH ǝɥʇ puⱯ ɹoʇɔǝuuoƆ ǝɥʇ buıpןınq sı dǝʇs ʇxǝN",
|
||||
"createindustry.ponder.pumpjack.text_5": "ǝɹnʇɔnɹʇs ǝɥʇ ɥsıuıɟ oʇ pǝpǝǝu sı ǝnןbɹǝdns ʇɐɥʇ puıɯ uı dǝǝʞ 'sʇɹɐԀ ɹǝɯɯɐH ʞɔɐظdɯnԀ ɥʇıʍ pǝʇɔǝuuoɔ ǝq oʇ pǝǝu ʎǝɥʇ ʍoN",
|
||||
"createindustry.ponder.pumpjack.text_6": "ǝuǝɔs ǝɥʇ uı uʍoɥs sɐ 'ʇı ǝʌoqɐ ʞuɐɹƆ ʞɔɐظdɯnԀ ɐ ɥʇıʍ ʇnduI ǝuıɥɔɐW ǝɥʇ buıɔɐןd 'ʎןןɐuıɟ puⱯ",
|
||||
"createindustry.ponder.radial_engines.header": "sǝuıbuƎ ןɐıpɐᴚ buıs∩",
|
||||
"createindustry.ponder.radial_engines.text_1": "sǝpıs ɥʇoq ɯoɹɟ ʇɟɐɥs ɐ sɐɥ puɐ ʞɔoןq ʇsnɐɥxǝ uɐ ǝɹınbǝɹ ʇ,usǝop ʇɐɥʇ ǝuıbuƎ ɟo ǝdʎ⟘ ןɐıɔǝds ɐ ǝɹɐ sǝuıbuƎ ןɐıpɐᴚ",
|
||||
"createindustry.ponder.radial_engines.text_2": "sןɐubıs ǝuoʇspǝɹ puɐ ןǝnɟ ʇdǝɔɔɐ uɐɔ ʇɐɥʇ ʇoןs ʇnduı uɐ uʍɐds ןןıʍ sǝpıs sʇı ɟo ǝuo ɯoɹɟ ǝuıbuƎ ǝɥʇ buıʞɔıןƆ",
|
||||
"createindustry.ponder.radial_engines.text_3": "ןǝnɟ sɐ ǝuıןosɐb sǝsn sǝuıbuƎ ןɐıpɐᴚ ɹɐןnbǝᴚ",
|
||||
"createindustry.ponder.radial_engines.text_4": "ɟןǝsʇı ʞɔoןq ǝɥʇ ɹo ʇoןs ʇnduı ǝɥʇ oʇ pǝıןddɐ sı ןɐubıs ǝuoʇspǝɹ uǝɥʍ ʇɹɐʇs ןןıʍ ǝuıbuƎ",
|
||||
"createindustry.ponder.radial_engines.text_5": "ןǝnɟ sɐ ǝuǝsoɹǝʞ sǝsn ɥɔıɥʍ ǝuıbuƎ ןɐıpɐᴚ ǝbɹɐꞀ ǝɥ⟘ sı ןɐıpɐɹ ɐ ɟo ʇuɐıɹɐʌ puoɔǝs ǝɥ⟘",
|
||||
"createindustry.ponder.small_engines.header": "sǝuıbuƎ ןןɐɯS buıpןınᗺ",
|
||||
"createindustry.ponder.small_engines.text_1": "ɹǝɥʇoɥɔɐǝ oʇ ʇuǝɔɐظpɐ sʇɹɐd ʞɔɐq puɐ ʇuoɹɟ ǝɥʇ ǝɔɐןd 'ǝuıbuǝ ןןɐɯs ɐ ǝʇɐǝɹɔ o⟘",
|
||||
"createindustry.ponder.small_engines.text_2": "ʞɔoןq ʇsnɐɥxǝ uɐ puɐ sǝdıd buısn ʇɹɐd ʞɔɐq ǝɥʇ ɯoɹɟ pǝʌoɯǝɹ ǝq ʇsnɯ ʇsnɐɥxǝ puɐ 'ʇɹɐd ʇuoɹɟ ǝɥʇ oʇuı pǝʇʇnduı sı ןǝnℲ",
|
||||
"createindustry.ponder.small_engines.text_3": "ǝuıbuǝ ǝɥʇ sʇɹɐʇs ʇɹɐd ʇuoɹɟ ǝɥʇ oʇ ןɐubıs ǝuoʇspǝɹ ɐ buıʎןddⱯ",
|
||||
"createindustry.ponder.small_engines.text_4": "sǝuıbuǝ ǝuıןosɐb puɐ ǝuǝsoɹǝʞ '⅁ԀꞀ ǝpnןɔuı sǝuıbuǝ ןןɐɯS",
|
||||
"createindustry.ponder.surface_scanner.header": "ןıO buıʇɐɔoꞀ",
|
||||
"createindustry.ponder.surface_scanner.text_1": "sʇısodǝp ןıo ǝpnɹɔ ǝʇɐɔoן oʇ pǝsn sı ɹǝuuɐɔS ǝɔɐɟɹnS ǝɥ⟘",
|
||||
"createindustry.ponder.surface_scanner.text_2": "ʇısodǝp ʇsǝɹɐǝu ǝɥʇ ɹoɟ uɐɔs ʇı sǝʞɐɯ ɹǝʍod ןɐuoıʇɐʇoɹ ɥʇıʍ ǝuıɥɔɐɯ ǝɥʇ buıpıʌoɹԀ",
|
||||
"createindustry.ponder.surface_scanner.text_3": "uoıʇɐɔoן sʇı spɹɐʍoʇ ʇuıod ןןıʍ ssɐdɯoɔ ǝɥʇ 'punoɟ sı ʇısodǝp ɐ ɟI",
|
||||
"createindustry.ponder.tag.metallurgy": "buıssǝɔoɹԀ ןɐʇǝW",
|
||||
"createindustry.ponder.tag.metallurgy.description": "ɥɔns sɐ sןɐıɹǝʇɐɯ ʍɐɹ puɐ ןɐʇǝW ǝsn ɹo ssǝɔoɹd 'ǝɔnpoɹd ʇɐɥʇ sǝuıɥɔɐW",
|
||||
"createindustry.ponder.tag.oil": "sǝuıɥɔɐW pǝʇɐןǝᴚ ןıO",
|
||||
"createindustry.ponder.tag.oil.description": "sʇɔnpoɹdʎq sʇı puɐ ןıO ǝpnɹƆ ǝsn ɹo ssǝɔoɹd 'ʇɔɐɹʇxǝ ʇɐɥʇ sǝuıɥɔɐW",
|
||||
"createindustry.subtitle.diesel_engine_sounds": "spunoS ǝuıbuƎ ןǝsǝıᗡ",
|
||||
"createindustry.subtitle.engine_sounds": "spunoS ǝuıbuƎ",
|
||||
"death.attack.createindustry.acid": "ɥʇɐq pıɔɐ uɐ ʞooʇ %1$s",
|
||||
"death.attack.createindustry.acid.player": "ɥʇɐq pıɔɐ uɐ ʞooʇ %1$s",
|
||||
"death.attack.createindustry.concrete": "ǝʇǝɹɔuoƆ ʇɐǝ oʇ pǝıɹʇ %1$s",
|
||||
"death.attack.createindustry.concrete.player": "ǝʇǝɹɔuoƆ ʇɐǝ oʇ pǝıɹʇ %1$s",
|
||||
"effect.createindustry.frostbite": "ǝʇıqʇsoɹℲ",
|
||||
"effect.createindustry.hellfire": "ǝɹıɟןןǝH",
|
||||
"entity.createindustry.blue_spark": "ʞɹɐdS ǝnןᗺ",
|
||||
"entity.createindustry.cool_spark": "ʞɹɐdS ןooƆ",
|
||||
"entity.createindustry.copper_grenade": "ǝpɐuǝɹ⅁ ɹǝddoƆ",
|
||||
"entity.createindustry.green_spark": "ʞɹɐdS uǝǝɹ⅁",
|
||||
"entity.createindustry.lithium_spark": "ʞɹɐdS ɯnıɥʇıꞀ",
|
||||
@@ -561,7 +340,6 @@
|
||||
"entity.createindustry.thermite_grenade": "ǝpɐuǝɹ⅁ ǝʇıɯɹǝɥ⟘",
|
||||
"entity.createindustry.zinc_grenade": "ǝpɐuǝɹ⅁ ɔuıZ",
|
||||
"fluid.createindustry.air": "ɹıⱯ",
|
||||
"fluid.createindustry.blast_furnace_gas": "sɐ⅁ ǝɔɐuɹnℲ ʇsɐןᗺ",
|
||||
"fluid.createindustry.butane": "ǝuɐʇnᗺ",
|
||||
"fluid.createindustry.carbon_dioxide": "ǝpıxoıᗡ uoqɹɐƆ",
|
||||
"fluid.createindustry.cooling_fluid": "pınןℲ buıןooƆ",
|
||||
@@ -570,7 +348,6 @@
|
||||
"fluid.createindustry.diesel": "ןǝsǝıᗡ",
|
||||
"fluid.createindustry.ethylene": "ǝuǝןʎɥʇƎ",
|
||||
"fluid.createindustry.gasoline": "ǝuıןosɐ⅁",
|
||||
"fluid.createindustry.heated_air": "ɹıⱯ pǝʇɐǝH",
|
||||
"fluid.createindustry.heavy_oil": "ןıO ʎʌɐǝH",
|
||||
"fluid.createindustry.kerosene": "ǝuǝsoɹǝʞ",
|
||||
"fluid.createindustry.liquid_asphalt": "ʇןɐɥdsⱯ pınbıꞀ",
|
||||
@@ -587,11 +364,6 @@
|
||||
"fluid.createindustry.propylene": "ǝuǝןʎdoɹԀ",
|
||||
"fluid.createindustry.sulfuric_acid": "pıɔⱯ ɔıɹnɟןnS",
|
||||
"item.createindustry.advanced_potato_cannon": "uouuɐƆ oʇɐʇoԀ pǝɔuɐʌpⱯ",
|
||||
"item.createindustry.advanced_potato_cannon.tooltip.behaviour1": "˙‾ʎɹoʇuǝʌuI‾ ɹnoʎ ɯoɹɟ ‾oʇɐʇoԀ ɯןɐdɐN‾ ɐ ‾sʇooɥS‾",
|
||||
"item.createindustry.advanced_potato_cannon.tooltip.behaviour2": "ʞuɐ⟘ ǝɥʇ ɯoɹɟ pǝuıɐɹp sı ‾ǝɹnssǝɹd‾ ‾ɹıⱯ‾ 'pɐǝʇsuI ˙pǝsn ǝq ןןıʍ ‾ʎʇıןıqɐɹnᗡ‾ ‾oN‾",
|
||||
"item.createindustry.advanced_potato_cannon.tooltip.condition1": "pǝʞɔıןƆ-ᴚ uǝɥM",
|
||||
"item.createindustry.advanced_potato_cannon.tooltip.condition2": "ʞuɐʇʞɔɐᗺ buıɹɐǝʍ ǝןıɥM",
|
||||
"item.createindustry.advanced_potato_cannon.tooltip.summary": "‾ʞuɐʇʞɔɐᗺ‾ ɐ ɯoɹɟ ‾ǝɹnssǝɹԀ‾ ‾ɹıⱯ‾ ɥʇıʍ pǝɹǝʍod ǝq uɐƆ ˙sǝıɯǝuƎ ʇɐ ‾sǝoʇɐʇoԀ ɯןɐdɐN‾ sǝɥɔunɐꞀ",
|
||||
"item.createindustry.air_bucket": "ʞuɐ⟘ ɹıⱯ",
|
||||
"item.createindustry.aluminum_axe": "ǝxⱯ ɯnuıɯnןⱯ",
|
||||
"item.createindustry.aluminum_hoe": "ǝoH ɯnuıɯnןⱯ",
|
||||
@@ -601,7 +373,6 @@
|
||||
"item.createindustry.aluminum_sword": "pɹoʍS ɯnuıɯnןⱯ",
|
||||
"item.createindustry.aluminum_wire": "ǝɹıM ɯnuıɯnןⱯ",
|
||||
"item.createindustry.bitumen": "uǝɯnʇıᗺ",
|
||||
"item.createindustry.blast_furnace_gas_bucket": "ʞuɐ⟘ sɐ⅁ ǝɔɐuɹnℲ ʇsɐןᗺ",
|
||||
"item.createindustry.blasting_mixture": "ǝɹnʇxıW buıʇsɐןᗺ",
|
||||
"item.createindustry.block_mold": "pןoW ʞɔoןᗺ",
|
||||
"item.createindustry.bottle_of_battery_acid": "pıɔⱯ ʎɹǝʇʇɐᗺ ,o ǝןʇʇoᗺ",
|
||||
@@ -629,13 +400,7 @@
|
||||
"item.createindustry.fireclay_ball": "ןןɐᗺ ʎɐןɔǝɹıℲ",
|
||||
"item.createindustry.fireproof_brick": "ʞɔıɹᗺ ɟooɹdǝɹıℲ",
|
||||
"item.createindustry.flamethrower": "ɹǝʍoɹɥʇǝɯɐןℲ",
|
||||
"item.createindustry.flamethrower.tooltip.behaviour1": " ‾sǝɯɐןℲ ʇno sʇooɥS‾",
|
||||
"item.createindustry.flamethrower.tooltip.behaviour2": "ǝɔıoɥɔ ɟo ‾ןǝnℲ‾ ɹnoʎ oʇ buıpɹoɔɔɐ ǝbuɐɥɔ ‾pɐǝɹdS‾ puɐ ‾ǝbuɐᴚ‾ ˙ʞuɐʇ ǝɥʇ ɯoɹɟ pǝɯnsuoɔ ǝq ןןıʍ ‾ןǝnℲ‾ ǝɥ⟘",
|
||||
"item.createindustry.flamethrower.tooltip.condition1": "pǝʞɔıןƆ-ᴚ uǝɥM",
|
||||
"item.createindustry.flamethrower.tooltip.condition2": "ǝpısuı sɐ⅁/pınןℲ ǝןqɐuɹnᗺ ɐ ɥʇıʍ ʞuɐ⟘ pınןℲ ɐ buıʞɔıןƆ-ᴚ uǝɥM",
|
||||
"item.createindustry.flamethrower.tooltip.summary": "sǝıɯǝuƎ ɹnoʎ uɹnq oʇ ǝɯɐןɟ ɟo ʇsɹnq ɐ ʇno ʇooɥs oʇ ‾spınןℲ‾ puɐ ‾sǝsɐ⅁‾ ǝןqɐuɹnq suɹnᗺ",
|
||||
"item.createindustry.gasoline_bucket": "ʇǝʞɔnᗺ ǝuıןosɐ⅁",
|
||||
"item.createindustry.heated_air_bucket": "ʞuɐ⟘ ɹıⱯ pǝʇɐǝH",
|
||||
"item.createindustry.heavy_oil_bucket": "ʇǝʞɔnᗺ ןıO ʎʌɐǝH",
|
||||
"item.createindustry.heavy_plate": "ǝʇɐןԀ ʎʌɐǝH",
|
||||
"item.createindustry.ingot_mold": "pןoW ʇobuI",
|
||||
@@ -652,11 +417,6 @@
|
||||
"item.createindustry.liquid_plastic_bucket": "ʇǝʞɔnᗺ ɔıʇsɐןԀ pınbıꞀ",
|
||||
"item.createindustry.lit_lithium_blade": "ǝpɐןᗺ ɯnıɥʇıꞀ",
|
||||
"item.createindustry.lithium_blade": "ǝpɐןᗺ ɯnıɥʇıꞀ",
|
||||
"item.createindustry.lithium_blade.tooltip.behaviour1": " ɹǝʇɐʍ uı ɟןǝsɯǝɥʇ sǝɥsınbuıʇxǝ ʎɯǝuƎ ɹǝʇɟɐ uǝʌǝ pǝʍǝuǝɹ sı ǝɹıɟ sıɥʇ 'ǝɯıʇ ɟo ʇunoɯɐ ʇǝs ɐ ɹoɟ ǝɹıɟ uo sǝıɯǝuǝ sʇǝs ǝɯɐןɟ sʇI ˙‾ǝbɹɐɥƆ ɯnıɥʇıꞀ‾ ɐ buıɯnsuoɔ 'ǝɹıɟןןǝɥ uo ʇǝs sI",
|
||||
"item.createindustry.lithium_blade.tooltip.behaviour2": "ǝbɹɐɥɔ sǝpɐןq ǝɥʇ buıɯnsuoɔ ‾ǝɹıɟןןǝH‾ ɟo sʇןoq ןɐɹǝʌǝs ʇno sʇooɥS",
|
||||
"item.createindustry.lithium_blade.tooltip.condition1": "ɟɟO uǝɥʍ pǝʞɔıןƆ-ᴚ uǝɥM",
|
||||
"item.createindustry.lithium_blade.tooltip.condition2": "uO uǝɥʍ buıʞɔıןƆ-ᴚ uǝɥM",
|
||||
"item.createindustry.lithium_blade.tooltip.summary": "‾ǝɹıɟןןǝH‾ ɟo sʇןoᗺ ʇno buıʇooɥs puɐ sǝıɯǝuǝ buıuɹnq ǝɯɐןɟɐ ʇǝs sı ǝpɐןᗺ sıɥʇ '‾sǝbɹɐɥƆ ɯnıɥʇıꞀ‾ʇobuI ןǝǝʇS‾ buıs∩",
|
||||
"item.createindustry.lithium_charge": "ǝbɹɐɥƆ ɯnıɥʇıꞀ",
|
||||
"item.createindustry.lithium_ingot": "ʇobuI ɯnıɥʇıꞀ",
|
||||
"item.createindustry.lpg_bucket": "ʞuɐ⟘ bdꞀ",
|
||||
@@ -671,16 +431,10 @@
|
||||
"item.createindustry.nickel_ingot": "ʇobuI ןǝʞɔıN",
|
||||
"item.createindustry.nitrate_dust": "ʇsnᗡ ǝʇɐɹʇıN",
|
||||
"item.createindustry.pipe_bomb": "qɯoᗺ ǝdıԀ",
|
||||
"item.createindustry.pipebomb.tooltip.summary": "ןooɔ oS",
|
||||
"item.createindustry.plastic_sheet": "ʇǝǝɥS ɔıʇsɐןԀ",
|
||||
"item.createindustry.propane_bucket": "ʞuɐ⟘ ǝuɐdoɹԀ",
|
||||
"item.createindustry.propylene_bucket": "ʞuɐ⟘ ǝuǝןʎdoɹԀ",
|
||||
"item.createindustry.quad_potato_cannon": "uouuɐƆ oʇɐʇoԀ pɐnὉ",
|
||||
"item.createindustry.quad_potato_cannon.tooltip.behaviour1": "˙‾ʎɹoʇuǝʌuI‾ ɹnoʎ ɯoɹɟ ɯǝʇı ǝןqɐʇıns ɐ ‾sʇooɥS‾",
|
||||
"item.createindustry.quad_potato_cannon.tooltip.behaviour2": "ʞuɐ⟘ ǝɥʇ ɯoɹɟ pǝuıɐɹp sı ‾ǝɹnssǝɹd‾ ‾ɹıⱯ‾ 'pɐǝʇsuI ˙pǝsn ǝq ןןıʍ ‾ʎʇıןıqɐɹnᗡ‾ ‾oN‾",
|
||||
"item.createindustry.quad_potato_cannon.tooltip.condition1": "pǝʞɔıןƆ-ᴚ uǝɥM",
|
||||
"item.createindustry.quad_potato_cannon.tooltip.condition2": "ʞuɐʇʞɔɐᗺ buıɹɐǝʍ ǝןıɥM",
|
||||
"item.createindustry.quad_potato_cannon.tooltip.summary": "‾ʞuɐʇʞɔɐᗺ‾ ɐ ɯoɹɟ ‾ǝɹnssǝɹԀ‾ ‾ɹıⱯ‾ ɥʇıʍ pǝɹǝʍod ǝq uɐƆ ˙sǝıɯǝuƎ ʇɐ sǝןqɐʇǝbǝʌ uʍoɹb-ǝɯoɥ ɹnoʎ ɟo ㄣ sǝɥɔunɐꞀ",
|
||||
"item.createindustry.raw_lead": "pɐǝꞀ ʍɐᴚ",
|
||||
"item.createindustry.raw_lithium": "ɯnıɥʇıꞀ ʍɐᴚ",
|
||||
"item.createindustry.raw_nickel": "ןǝʞɔıN ʍɐᴚ",
|
||||
@@ -688,9 +442,6 @@
|
||||
"item.createindustry.resistor_": "ɹoʇsısǝᴚ",
|
||||
"item.createindustry.screw": "ʍǝɹɔS",
|
||||
"item.createindustry.screwdriver": "ɹǝʌıɹpʍǝɹɔS",
|
||||
"item.createindustry.screwdriver.tooltip.behaviour1": "‾buıʇɔǝuuoƆ ʇnoɥʇıM‾ ɹǝɥʇoɥɔɐǝ oʇ ʇxǝu pǝɔɐןd ǝq oʇ ‾sǝdıԀ‾ ɹoɟ buıʍoןןɐ uoıʇɐʇoɹ ʇuǝɹɹnɔ sʇı uı ‾ǝdıԀ‾ sʞɔoꞀ",
|
||||
"item.createindustry.screwdriver.tooltip.condition1": "ǝdıd buıʞɔıןƆ-ᴚ uǝɥM",
|
||||
"item.createindustry.screwdriver.tooltip.summary": "ǝɔɐןd uı sǝdıd ʞɔoן uɐƆ",
|
||||
"item.createindustry.slag": "bɐןS",
|
||||
"item.createindustry.spark_plug": "bnןԀ ʞɹɐdS",
|
||||
"item.createindustry.steel_axe": "ǝxⱯ ןǝǝʇS",
|
||||
@@ -718,15 +469,5 @@
|
||||
"item.createindustry.unfinished_turbine_engine": "ǝuıbuƎ ǝuıqɹn⟘ pǝɥsıuıɟu∩",
|
||||
"item.createindustry.unprocessed_heavy_plate": "ǝʇɐןԀ ʎʌɐǝH pǝssǝɔoɹdu∩",
|
||||
"item.createindustry.zinc_grenade": "ǝpɐuǝɹ⅁ ɔuıZ",
|
||||
"item.createindustry.zinc_sulfate": "ǝʇɐɟןnS ɔuıZ",
|
||||
"item.minecraft.lingering_potion.effect.frostbite_potion": "ǝʇıqʇsoɹℲ ɟo uoıʇoԀ buıɹǝbuıꞀ",
|
||||
"item.minecraft.lingering_potion.effect.hellfire_potion": "ǝɹıɟןןǝH ɟo uoıʇoԀ buıɹǝbuıꞀ",
|
||||
"item.minecraft.potion.effect.frostbite_potion": "ǝʇıqʇsoɹℲ ɟo uoıʇoԀ",
|
||||
"item.minecraft.potion.effect.hellfire_potion": "ǝɹıɟןןǝH ɟo uoıʇoԀ",
|
||||
"item.minecraft.splash_potion.effect.frostbite_potion": "ǝʇıqʇsoɹℲ ɟo uoıʇoԀ ɥsɐןdS",
|
||||
"item.minecraft.splash_potion.effect.hellfire_potion": "ǝɹıɟןןǝH ɟo uoıʇoԀ ɥsɐןdS",
|
||||
"item.minecraft.tipped_arrow.effect.frostbite_potion": "ǝʇıqʇsoɹℲ ɟo ʍoɹɹⱯ",
|
||||
"item.minecraft.tipped_arrow.effect.hellfire_potion": "ǝɹıɟןןǝH ɟo ʍoɹɹⱯ",
|
||||
"itemGroup.createindustry.base": "ʍoɹ⅁ ʇsnW ʎɹoʇɔɐℲ ǝɥ⟘ :ǝʇɐǝɹƆ",
|
||||
"itemGroup.createindustry.building": "sʞɔoןᗺ buıpןınᗺ ⅁WℲ⟘ :ǝʇɐǝɹƆ"
|
||||
"item.createindustry.zinc_sulfate": "ǝʇɐɟןnS ɔuıZ"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "createindustry:block/fluid_output"
|
||||
}
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "createindustry:item/blast_furnace_gas_bucket"
|
||||
}
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"parent": "createindustry:block/blast_stove/item"
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"parent": "createindustry:block/fluid_output"
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "createindustry:item/heated_air_bucket"
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_black_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:black_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:black_concrete_slab_from_black_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_black_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:black_concrete_slab_from_black_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_black_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:black_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:black_concrete_stairs_from_black_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_black_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:black_concrete_stairs_from_black_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_black_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:black_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:black_concrete_wall_from_black_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_black_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:black_concrete_wall_from_black_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_blue_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:blue_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:blue_concrete_slab_from_blue_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_blue_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:blue_concrete_slab_from_blue_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_blue_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:blue_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:blue_concrete_stairs_from_blue_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_blue_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:blue_concrete_stairs_from_blue_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_blue_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:blue_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:blue_concrete_wall_from_blue_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_blue_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:blue_concrete_wall_from_blue_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_brown_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:brown_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:brown_concrete_slab_from_brown_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_brown_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:brown_concrete_slab_from_brown_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_brown_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:brown_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:brown_concrete_stairs_from_brown_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_brown_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:brown_concrete_stairs_from_brown_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_brown_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:brown_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:brown_concrete_wall_from_brown_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_brown_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:brown_concrete_wall_from_brown_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_cyan_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:cyan_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:cyan_concrete_slab_from_cyan_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_cyan_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:cyan_concrete_slab_from_cyan_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_cyan_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:cyan_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:cyan_concrete_stairs_from_cyan_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_cyan_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:cyan_concrete_stairs_from_cyan_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_cyan_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:cyan_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:cyan_concrete_wall_from_cyan_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_cyan_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:cyan_concrete_wall_from_cyan_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_gray_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:gray_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:gray_concrete_slab_from_gray_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_gray_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:gray_concrete_slab_from_gray_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_gray_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:gray_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:gray_concrete_stairs_from_gray_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_gray_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:gray_concrete_stairs_from_gray_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_gray_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:gray_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:gray_concrete_wall_from_gray_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_gray_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:gray_concrete_wall_from_gray_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_green_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:green_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:green_concrete_slab_from_green_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_green_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:green_concrete_slab_from_green_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_green_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:green_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:green_concrete_stairs_from_green_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_green_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:green_concrete_stairs_from_green_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_green_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:green_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:green_concrete_wall_from_green_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_green_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:green_concrete_wall_from_green_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_light_blue_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:light_blue_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:light_blue_concrete_slab_from_light_blue_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_light_blue_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:light_blue_concrete_slab_from_light_blue_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_light_blue_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:light_blue_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:light_blue_concrete_stairs_from_light_blue_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_light_blue_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:light_blue_concrete_stairs_from_light_blue_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_light_blue_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:light_blue_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:light_blue_concrete_wall_from_light_blue_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_light_blue_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:light_blue_concrete_wall_from_light_blue_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_light_gray_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:light_gray_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:light_gray_concrete_slab_from_light_gray_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_light_gray_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:light_gray_concrete_slab_from_light_gray_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_light_gray_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:light_gray_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:light_gray_concrete_stairs_from_light_gray_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_light_gray_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:light_gray_concrete_stairs_from_light_gray_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_light_gray_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:light_gray_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:light_gray_concrete_wall_from_light_gray_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_light_gray_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:light_gray_concrete_wall_from_light_gray_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_lime_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:lime_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:lime_concrete_slab_from_lime_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_lime_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:lime_concrete_slab_from_lime_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_lime_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:lime_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:lime_concrete_stairs_from_lime_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_lime_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:lime_concrete_stairs_from_lime_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_lime_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:lime_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:lime_concrete_wall_from_lime_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_lime_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:lime_concrete_wall_from_lime_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_magenta_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:magenta_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:magenta_concrete_slab_from_magenta_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_magenta_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:magenta_concrete_slab_from_magenta_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_magenta_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:magenta_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:magenta_concrete_stairs_from_magenta_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_magenta_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:magenta_concrete_stairs_from_magenta_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_magenta_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:magenta_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:magenta_concrete_wall_from_magenta_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_magenta_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:magenta_concrete_wall_from_magenta_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_orange_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:orange_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:orange_concrete_slab_from_orange_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_orange_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:orange_concrete_slab_from_orange_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_orange_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:orange_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:orange_concrete_stairs_from_orange_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_orange_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:orange_concrete_stairs_from_orange_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_orange_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:orange_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:orange_concrete_wall_from_orange_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_orange_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:orange_concrete_wall_from_orange_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_pink_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:pink_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:pink_concrete_slab_from_pink_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_pink_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:pink_concrete_slab_from_pink_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_pink_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:pink_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:pink_concrete_stairs_from_pink_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_pink_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:pink_concrete_stairs_from_pink_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_pink_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:pink_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:pink_concrete_wall_from_pink_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_pink_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:pink_concrete_wall_from_pink_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_stone_types_bauxite": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"tag": "createindustry:stone_types/bauxite"
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:polished_cut_bauxite_stairs_from_stone_types_bauxite_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_stone_types_bauxite",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:polished_cut_bauxite_stairs_from_stone_types_bauxite_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_purple_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:purple_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:purple_concrete_slab_from_purple_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_purple_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:purple_concrete_slab_from_purple_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_purple_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:purple_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:purple_concrete_stairs_from_purple_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_purple_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:purple_concrete_stairs_from_purple_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_purple_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:purple_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:purple_concrete_wall_from_purple_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_purple_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:purple_concrete_wall_from_purple_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_red_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:red_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:red_concrete_slab_from_red_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_red_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:red_concrete_slab_from_red_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_red_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:red_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:red_concrete_stairs_from_red_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_red_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:red_concrete_stairs_from_red_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_red_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:red_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:red_concrete_wall_from_red_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_red_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:red_concrete_wall_from_red_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_stone_types_bauxite": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"tag": "createindustry:stone_types/bauxite"
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:small_bauxite_brick_stairs_from_stone_types_bauxite_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_stone_types_bauxite",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:small_bauxite_brick_stairs_from_stone_types_bauxite_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:white_concrete_slab_from_white_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_white_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:white_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_white_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:white_concrete_slab_from_white_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:white_concrete_stairs_from_white_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_white_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:white_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_white_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:white_concrete_stairs_from_white_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:white_concrete_wall_from_white_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_white_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:white_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_white_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:white_concrete_wall_from_white_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:yellow_concrete_slab_from_yellow_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_yellow_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:yellow_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_yellow_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:yellow_concrete_slab_from_yellow_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:yellow_concrete_stairs_from_yellow_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_yellow_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:yellow_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_yellow_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:yellow_concrete_stairs_from_yellow_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"criteria": {
|
||||
"has_the_recipe": {
|
||||
"conditions": {
|
||||
"recipe": "createindustry:yellow_concrete_wall_from_yellow_concrete_stonecutting"
|
||||
},
|
||||
"trigger": "minecraft:recipe_unlocked"
|
||||
},
|
||||
"has_yellow_concrete": {
|
||||
"conditions": {
|
||||
"items": [
|
||||
{
|
||||
"items": [
|
||||
"createindustry:yellow_concrete"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"trigger": "minecraft:inventory_changed"
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_yellow_concrete",
|
||||
"has_the_recipe"
|
||||
]
|
||||
],
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"createindustry:yellow_concrete_wall_from_yellow_concrete_stonecutting"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"bonus_rolls": 0.0,
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
}
|
||||
],
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "createindustry:blast_stove"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"type": "minecraft:block",
|
||||
"pools": [
|
||||
{
|
||||
"bonus_rolls": 0.0,
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
}
|
||||
],
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "createindustry:fluid_output"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -11,7 +11,7 @@
|
||||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "createindustry:red_caution_block"
|
||||
"name": "minecraft:air"
|
||||
}
|
||||
],
|
||||
"rolls": 1.0
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"type": "minecraft:stonecutting",
|
||||
"count": 1,
|
||||
"ingredient": {
|
||||
"item": "createindustry:brown_concrete"
|
||||
},
|
||||
"result": "createindustry:brown_concrete_wall"
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
{
|
||||
"type": "create:compacting",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "create:cinder_flour"
|
||||
},
|
||||
{
|
||||
"item": "create:cinder_flour"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "createindustry:cinderflour_block"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,28 +0,0 @@
|
||||
{
|
||||
"type": "create:crushing",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "createindustry:copper_sulfate"
|
||||
}
|
||||
],
|
||||
"processingTime": 100,
|
||||
"results": [
|
||||
{
|
||||
"count": 4,
|
||||
"item": "minecraft:bone_meal"
|
||||
},
|
||||
{
|
||||
"chance": 0.5,
|
||||
"count": 3,
|
||||
"item": "minecraft:bone_meal"
|
||||
},
|
||||
{
|
||||
"chance": 0.5,
|
||||
"item": "minecraft:blue_dye"
|
||||
},
|
||||
{
|
||||
"chance": 0.3,
|
||||
"item": "minecraft:cyan_dye"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,36 +0,0 @@
|
||||
{
|
||||
"type": "createindustry:distillation",
|
||||
"ingredients": [
|
||||
{
|
||||
"amount": 360,
|
||||
"fluid": "createindustry:crude_oil",
|
||||
"nbt": {}
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"amount": 80,
|
||||
"fluid": "createindustry:heavy_oil"
|
||||
},
|
||||
{
|
||||
"amount": 60,
|
||||
"fluid": "createindustry:diesel"
|
||||
},
|
||||
{
|
||||
"amount": 40,
|
||||
"fluid": "createindustry:kerosene"
|
||||
},
|
||||
{
|
||||
"amount": 40,
|
||||
"fluid": "createindustry:naphtha"
|
||||
},
|
||||
{
|
||||
"amount": 80,
|
||||
"fluid": "createindustry:gasoline"
|
||||
},
|
||||
{
|
||||
"amount": 60,
|
||||
"fluid": "createindustry:lpg"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"type": "createindustry:distillation",
|
||||
"ingredients": [
|
||||
{
|
||||
"amount": 340,
|
||||
"fluid": "createindustry:crude_oil",
|
||||
"nbt": {}
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"amount": 80,
|
||||
"fluid": "createindustry:heavy_oil"
|
||||
},
|
||||
{
|
||||
"amount": 60,
|
||||
"fluid": "createindustry:diesel"
|
||||
},
|
||||
{
|
||||
"amount": 40,
|
||||
"fluid": "createindustry:kerosene"
|
||||
},
|
||||
{
|
||||
"amount": 80,
|
||||
"fluid": "createindustry:gasoline"
|
||||
},
|
||||
{
|
||||
"amount": 60,
|
||||
"fluid": "createindustry:lpg"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"type": "createindustry:distillation",
|
||||
"ingredients": [
|
||||
{
|
||||
"amount": 150,
|
||||
"fluid": "createindustry:heavy_oil",
|
||||
"nbt": {}
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"amount": 100,
|
||||
"fluid": "createindustry:diesel"
|
||||
},
|
||||
{
|
||||
"amount": 50,
|
||||
"fluid": "createindustry:lubrication_oil"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
{
|
||||
"type": "createindustry:distillation",
|
||||
"ingredients": [
|
||||
{
|
||||
"amount": 100,
|
||||
"fluid": "createindustry:naphtha",
|
||||
"nbt": {}
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"amount": 50,
|
||||
"fluid": "createindustry:ethylene"
|
||||
},
|
||||
{
|
||||
"amount": 50,
|
||||
"fluid": "createindustry:propylene"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"type": "createindustry:gas_blasting",
|
||||
"ingredients": [
|
||||
{
|
||||
"amount": 1000,
|
||||
"fluid": "createindustry:air",
|
||||
"nbt": {}
|
||||
},
|
||||
{
|
||||
"amount": 250,
|
||||
"fluid": "createindustry:blast_furnace_gas",
|
||||
"nbt": {}
|
||||
}
|
||||
],
|
||||
"processingTime": 400,
|
||||
"results": [
|
||||
{
|
||||
"amount": 1000,
|
||||
"fluid": "createindustry:heated_air"
|
||||
},
|
||||
{
|
||||
"amount": 750,
|
||||
"fluid": "createindustry:carbon_dioxide"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
{
|
||||
"type": "create:mechanical_crafting",
|
||||
"acceptMirrored": true,
|
||||
"key": {
|
||||
"C": {
|
||||
"item": "createindustry:electric_casing"
|
||||
},
|
||||
"E": {
|
||||
"item": "createindustry:steel_mechanism"
|
||||
},
|
||||
"K": {
|
||||
"item": "createindustry:copper_cable"
|
||||
},
|
||||
"M": {
|
||||
"item": "createindustry:magnetic_ingot"
|
||||
}
|
||||
},
|
||||
"pattern": [
|
||||
"EME",
|
||||
"MCM",
|
||||
"KMK"
|
||||
],
|
||||
"result": {
|
||||
"item": "createindustry:generator"
|
||||
}
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"type": "create:mixing",
|
||||
"heatRequirement": "superheated",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "createindustry:air_bucket"
|
||||
}
|
||||
],
|
||||
"processingTime": 1000,
|
||||
"results": [
|
||||
{
|
||||
"item": "createindustry:heated_air_bucket"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
{
|
||||
"values": [
|
||||
"#create:fan_transparent",
|
||||
"minecraft:magma_block"
|
||||
]
|
||||
}
|
||||
@@ -6,8 +6,6 @@
|
||||
"createindustry:butane",
|
||||
"createindustry:flowing_lpg",
|
||||
"createindustry:lpg",
|
||||
"createindustry:flowing_blast_furnace_gas",
|
||||
"createindustry:blast_furnace_gas",
|
||||
"createindustry:flowing_lubrication_oil",
|
||||
"createindustry:lubrication_oil",
|
||||
"createindustry:flowing_napalm",
|
||||
|
||||
@@ -2,8 +2,6 @@
|
||||
"values": [
|
||||
"createindustry:flowing_air",
|
||||
"createindustry:air",
|
||||
"createindustry:flowing_heated_air",
|
||||
"createindustry:heated_air",
|
||||
"createindustry:flowing_carbon_dioxide",
|
||||
"createindustry:carbon_dioxide",
|
||||
"createindustry:flowing_ethylene",
|
||||
@@ -17,8 +15,6 @@
|
||||
"createindustry:flowing_lpg",
|
||||
"createindustry:lpg",
|
||||
"createindustry:flowing_neon",
|
||||
"createindustry:neon",
|
||||
"createindustry:flowing_blast_furnace_gas",
|
||||
"createindustry:blast_furnace_gas"
|
||||
"createindustry:neon"
|
||||
]
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"values": [
|
||||
"createindustry:blast_furnace_gas_bucket"
|
||||
]
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
{
|
||||
"values": [
|
||||
"createindustry:heated_air_bucket"
|
||||
]
|
||||
}
|
||||
@@ -25,7 +25,6 @@
|
||||
"createindustry:deepslate_lithium_ore",
|
||||
"createindustry:sulfur",
|
||||
"createindustry:lignite",
|
||||
"createindustry:fluid_output",
|
||||
"createindustry:light_bulb",
|
||||
"createindustry:rgb_light_bulb",
|
||||
"createindustry:copycat_cable_block",
|
||||
@@ -73,7 +72,6 @@
|
||||
"createindustry:large_pumpjack_hammer_head",
|
||||
"createindustry:large_pumpjack_hammer_connector",
|
||||
"createindustry:pumpjack_base",
|
||||
"createindustry:blast_stove",
|
||||
"createindustry:fireproof_bricks",
|
||||
"createindustry:fireproof_brick_reinforcement",
|
||||
"createindustry:blast_furnace_output",
|
||||
@@ -140,13 +138,92 @@
|
||||
"createindustry:factory_floor_slab",
|
||||
"createindustry:cinder_block",
|
||||
"createindustry:cinderflour_block",
|
||||
"createindustry:concrete",
|
||||
"createindustry:black_concrete",
|
||||
"createindustry:black_concrete_wall",
|
||||
"createindustry:black_concrete_stairs",
|
||||
"createindustry:black_concrete_slab",
|
||||
"createindustry:white_concrete",
|
||||
"createindustry:white_concrete_wall",
|
||||
"createindustry:white_concrete_stairs",
|
||||
"createindustry:white_concrete_slab",
|
||||
"createindustry:blue_concrete",
|
||||
"createindustry:blue_concrete_wall",
|
||||
"createindustry:blue_concrete_stairs",
|
||||
"createindustry:blue_concrete_slab",
|
||||
"createindustry:light_blue_concrete",
|
||||
"createindustry:light_blue_concrete_wall",
|
||||
"createindustry:light_blue_concrete_stairs",
|
||||
"createindustry:light_blue_concrete_slab",
|
||||
"createindustry:red_concrete",
|
||||
"createindustry:red_concrete_wall",
|
||||
"createindustry:red_concrete_stairs",
|
||||
"createindustry:red_concrete_slab",
|
||||
"createindustry:green_concrete",
|
||||
"createindustry:green_concrete_wall",
|
||||
"createindustry:green_concrete_stairs",
|
||||
"createindustry:green_concrete_slab",
|
||||
"createindustry:lime_concrete",
|
||||
"createindustry:lime_concrete_wall",
|
||||
"createindustry:lime_concrete_stairs",
|
||||
"createindustry:lime_concrete_slab",
|
||||
"createindustry:pink_concrete",
|
||||
"createindustry:pink_concrete_wall",
|
||||
"createindustry:pink_concrete_stairs",
|
||||
"createindustry:pink_concrete_slab",
|
||||
"createindustry:magenta_concrete",
|
||||
"createindustry:magenta_concrete_wall",
|
||||
"createindustry:magenta_concrete_stairs",
|
||||
"createindustry:magenta_concrete_slab",
|
||||
"createindustry:yellow_concrete",
|
||||
"createindustry:yellow_concrete_wall",
|
||||
"createindustry:yellow_concrete_stairs",
|
||||
"createindustry:yellow_concrete_slab",
|
||||
"createindustry:gray_concrete",
|
||||
"createindustry:gray_concrete_wall",
|
||||
"createindustry:gray_concrete_stairs",
|
||||
"createindustry:gray_concrete_slab",
|
||||
"createindustry:light_gray_concrete",
|
||||
"createindustry:light_gray_concrete_wall",
|
||||
"createindustry:light_gray_concrete_stairs",
|
||||
"createindustry:light_gray_concrete_slab",
|
||||
"createindustry:brown_concrete",
|
||||
"createindustry:brown_concrete_wall",
|
||||
"createindustry:brown_concrete_stairs",
|
||||
"createindustry:brown_concrete_slab",
|
||||
"createindustry:cyan_concrete",
|
||||
"createindustry:cyan_concrete_wall",
|
||||
"createindustry:cyan_concrete_stairs",
|
||||
"createindustry:cyan_concrete_slab",
|
||||
"createindustry:purple_concrete",
|
||||
"createindustry:purple_concrete_wall",
|
||||
"createindustry:purple_concrete_stairs",
|
||||
"createindustry:purple_concrete_slab",
|
||||
"createindustry:orange_concrete",
|
||||
"createindustry:orange_concrete_wall",
|
||||
"createindustry:orange_concrete_stairs",
|
||||
"createindustry:orange_concrete_slab",
|
||||
"createindustry:concrete_wall",
|
||||
"createindustry:concrete_stairs",
|
||||
"createindustry:concrete",
|
||||
"createindustry:white_caution_block",
|
||||
"createindustry:blue_caution_block",
|
||||
"createindustry:light_blue_caution_block",
|
||||
"createindustry:red_caution_block",
|
||||
"createindustry:green_caution_block",
|
||||
"createindustry:lime_caution_block",
|
||||
"createindustry:pink_caution_block",
|
||||
"createindustry:magenta_caution_block",
|
||||
"createindustry:yellow_caution_block",
|
||||
"createindustry:gray_caution_block",
|
||||
"createindustry:light_gray_caution_block",
|
||||
"createindustry:brown_caution_block",
|
||||
"createindustry:cyan_caution_block",
|
||||
"createindustry:purple_caution_block",
|
||||
"createindustry:orange_caution_block",
|
||||
"createindustry:concrete_slab",
|
||||
"createindustry:rebar_concrete",
|
||||
"createindustry:rebar_concrete_wall",
|
||||
"createindustry:rebar_concrete_stairs",
|
||||
"createindustry:rebar_concrete",
|
||||
"createindustry:rebar_concrete_slab",
|
||||
"createindustry:steel_encased_shaft",
|
||||
"createindustry:heavy_casing_encased_shaft",
|
||||
@@ -192,85 +269,6 @@
|
||||
"createindustry:aluminum_mechanical_pump",
|
||||
"createindustry:aluminum_smart_fluid_pipe",
|
||||
"createindustry:aluminum_fluid_valve",
|
||||
"createindustry:black_concrete",
|
||||
"createindustry:white_concrete",
|
||||
"createindustry:blue_concrete",
|
||||
"createindustry:light_blue_concrete",
|
||||
"createindustry:red_concrete",
|
||||
"createindustry:green_concrete",
|
||||
"createindustry:lime_concrete",
|
||||
"createindustry:pink_concrete",
|
||||
"createindustry:magenta_concrete",
|
||||
"createindustry:yellow_concrete",
|
||||
"createindustry:gray_concrete",
|
||||
"createindustry:light_gray_concrete",
|
||||
"createindustry:brown_concrete",
|
||||
"createindustry:cyan_concrete",
|
||||
"createindustry:purple_concrete",
|
||||
"createindustry:orange_concrete",
|
||||
"createindustry:black_concrete_stairs",
|
||||
"createindustry:white_concrete_stairs",
|
||||
"createindustry:blue_concrete_stairs",
|
||||
"createindustry:light_blue_concrete_stairs",
|
||||
"createindustry:red_concrete_stairs",
|
||||
"createindustry:green_concrete_stairs",
|
||||
"createindustry:lime_concrete_stairs",
|
||||
"createindustry:pink_concrete_stairs",
|
||||
"createindustry:magenta_concrete_stairs",
|
||||
"createindustry:yellow_concrete_stairs",
|
||||
"createindustry:gray_concrete_stairs",
|
||||
"createindustry:light_gray_concrete_stairs",
|
||||
"createindustry:brown_concrete_stairs",
|
||||
"createindustry:cyan_concrete_stairs",
|
||||
"createindustry:purple_concrete_stairs",
|
||||
"createindustry:orange_concrete_stairs",
|
||||
"createindustry:black_concrete_slab",
|
||||
"createindustry:white_concrete_slab",
|
||||
"createindustry:blue_concrete_slab",
|
||||
"createindustry:light_blue_concrete_slab",
|
||||
"createindustry:red_concrete_slab",
|
||||
"createindustry:green_concrete_slab",
|
||||
"createindustry:lime_concrete_slab",
|
||||
"createindustry:pink_concrete_slab",
|
||||
"createindustry:magenta_concrete_slab",
|
||||
"createindustry:yellow_concrete_slab",
|
||||
"createindustry:gray_concrete_slab",
|
||||
"createindustry:light_gray_concrete_slab",
|
||||
"createindustry:brown_concrete_slab",
|
||||
"createindustry:cyan_concrete_slab",
|
||||
"createindustry:purple_concrete_slab",
|
||||
"createindustry:orange_concrete_slab",
|
||||
"createindustry:black_concrete_wall",
|
||||
"createindustry:white_concrete_wall",
|
||||
"createindustry:blue_concrete_wall",
|
||||
"createindustry:light_blue_concrete_wall",
|
||||
"createindustry:red_concrete_wall",
|
||||
"createindustry:green_concrete_wall",
|
||||
"createindustry:lime_concrete_wall",
|
||||
"createindustry:pink_concrete_wall",
|
||||
"createindustry:magenta_concrete_wall",
|
||||
"createindustry:yellow_concrete_wall",
|
||||
"createindustry:gray_concrete_wall",
|
||||
"createindustry:light_gray_concrete_wall",
|
||||
"createindustry:brown_concrete_wall",
|
||||
"createindustry:cyan_concrete_wall",
|
||||
"createindustry:purple_concrete_wall",
|
||||
"createindustry:orange_concrete_wall",
|
||||
"createindustry:white_caution_block",
|
||||
"createindustry:blue_caution_block",
|
||||
"createindustry:light_blue_caution_block",
|
||||
"createindustry:red_caution_block",
|
||||
"createindustry:green_caution_block",
|
||||
"createindustry:lime_caution_block",
|
||||
"createindustry:pink_caution_block",
|
||||
"createindustry:magenta_caution_block",
|
||||
"createindustry:yellow_caution_block",
|
||||
"createindustry:gray_caution_block",
|
||||
"createindustry:light_gray_caution_block",
|
||||
"createindustry:brown_caution_block",
|
||||
"createindustry:cyan_caution_block",
|
||||
"createindustry:purple_caution_block",
|
||||
"createindustry:orange_caution_block",
|
||||
"createindustry:bauxite",
|
||||
"createindustry:cut_bauxite",
|
||||
"createindustry:cut_bauxite_stairs",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"values": [
|
||||
"createindustry:rebar_concrete",
|
||||
"createindustry:rebar_concrete_wall",
|
||||
"createindustry:rebar_concrete_stairs"
|
||||
"createindustry:rebar_concrete_stairs",
|
||||
"createindustry:rebar_concrete"
|
||||
]
|
||||
}
|
||||
@@ -12,75 +12,73 @@
|
||||
"createindustry:factory_floor_stairs",
|
||||
"createindustry:factory_floor",
|
||||
"createindustry:factory_floor_slab",
|
||||
"createindustry:concrete",
|
||||
"createindustry:black_concrete",
|
||||
"createindustry:black_concrete_wall",
|
||||
"createindustry:black_concrete_stairs",
|
||||
"createindustry:black_concrete_slab",
|
||||
"createindustry:white_concrete",
|
||||
"createindustry:white_concrete_wall",
|
||||
"createindustry:white_concrete_stairs",
|
||||
"createindustry:white_concrete_slab",
|
||||
"createindustry:blue_concrete",
|
||||
"createindustry:blue_concrete_wall",
|
||||
"createindustry:blue_concrete_stairs",
|
||||
"createindustry:blue_concrete_slab",
|
||||
"createindustry:light_blue_concrete",
|
||||
"createindustry:light_blue_concrete_wall",
|
||||
"createindustry:light_blue_concrete_stairs",
|
||||
"createindustry:light_blue_concrete_slab",
|
||||
"createindustry:red_concrete",
|
||||
"createindustry:red_concrete_wall",
|
||||
"createindustry:red_concrete_stairs",
|
||||
"createindustry:red_concrete_slab",
|
||||
"createindustry:green_concrete",
|
||||
"createindustry:green_concrete_wall",
|
||||
"createindustry:green_concrete_stairs",
|
||||
"createindustry:green_concrete_slab",
|
||||
"createindustry:lime_concrete",
|
||||
"createindustry:lime_concrete_wall",
|
||||
"createindustry:lime_concrete_stairs",
|
||||
"createindustry:lime_concrete_slab",
|
||||
"createindustry:pink_concrete",
|
||||
"createindustry:pink_concrete_wall",
|
||||
"createindustry:pink_concrete_stairs",
|
||||
"createindustry:pink_concrete_slab",
|
||||
"createindustry:magenta_concrete",
|
||||
"createindustry:magenta_concrete_wall",
|
||||
"createindustry:magenta_concrete_stairs",
|
||||
"createindustry:magenta_concrete_slab",
|
||||
"createindustry:yellow_concrete",
|
||||
"createindustry:yellow_concrete_wall",
|
||||
"createindustry:yellow_concrete_stairs",
|
||||
"createindustry:yellow_concrete_slab",
|
||||
"createindustry:gray_concrete",
|
||||
"createindustry:gray_concrete_wall",
|
||||
"createindustry:gray_concrete_stairs",
|
||||
"createindustry:gray_concrete_slab",
|
||||
"createindustry:light_gray_concrete",
|
||||
"createindustry:light_gray_concrete_wall",
|
||||
"createindustry:light_gray_concrete_stairs",
|
||||
"createindustry:light_gray_concrete_slab",
|
||||
"createindustry:brown_concrete",
|
||||
"createindustry:brown_concrete_wall",
|
||||
"createindustry:brown_concrete_stairs",
|
||||
"createindustry:brown_concrete_slab",
|
||||
"createindustry:cyan_concrete",
|
||||
"createindustry:cyan_concrete_wall",
|
||||
"createindustry:cyan_concrete_stairs",
|
||||
"createindustry:cyan_concrete_slab",
|
||||
"createindustry:purple_concrete",
|
||||
"createindustry:purple_concrete_wall",
|
||||
"createindustry:purple_concrete_stairs",
|
||||
"createindustry:purple_concrete_slab",
|
||||
"createindustry:orange_concrete",
|
||||
"createindustry:orange_concrete_wall",
|
||||
"createindustry:orange_concrete_stairs",
|
||||
"createindustry:orange_concrete_slab",
|
||||
"createindustry:concrete_wall",
|
||||
"createindustry:concrete_stairs",
|
||||
"createindustry:concrete_slab",
|
||||
"createindustry:rebar_concrete_slab",
|
||||
"createindustry:black_concrete",
|
||||
"createindustry:white_concrete",
|
||||
"createindustry:blue_concrete",
|
||||
"createindustry:light_blue_concrete",
|
||||
"createindustry:red_concrete",
|
||||
"createindustry:green_concrete",
|
||||
"createindustry:lime_concrete",
|
||||
"createindustry:pink_concrete",
|
||||
"createindustry:magenta_concrete",
|
||||
"createindustry:yellow_concrete",
|
||||
"createindustry:gray_concrete",
|
||||
"createindustry:light_gray_concrete",
|
||||
"createindustry:brown_concrete",
|
||||
"createindustry:cyan_concrete",
|
||||
"createindustry:purple_concrete",
|
||||
"createindustry:orange_concrete",
|
||||
"createindustry:black_concrete_stairs",
|
||||
"createindustry:white_concrete_stairs",
|
||||
"createindustry:blue_concrete_stairs",
|
||||
"createindustry:light_blue_concrete_stairs",
|
||||
"createindustry:red_concrete_stairs",
|
||||
"createindustry:green_concrete_stairs",
|
||||
"createindustry:lime_concrete_stairs",
|
||||
"createindustry:pink_concrete_stairs",
|
||||
"createindustry:magenta_concrete_stairs",
|
||||
"createindustry:yellow_concrete_stairs",
|
||||
"createindustry:gray_concrete_stairs",
|
||||
"createindustry:light_gray_concrete_stairs",
|
||||
"createindustry:brown_concrete_stairs",
|
||||
"createindustry:cyan_concrete_stairs",
|
||||
"createindustry:purple_concrete_stairs",
|
||||
"createindustry:orange_concrete_stairs",
|
||||
"createindustry:black_concrete_slab",
|
||||
"createindustry:white_concrete_slab",
|
||||
"createindustry:blue_concrete_slab",
|
||||
"createindustry:light_blue_concrete_slab",
|
||||
"createindustry:red_concrete_slab",
|
||||
"createindustry:green_concrete_slab",
|
||||
"createindustry:lime_concrete_slab",
|
||||
"createindustry:pink_concrete_slab",
|
||||
"createindustry:magenta_concrete_slab",
|
||||
"createindustry:yellow_concrete_slab",
|
||||
"createindustry:gray_concrete_slab",
|
||||
"createindustry:light_gray_concrete_slab",
|
||||
"createindustry:brown_concrete_slab",
|
||||
"createindustry:cyan_concrete_slab",
|
||||
"createindustry:purple_concrete_slab",
|
||||
"createindustry:orange_concrete_slab",
|
||||
"createindustry:black_concrete_wall",
|
||||
"createindustry:white_concrete_wall",
|
||||
"createindustry:blue_concrete_wall",
|
||||
"createindustry:light_blue_concrete_wall",
|
||||
"createindustry:red_concrete_wall",
|
||||
"createindustry:green_concrete_wall",
|
||||
"createindustry:lime_concrete_wall",
|
||||
"createindustry:pink_concrete_wall",
|
||||
"createindustry:magenta_concrete_wall",
|
||||
"createindustry:yellow_concrete_wall",
|
||||
"createindustry:gray_concrete_wall",
|
||||
"createindustry:light_gray_concrete_wall",
|
||||
"createindustry:brown_concrete_wall",
|
||||
"createindustry:cyan_concrete_wall",
|
||||
"createindustry:purple_concrete_wall",
|
||||
"createindustry:orange_concrete_wall",
|
||||
"createindustry:concrete",
|
||||
"createindustry:white_caution_block",
|
||||
"createindustry:blue_caution_block",
|
||||
"createindustry:light_blue_caution_block",
|
||||
@@ -95,6 +93,8 @@
|
||||
"createindustry:brown_caution_block",
|
||||
"createindustry:cyan_caution_block",
|
||||
"createindustry:purple_caution_block",
|
||||
"createindustry:orange_caution_block"
|
||||
"createindustry:orange_caution_block",
|
||||
"createindustry:concrete_slab",
|
||||
"createindustry:rebar_concrete_slab"
|
||||
]
|
||||
}
|
||||
@@ -1,23 +1,5 @@
|
||||
{
|
||||
"values": [
|
||||
"createindustry:concrete_slab",
|
||||
"createindustry:rebar_concrete_slab",
|
||||
"createindustry:black_concrete_slab",
|
||||
"createindustry:white_concrete_slab",
|
||||
"createindustry:blue_concrete_slab",
|
||||
"createindustry:light_blue_concrete_slab",
|
||||
"createindustry:red_concrete_slab",
|
||||
"createindustry:green_concrete_slab",
|
||||
"createindustry:lime_concrete_slab",
|
||||
"createindustry:pink_concrete_slab",
|
||||
"createindustry:magenta_concrete_slab",
|
||||
"createindustry:yellow_concrete_slab",
|
||||
"createindustry:gray_concrete_slab",
|
||||
"createindustry:light_gray_concrete_slab",
|
||||
"createindustry:brown_concrete_slab",
|
||||
"createindustry:cyan_concrete_slab",
|
||||
"createindustry:purple_concrete_slab",
|
||||
"createindustry:orange_concrete_slab",
|
||||
"createindustry:cut_bauxite_slab",
|
||||
"createindustry:polished_cut_bauxite_slab",
|
||||
"createindustry:cut_bauxite_brick_slab",
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
{
|
||||
"values": [
|
||||
"createindustry:factory_floor_stairs",
|
||||
"createindustry:concrete_stairs",
|
||||
"createindustry:rebar_concrete_stairs",
|
||||
"createindustry:black_concrete_stairs",
|
||||
"createindustry:white_concrete_stairs",
|
||||
"createindustry:blue_concrete_stairs",
|
||||
@@ -19,6 +17,8 @@
|
||||
"createindustry:cyan_concrete_stairs",
|
||||
"createindustry:purple_concrete_stairs",
|
||||
"createindustry:orange_concrete_stairs",
|
||||
"createindustry:concrete_stairs",
|
||||
"createindustry:rebar_concrete_stairs",
|
||||
"createindustry:cut_bauxite_stairs",
|
||||
"createindustry:polished_cut_bauxite_stairs",
|
||||
"createindustry:cut_bauxite_brick_stairs",
|
||||
|
||||
@@ -2,24 +2,42 @@
|
||||
"values": [
|
||||
"createindustry:fireproof_brick_reinforcement",
|
||||
"createindustry:factory_floor_slab",
|
||||
"createindustry:concrete_wall",
|
||||
"createindustry:rebar_concrete_wall",
|
||||
"createindustry:black_concrete_wall",
|
||||
"createindustry:black_concrete_slab",
|
||||
"createindustry:white_concrete_wall",
|
||||
"createindustry:white_concrete_slab",
|
||||
"createindustry:blue_concrete_wall",
|
||||
"createindustry:blue_concrete_slab",
|
||||
"createindustry:light_blue_concrete_wall",
|
||||
"createindustry:light_blue_concrete_slab",
|
||||
"createindustry:red_concrete_wall",
|
||||
"createindustry:red_concrete_slab",
|
||||
"createindustry:green_concrete_wall",
|
||||
"createindustry:green_concrete_slab",
|
||||
"createindustry:lime_concrete_wall",
|
||||
"createindustry:lime_concrete_slab",
|
||||
"createindustry:pink_concrete_wall",
|
||||
"createindustry:pink_concrete_slab",
|
||||
"createindustry:magenta_concrete_wall",
|
||||
"createindustry:magenta_concrete_slab",
|
||||
"createindustry:yellow_concrete_wall",
|
||||
"createindustry:yellow_concrete_slab",
|
||||
"createindustry:gray_concrete_wall",
|
||||
"createindustry:gray_concrete_slab",
|
||||
"createindustry:light_gray_concrete_wall",
|
||||
"createindustry:light_gray_concrete_slab",
|
||||
"createindustry:brown_concrete_wall",
|
||||
"createindustry:brown_concrete_slab",
|
||||
"createindustry:cyan_concrete_wall",
|
||||
"createindustry:cyan_concrete_slab",
|
||||
"createindustry:purple_concrete_wall",
|
||||
"createindustry:purple_concrete_slab",
|
||||
"createindustry:orange_concrete_wall",
|
||||
"createindustry:orange_concrete_slab",
|
||||
"createindustry:concrete_wall",
|
||||
"createindustry:concrete_slab",
|
||||
"createindustry:rebar_concrete_wall",
|
||||
"createindustry:rebar_concrete_slab",
|
||||
"createindustry:cut_bauxite_wall",
|
||||
"createindustry:polished_cut_bauxite_wall",
|
||||
"createindustry:cut_bauxite_brick_wall",
|
||||
|
||||
@@ -1,77 +1,42 @@
|
||||
package com.drmangotea.createindustry;
|
||||
|
||||
import com.drmangotea.createindustry.base.TFMGRegistrate;
|
||||
import com.drmangotea.createindustry.base.datagen.TFMGDataGen;
|
||||
import com.drmangotea.createindustry.items.weapons.flamethrover.BuiltinFlamethrowerFuelTypes;
|
||||
import com.drmangotea.createindustry.items.weapons.flamethrover.FlamethrowerFuelType;
|
||||
import com.drmangotea.createindustry.items.weapons.flamethrover.FlamethrowerFuelTypeManager;
|
||||
import com.drmangotea.createindustry.registry.TFMGContraptions;
|
||||
import com.drmangotea.createindustry.base.TFMGLangPartials;
|
||||
import com.drmangotea.createindustry.config.TFMGConfigs;
|
||||
import com.drmangotea.createindustry.items.weapons.explosives.thermite_grenades.fire.TFMGColoredFires;
|
||||
import com.drmangotea.createindustry.registry.*;
|
||||
import com.drmangotea.createindustry.worldgen.TFMGConfiguredFeatures;
|
||||
import com.drmangotea.createindustry.worldgen.TFMGFeatures;
|
||||
import com.drmangotea.createindustry.worldgen.TFMGOreConfigEntries;
|
||||
import com.mojang.logging.LogUtils;
|
||||
import com.simibubi.create.content.processing.burner.BlazeBurnerBlock;
|
||||
import com.simibubi.create.foundation.data.LangMerger;
|
||||
import com.simibubi.create.foundation.data.CreateRegistrate;
|
||||
import com.simibubi.create.foundation.item.ItemDescription;
|
||||
import com.simibubi.create.foundation.item.KineticStats;
|
||||
import com.simibubi.create.foundation.item.TooltipHelper;
|
||||
import com.simibubi.create.foundation.item.TooltipModifier;
|
||||
import net.minecraft.client.renderer.ItemBlockRenderTypes;
|
||||
import net.minecraft.client.renderer.RenderType;
|
||||
import net.minecraft.core.Holder;
|
||||
import net.minecraft.data.DataGenerator;
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
import net.minecraft.resources.ResourceLocation;
|
||||
import net.minecraft.sounds.SoundEvent;
|
||||
import net.minecraft.world.level.levelgen.placement.PlacedFeature;
|
||||
import net.minecraftforge.api.distmarker.Dist;
|
||||
import net.minecraftforge.common.MinecraftForge;
|
||||
//import net.minecraftforge.data.event.GatherDataEvent;
|
||||
import net.minecraftforge.eventbus.api.EventPriority;
|
||||
import net.minecraftforge.eventbus.api.IEventBus;
|
||||
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
||||
import net.minecraftforge.fml.DistExecutor;
|
||||
import net.minecraftforge.fml.ModLoadingContext;
|
||||
import net.minecraftforge.fml.common.Mod;
|
||||
import net.minecraftforge.event.server.ServerStartingEvent;
|
||||
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
|
||||
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
|
||||
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
|
||||
import org.slf4j.Logger;
|
||||
|
||||
import static com.simibubi.create.content.fluids.tank.BoilerHeaters.registerHeater;
|
||||
|
||||
|
||||
@Mod(CreateTFMG.MOD_ID)
|
||||
public class CreateTFMG
|
||||
{
|
||||
public class CreateTFMG implements ModInitializer {
|
||||
|
||||
public static final String MOD_ID = "createindustry";
|
||||
public static final String NAME = "Create: The Factory Must Grow";
|
||||
public static final TFMGRegistrate REGISTRATE = TFMGRegistrate.create();
|
||||
public static final CreateRegistrate REGISTRATE = CreateRegistrate.create(MOD_ID);
|
||||
public static final Logger LOGGER = LogUtils.getLogger();
|
||||
|
||||
static {
|
||||
REGISTRATE.setTooltipModifierFactory(item -> {
|
||||
return new ItemDescription.Modifier(item, TooltipHelper.Palette.STANDARD_CREATE)
|
||||
.andThen(TooltipModifier.mapNull(KineticStats.create(item)));
|
||||
});
|
||||
REGISTRATE.setTooltipModifierFactory(item ->
|
||||
new ItemDescription.Modifier(item, TooltipHelper.Palette.STANDARD_CREATE)
|
||||
.andThen(TooltipModifier.mapNull(KineticStats.create(item))));
|
||||
}
|
||||
|
||||
public CreateTFMG()
|
||||
{
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
|
||||
|
||||
|
||||
IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus();
|
||||
|
||||
REGISTRATE.registerEventListeners(FMLJavaModLoadingContext.get().getModEventBus());
|
||||
|
||||
FMLJavaModLoadingContext.get().getModEventBus().addListener(this::commonSetup);
|
||||
//
|
||||
REGISTRATE.register();
|
||||
|
||||
TFMGBlocks.register();
|
||||
TFMGItems.register();
|
||||
@@ -84,33 +49,29 @@ public class CreateTFMG
|
||||
TFMGSoundEvents.prepare();
|
||||
TFMGContraptions.prepare();
|
||||
TFMGOreConfigEntries.init();
|
||||
TFMGParticleTypes.register(modEventBus);
|
||||
TFMGMobEffects.register(modEventBus);
|
||||
TFMGPotions.register(modEventBus);
|
||||
TFMGParticleTypes.register();
|
||||
TFMGMobEffects.register();
|
||||
TFMGPotions.register();
|
||||
TFMGPackets.registerPackets();
|
||||
|
||||
|
||||
TFMGColoredFires.register(modEventBus);
|
||||
TFMGFeatures.register(modEventBus);
|
||||
TFMGRecipeTypes.register(modEventBus);
|
||||
TFMGColoredFires.register();
|
||||
TFMGFeatures.register();
|
||||
TFMGRecipeTypes.register();
|
||||
|
||||
TFMGConfigs.register(ModLoadingContext.get());
|
||||
TFMGConfigs.register();
|
||||
|
||||
//
|
||||
modEventBus.addListener(CreateTFMG::init);
|
||||
MinecraftForge.EVENT_BUS.register(this);
|
||||
modEventBus.addListener(EventPriority.LOWEST, TFMGDataGen::gatherData);
|
||||
modEventBus.addGenericListener(SoundEvent.class, TFMGSoundEvents::register);
|
||||
DistExecutor.safeRunWhenOn(Dist.CLIENT, () -> CreateTFMGClient::new);
|
||||
modEventBus.addListener(this::clientSetup);
|
||||
CreateTFMG.init();
|
||||
|
||||
//modEventBus.addListener(EventPriority.LOWEST, CreateTFMG::gatherData); CreateTFMGData gaming
|
||||
TFMGSoundEvents.register();
|
||||
}
|
||||
|
||||
public static void init(final FMLCommonSetupEvent event) {
|
||||
public static void init() {
|
||||
TFMGFluids.registerFluidInteractions();
|
||||
|
||||
event.enqueueWork(() -> {
|
||||
BuiltinFlamethrowerFuelTypes.register();
|
||||
//event.enqueueWork(() -> {
|
||||
|
||||
registerHeater(TFMGBlocks.FIREBOX.get(), (level, pos, state) -> {
|
||||
BlazeBurnerBlock.HeatLevel value = state.getValue(BlazeBurnerBlock.HEAT_LEVEL);
|
||||
if (value == BlazeBurnerBlock.HeatLevel.NONE) {
|
||||
@@ -125,32 +86,12 @@ public class CreateTFMG
|
||||
return -1;
|
||||
});
|
||||
|
||||
});
|
||||
//});
|
||||
}
|
||||
@SuppressWarnings("removal")
|
||||
private void clientSetup(final FMLClientSetupEvent event) {
|
||||
ItemBlockRenderTypes.setRenderLayer(TFMGColoredFires.GREEN_FIRE.get(), RenderType.cutout());
|
||||
ItemBlockRenderTypes.setRenderLayer(TFMGColoredFires.BLUE_FIRE.get(), RenderType.cutout());
|
||||
}
|
||||
private void commonSetup(final FMLCommonSetupEvent event) {
|
||||
event.enqueueWork(() -> {
|
||||
final Holder<PlacedFeature> initializeOil = TFMGConfiguredFeatures.OIL_PLACED;
|
||||
final Holder<PlacedFeature> initializeSimulatedOil = TFMGConfiguredFeatures.OIL_DEPOSIT_PLACED;
|
||||
|
||||
});
|
||||
TFMGMobEffects.init();
|
||||
}
|
||||
@SubscribeEvent
|
||||
public void onServerStarting(ServerStartingEvent event)
|
||||
{
|
||||
LOGGER.info("YEEEHAAW");
|
||||
for (FlamethrowerFuelType type : FlamethrowerFuelTypeManager.BUILTIN_TYPE_MAP.values()) {
|
||||
LOGGER.info("Registered Builtin Flamethrower Fuel type: {}", FlamethrowerFuelTypeManager.getIdForType(type));
|
||||
}
|
||||
for (FlamethrowerFuelType type : FlamethrowerFuelTypeManager.CUSTOM_TYPE_MAP.values()) {
|
||||
LOGGER.info("Registered Custom Flamethrower Fuel type: {}", FlamethrowerFuelTypeManager.getIdForType(type));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public static ResourceLocation asResource(String path) {
|
||||
return new ResourceLocation(MOD_ID, path);
|
||||
|
||||
@@ -7,42 +7,40 @@ import com.drmangotea.createindustry.items.weapons.quad_potato_cannon.QuadPotato
|
||||
import com.drmangotea.createindustry.ponder.TFMGPonderIndex;
|
||||
import com.drmangotea.createindustry.registry.TFMGPartialModels;
|
||||
import com.drmangotea.createindustry.registry.TFMGParticleTypes;
|
||||
import com.simibubi.create.AllParticleTypes;
|
||||
import net.minecraftforge.common.MinecraftForge;
|
||||
import net.minecraftforge.eventbus.api.IEventBus;
|
||||
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
||||
import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
|
||||
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
|
||||
import io.github.fabricators_of_create.porting_lib.event.client.ParticleManagerRegistrationCallback;
|
||||
import net.fabricmc.api.ClientModInitializer;
|
||||
|
||||
public class CreateTFMGClient {
|
||||
public class CreateTFMGClient implements ClientModInitializer {
|
||||
public static final QuadPotatoCannonRenderHandler QUAD_POTATO_CANNON_RENDER_HANDLER = new QuadPotatoCannonRenderHandler();
|
||||
|
||||
public static final AdvancedPotatoCannonRenderHandler ADVANCED_POTATO_CANNON_RENDER_HANDLER = new AdvancedPotatoCannonRenderHandler();
|
||||
|
||||
public static final FlamethrowerRenderHandler FLAMETHROWER_RENDER_HANDLER = new FlamethrowerRenderHandler();
|
||||
|
||||
public CreateTFMGClient() {
|
||||
IEventBus modEventBus = FMLJavaModLoadingContext.get().getModEventBus();
|
||||
IEventBus forgeEventBus = MinecraftForge.EVENT_BUS;
|
||||
|
||||
@Override
|
||||
public void onInitializeClient() {
|
||||
TFMGPartialModels.init();
|
||||
modEventBus.addListener(TFMGParticleTypes::registerFactories);
|
||||
modEventBus.register(this);
|
||||
|
||||
ADVANCED_POTATO_CANNON_RENDER_HANDLER.registerListeners();
|
||||
QUAD_POTATO_CANNON_RENDER_HANDLER.registerListeners();
|
||||
FLAMETHROWER_RENDER_HANDLER.registerListeners();
|
||||
|
||||
|
||||
// ItemBlockRenderTypes.setRenderLayer(TFMGColoredFires.GREEN_FIRE.get(), RenderType.cutout());
|
||||
// ItemBlockRenderTypes.setRenderLayer(TFMGColoredFires.BLUE_FIRE.get(), RenderType.cutout());
|
||||
|
||||
ADVANCED_POTATO_CANNON_RENDER_HANDLER.registerListeners(forgeEventBus);
|
||||
QUAD_POTATO_CANNON_RENDER_HANDLER.registerListeners(forgeEventBus);
|
||||
FLAMETHROWER_RENDER_HANDLER.registerListeners(forgeEventBus);
|
||||
}
|
||||
|
||||
|
||||
@SubscribeEvent
|
||||
public void setup(final FMLClientSetupEvent event) {
|
||||
TFMGPonderIndex.register();
|
||||
TFMGPonderIndex.registerTags();
|
||||
ParticleManagerRegistrationCallback.EVENT.register(TFMGParticleTypes::registerFactories);
|
||||
initCompat();
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("Convert2MethodRef") // may cause class loading issues if changed
|
||||
private static void initCompat() {
|
||||
//used for client related compat
|
||||
//example: Mods.<YOUR MOD>.executeIfInstalled(() -> () -> <Compat Class>.<clientInit or init>());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user