Compare commits
12 Commits
pepagg-pat
...
1.19.2-fab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd9acfcb94 | ||
|
|
e6c8effe4c | ||
|
|
f957e697d9 | ||
|
|
f6031652c2 | ||
|
|
b508cfef9f | ||
|
|
756d8cd137 | ||
|
|
c74c4937e2 | ||
|
|
303be9dae4 | ||
|
|
b7a62684b8 | ||
|
|
dd72e37691 | ||
|
|
b711aa2dc3 | ||
|
|
7c3b41762f |
35
TODO.txt
Normal file
35
TODO.txt
Normal file
@@ -0,0 +1,35 @@
|
||||
0.9.1
|
||||
|
||||
aluminum tanks
|
||||
portable generator
|
||||
smokestacks
|
||||
firebox produce co2
|
||||
coke ovens co2
|
||||
generator upgrade
|
||||
oil can
|
||||
cooling fluid bottle
|
||||
invert redstone control
|
||||
electric heater
|
||||
fuel pump
|
||||
asphalt mixture
|
||||
new cable connectors
|
||||
proper electric network
|
||||
engine efficiency rework
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
223
build.gradle
223
build.gradle
@@ -1,162 +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://repo.spongepowered.org/repository/maven-public' }
|
||||
}
|
||||
dependencies {
|
||||
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
|
||||
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.spongepowered.mixin'
|
||||
//mixin {
|
||||
// add sourceSets.main, "createindustry.refmap.json"
|
||||
//}
|
||||
|
||||
version = '0.7.0c-1.19.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: 'official', version: '1.19.2'
|
||||
|
||||
// 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 {
|
||||
// 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:1.19.2-43.2.3'
|
||||
// Create - dependencies are added transitively
|
||||
modImplementation("com.simibubi.create:create-fabric-${minecraft_version}:${create_version}")
|
||||
|
||||
compileOnly fg.deobf("com.tterrag.registrate:Registrate:${registrate_version}")
|
||||
implementation fg.deobf("com.jozufozu.flywheel:flywheel-forge-${flywheel_minecraft_version}:${flywheel_version}")
|
||||
//JEI
|
||||
compileOnly("mezz.jei:jei-${minecraft_version}-fabric-api:${jei_version}")
|
||||
runtimeOnly(compileOnly("mezz.jei:jei-${minecraft_version}-fabric:${jei_version}"))
|
||||
|
||||
implementation fg.deobf("com.simibubi.create:create-${create_minecraft_version}:${create_version}:all") { transitive = false }
|
||||
|
||||
compileOnly fg.deobf("mezz.jei:jei-${jei_minecraft_version}-common-api:${jei_version}")
|
||||
compileOnly fg.deobf("mezz.jei:jei-${jei_minecraft_version}-forge-api:${jei_version}")
|
||||
runtimeOnly fg.deobf("mezz.jei:jei-${jei_minecraft_version}-forge:${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) {
|
||||
@@ -170,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' }
|
||||
|
||||
@@ -1,12 +1,16 @@
|
||||
org.gradle.jvmargs=-Xmx3G
|
||||
org.gradle.daemon=false
|
||||
|
||||
jei_minecraft_version = 1.19.2
|
||||
jei_version = 11.4.0.274
|
||||
jei_version = 11.6.0.1024
|
||||
fabric_loader_version = 0.15.7
|
||||
fabric_api_version = 0.92.0+1.20.1
|
||||
|
||||
create_minecraft_version = 1.19.2
|
||||
flywheel_minecraft_version = 1.19.2
|
||||
flywheel_version = 0.6.10-20
|
||||
create_version = 0.5.1.f-45
|
||||
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.19-1.1.5
|
||||
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,6 +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
shapes/cable_connector.java
Normal file
1
shapes/cable_connector.java
Normal file
@@ -0,0 +1 @@
|
||||
Block.box(6, 0, 6, 10, 9, 10)
|
||||
1
shapes/cable_connector_middle.java
Normal file
1
shapes/cable_connector_middle.java
Normal file
@@ -0,0 +1 @@
|
||||
Block.box(6, 0, 6, 10, 16, 10)
|
||||
1
shapes/galvanic_cell.java
Normal file
1
shapes/galvanic_cell.java
Normal file
@@ -0,0 +1 @@
|
||||
Shapes.join(Block.box(1, 0, 5, 15, 10, 11), Block.box(5, 0, 0, 11, 11, 5), BooleanOp.OR)
|
||||
1
shapes/generator.java
Normal file
1
shapes/generator.java
Normal file
@@ -0,0 +1 @@
|
||||
Shapes.join(Block.box(3, 0, 3, 13, 14, 13), Block.box(0, 5, 0, 16, 11, 16), BooleanOp.OR)
|
||||
1
shapes/light_bulb.java
Normal file
1
shapes/light_bulb.java
Normal file
@@ -0,0 +1 @@
|
||||
Block.box(5, 0, 5, 11, 9, 11)
|
||||
1
shapes/resistor.java
Normal file
1
shapes/resistor.java
Normal file
@@ -0,0 +1 @@
|
||||
Shapes.join(Block.box(1, 0, 1, 15, 3, 15), Block.box(3, 3, 0, 13, 13, 16), BooleanOp.OR)
|
||||
1
shapes/rotor.java
Normal file
1
shapes/rotor.java
Normal file
@@ -0,0 +1 @@
|
||||
Block.box(3, 3, 2, 13, 13, 14)
|
||||
1
shapes/voltmeter.java
Normal file
1
shapes/voltmeter.java
Normal file
@@ -0,0 +1 @@
|
||||
Block.box(0, 2, 13, 16, 14, 16)
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,2 +1,2 @@
|
||||
// 1.19.2 2024-01-12T20:54:31.7261534 Create: The Factory Must Grow's lang merger
|
||||
98af1b1ba96b233fd0d321a932d7f5dcde5e7f19 assets/createindustry/lang/en_us.json
|
||||
// 1.19.2 2024-07-04T21:35:03.7066189 Create: The Factory Must Grow's lang merger
|
||||
667bd974985484dace99ea6a538d4b4bf26283f8 assets/createindustry/lang/en_us.json
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/accumulator/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/aluminum_cable_hub"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/aluminum_cogwheel"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/aluminum_frame/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/blue_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/blue_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/blue_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/blue_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/brass_cable_hub"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/brass_frame/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/brass_truss",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/brass_truss"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/brass_truss",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/brown_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/brown_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/brown_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/brown_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"variants": {
|
||||
"extension=false,facing=down": {
|
||||
"model": "createindustry:block/cable_connector/block",
|
||||
"x": 180
|
||||
},
|
||||
"extension=false,facing=east": {
|
||||
"model": "createindustry:block/cable_connector/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"extension=false,facing=north": {
|
||||
"model": "createindustry:block/cable_connector/block",
|
||||
"x": 90
|
||||
},
|
||||
"extension=false,facing=south": {
|
||||
"model": "createindustry:block/cable_connector/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"extension=false,facing=up": {
|
||||
"model": "createindustry:block/cable_connector/block"
|
||||
},
|
||||
"extension=false,facing=west": {
|
||||
"model": "createindustry:block/cable_connector/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"extension=true,facing=down": {
|
||||
"model": "createindustry:block/cable_connector/block_extension",
|
||||
"x": 180
|
||||
},
|
||||
"extension=true,facing=east": {
|
||||
"model": "createindustry:block/cable_connector/block_extension",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"extension=true,facing=north": {
|
||||
"model": "createindustry:block/cable_connector/block_extension",
|
||||
"x": 90
|
||||
},
|
||||
"extension=true,facing=south": {
|
||||
"model": "createindustry:block/cable_connector/block_extension",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"extension=true,facing=up": {
|
||||
"model": "createindustry:block/cable_connector/block_extension"
|
||||
},
|
||||
"extension=true,facing=west": {
|
||||
"model": "createindustry:block/cable_connector/block_extension",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/cable_tube",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/cable_tube"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/cable_tube",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/capacitor/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_post_ends"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_post"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_cap"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "true",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_cap",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "true",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_cap_alt"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "true",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_cap_alt",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_side"
|
||||
},
|
||||
"when": {
|
||||
"north": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_side",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_side_alt"
|
||||
},
|
||||
"when": {
|
||||
"south": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cast_iron_side_alt",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"west": "true"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/cast_iron_distillation_controller/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/cast_iron_distillation_output/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/cast_iron_frame/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,waterlogged=false": {
|
||||
"model": "createindustry:block/cast_iron_ladder",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,waterlogged=true": {
|
||||
"model": "createindustry:block/cast_iron_ladder",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,waterlogged=false": {
|
||||
"model": "createindustry:block/cast_iron_ladder"
|
||||
},
|
||||
"facing=north,waterlogged=true": {
|
||||
"model": "createindustry:block/cast_iron_ladder"
|
||||
},
|
||||
"facing=south,waterlogged=false": {
|
||||
"model": "createindustry:block/cast_iron_ladder",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,waterlogged=true": {
|
||||
"model": "createindustry:block/cast_iron_ladder",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,waterlogged=false": {
|
||||
"model": "createindustry:block/cast_iron_ladder",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,waterlogged=true": {
|
||||
"model": "createindustry:block/cast_iron_ladder",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/cast_iron_truss",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/cast_iron_truss"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/cast_iron_truss",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/caution_block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/cinder_block/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/cinderflour_block/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/converter/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/copper_cable_hub"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"variants": {
|
||||
"can_extract=false": {
|
||||
"model": "createindustry:block/copper_coil/block"
|
||||
},
|
||||
"can_extract=true": {
|
||||
"model": "createindustry:block/copper_coil/block_arrow"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/copper_frame/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/copper_truss",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/copper_truss"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/copper_truss",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/copycat_cable_base/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "minecraft:block/air"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/creative_generator"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/crude_oil"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/crude_oil_fluid"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/cut_galena"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "createindustry:block/cut_galena_brick_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "createindustry:block/cut_galena_bricks"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "createindustry:block/cut_galena_brick_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,209 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_brick_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_bricks_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_bricks_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_bricks_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_bricks_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_bricks_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_bricks_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_bricks_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_bricks_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_bricks_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/cut_galena_bricks"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "createindustry:block/cut_galena_slab"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "createindustry:block/cut_galena"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "createindustry:block/cut_galena_slab_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,209 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_stairs"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_stairs",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_stairs",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_stairs",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "createindustry:block/cut_galena_stairs_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "createindustry:block/cut_galena_stairs",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_wall_post"
|
||||
},
|
||||
"when": {
|
||||
"up": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_wall_side",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_wall_side_tall",
|
||||
"uvlock": true
|
||||
},
|
||||
"when": {
|
||||
"north": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"when": {
|
||||
"south": "tall"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_wall_side",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "low"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/cut_galena_wall_side_tall",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"when": {
|
||||
"west": "tall"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/cyan_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/cyan_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/cyan_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/cyan_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/deepslate_lead_ore"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/deepslate_lithium_ore"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/deepslate_nickel_ore"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down,facing_up=false,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block"
|
||||
},
|
||||
"facing=down,facing_up=false,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block"
|
||||
},
|
||||
"facing=down,facing_up=true,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up"
|
||||
},
|
||||
"facing=down,facing_up=true,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up"
|
||||
},
|
||||
"facing=east,facing_up=false,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block"
|
||||
},
|
||||
"facing=east,facing_up=false,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block"
|
||||
},
|
||||
"facing=east,facing_up=true,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up"
|
||||
},
|
||||
"facing=east,facing_up=true,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up"
|
||||
},
|
||||
"facing=north,facing_up=false,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,facing_up=false,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,facing_up=true,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,facing_up=true,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up",
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,facing_up=false,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,facing_up=false,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,facing_up=true,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up",
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,facing_up=true,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up",
|
||||
"y": 90
|
||||
},
|
||||
"facing=up,facing_up=false,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block"
|
||||
},
|
||||
"facing=up,facing_up=false,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block"
|
||||
},
|
||||
"facing=up,facing_up=true,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up"
|
||||
},
|
||||
"facing=up,facing_up=true,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up"
|
||||
},
|
||||
"facing=west,facing_up=false,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,facing_up=false,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,facing_up=true,waterlogged=false": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,facing_up=true,waterlogged=true": {
|
||||
"model": "createindustry:block/diagonal_cable_block/block_up",
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/electric_casing"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "createindustry:block/electric_motor/block_vertical",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/electric_motor/block",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/electric_motor/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/electric_motor/block"
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "createindustry:block/electric_motor/block_vertical"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/electric_motor/block",
|
||||
"y": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/energy_meter/block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/energy_meter/block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/energy_meter/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/energy_meter/block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,79 @@
|
||||
{
|
||||
"variants": {
|
||||
"blaze=fading,facing=east": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 90
|
||||
},
|
||||
"blaze=fading,facing=north": {
|
||||
"model": "createindustry:block/firebox/block_lit"
|
||||
},
|
||||
"blaze=fading,facing=south": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 180
|
||||
},
|
||||
"blaze=fading,facing=west": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 270
|
||||
},
|
||||
"blaze=kindled,facing=east": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 90
|
||||
},
|
||||
"blaze=kindled,facing=north": {
|
||||
"model": "createindustry:block/firebox/block_lit"
|
||||
},
|
||||
"blaze=kindled,facing=south": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 180
|
||||
},
|
||||
"blaze=kindled,facing=west": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 270
|
||||
},
|
||||
"blaze=none,facing=east": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 90
|
||||
},
|
||||
"blaze=none,facing=north": {
|
||||
"model": "createindustry:block/firebox/block_lit"
|
||||
},
|
||||
"blaze=none,facing=south": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 180
|
||||
},
|
||||
"blaze=none,facing=west": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 270
|
||||
},
|
||||
"blaze=seething,facing=east": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 90
|
||||
},
|
||||
"blaze=seething,facing=north": {
|
||||
"model": "createindustry:block/firebox/block_lit"
|
||||
},
|
||||
"blaze=seething,facing=south": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 180
|
||||
},
|
||||
"blaze=seething,facing=west": {
|
||||
"model": "createindustry:block/firebox/block_lit",
|
||||
"y": 270
|
||||
},
|
||||
"blaze=smouldering,facing=east": {
|
||||
"model": "createindustry:block/firebox/block",
|
||||
"y": 90
|
||||
},
|
||||
"blaze=smouldering,facing=north": {
|
||||
"model": "createindustry:block/firebox/block"
|
||||
},
|
||||
"blaze=smouldering,facing=south": {
|
||||
"model": "createindustry:block/firebox/block",
|
||||
"y": 180
|
||||
},
|
||||
"blaze=smouldering,facing=west": {
|
||||
"model": "createindustry:block/firebox/block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"variants": {
|
||||
"": [
|
||||
{
|
||||
"model": "createindustry:block/galena_natural_0"
|
||||
},
|
||||
{
|
||||
"model": "createindustry:block/galena_natural_1"
|
||||
},
|
||||
{
|
||||
"model": "createindustry:block/galena_natural_2"
|
||||
},
|
||||
{
|
||||
"model": "createindustry:block/galena_natural_3"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/galena_pillar_horizontal",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/galena_pillar"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/galena_pillar_horizontal",
|
||||
"x": 90
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/galvanic_cell/block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/galvanic_cell/block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/galvanic_cell/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/galvanic_cell/block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "createindustry:block/generator/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/generator/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/generator/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/generator/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "createindustry:block/generator/block"
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/generator/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/gray_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/gray_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/gray_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/gray_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/green_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/green_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/green_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/green_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"variants": {
|
||||
"type=bottom": {
|
||||
"model": "createindustry:block/hardened_planks_bottom"
|
||||
},
|
||||
"type=double": {
|
||||
"model": "createindustry:block/hardened_planks"
|
||||
},
|
||||
"type=top": {
|
||||
"model": "createindustry:block/hardened_planks_top"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/heavy_cable_hub"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel"
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel_top"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel_bottom"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel_top_bottom"
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_aluminum_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel"
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel_top"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel_bottom"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel_top_bottom"
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel"
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel_top"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel_bottom"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel_top_bottom"
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_aluminum_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel"
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel_top"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel_bottom"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel_top_bottom"
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel"
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel_top"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel_bottom"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel_top_bottom"
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_large_steel_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/encased_shaft/block_heavy_casing",
|
||||
"uvlock": true,
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/encased_shaft/block_heavy_casing",
|
||||
"uvlock": true
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/encased_shaft/block_heavy_casing",
|
||||
"uvlock": true,
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=x,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel"
|
||||
},
|
||||
"axis=y,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel_top"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel_bottom"
|
||||
},
|
||||
"axis=y,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel_top_bottom"
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=false,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel_top",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=false": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"axis=z,bottom_shaft=true,top_shaft=true": {
|
||||
"model": "createindustry:block/heavy_casing_encased_steel_cogwheel_top_bottom",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/large_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/large_aluminum_cogwheel"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/large_aluminum_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/large_steel_cogwheel",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/large_steel_cogwheel"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/large_steel_cogwheel",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/layered_galena"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
{
|
||||
"multipart": [
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_post_ends"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_post"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_cap"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "true",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_cap",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "true",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_cap_alt"
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "true",
|
||||
"west": "false"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_cap_alt",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "false",
|
||||
"north": "false",
|
||||
"south": "false",
|
||||
"west": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_side"
|
||||
},
|
||||
"when": {
|
||||
"north": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_side",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"east": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_side_alt"
|
||||
},
|
||||
"when": {
|
||||
"south": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
"apply": {
|
||||
"model": "createindustry:block/lead_side_alt",
|
||||
"y": 90
|
||||
},
|
||||
"when": {
|
||||
"west": "true"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/lead_block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/lead_flywheel/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/lead_flywheel/block"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/lead_flywheel/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/lead_frame/block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/lead_glass"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east,waterlogged=false": {
|
||||
"model": "createindustry:block/lead_ladder",
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,waterlogged=true": {
|
||||
"model": "createindustry:block/lead_ladder",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,waterlogged=false": {
|
||||
"model": "createindustry:block/lead_ladder"
|
||||
},
|
||||
"facing=north,waterlogged=true": {
|
||||
"model": "createindustry:block/lead_ladder"
|
||||
},
|
||||
"facing=south,waterlogged=false": {
|
||||
"model": "createindustry:block/lead_ladder",
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,waterlogged=true": {
|
||||
"model": "createindustry:block/lead_ladder",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,waterlogged=false": {
|
||||
"model": "createindustry:block/lead_ladder",
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,waterlogged=true": {
|
||||
"model": "createindustry:block/lead_ladder",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/lead_ore"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"variants": {
|
||||
"axis=x": {
|
||||
"model": "createindustry:block/lead_truss",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"axis=y": {
|
||||
"model": "createindustry:block/lead_truss"
|
||||
},
|
||||
"axis=z": {
|
||||
"model": "createindustry:block/lead_truss",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/light_blue_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/light_blue_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/light_blue_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/light_blue_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,836 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down,level=0,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=0,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=1,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=1,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=10,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=10,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=11,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=11,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=12,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=12,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=13,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=13,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=14,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=14,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=15,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=15,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=2,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=2,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=3,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=3,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=4,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=4,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=5,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=5,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=6,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=6,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=7,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=7,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=8,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=8,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=9,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,level=9,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,level=0,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=0,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=1,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=1,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=10,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=10,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=11,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=11,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=12,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=12,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=13,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=13,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=14,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=14,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=15,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=15,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=2,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=2,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=3,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=3,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=4,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=4,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=5,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=5,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=6,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=6,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=7,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=7,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=8,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=8,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=9,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,level=9,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 90
|
||||
},
|
||||
"facing=north,level=0,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=0,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=1,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=1,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=10,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=10,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=11,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=11,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=12,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=12,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=13,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=13,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=14,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=14,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=15,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=15,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=2,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=2,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=3,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=3,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=4,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=4,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=5,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=5,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=6,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=6,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=7,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=7,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=8,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=8,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=9,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=north,level=9,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90
|
||||
},
|
||||
"facing=south,level=0,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=0,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=1,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=1,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=10,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=10,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=11,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=11,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=12,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=12,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=13,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=13,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=14,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=14,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=15,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=15,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=2,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=2,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=3,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=3,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=4,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=4,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=5,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=5,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=6,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=6,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=7,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=7,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=8,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=8,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=9,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,level=9,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=up,level=0,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=0,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=1,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=1,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=10,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=10,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=11,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=11,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=12,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=12,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=13,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=13,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=14,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=14,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=15,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=15,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=2,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=2,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=3,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=3,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=4,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=4,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=5,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=5,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=6,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=6,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=7,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=7,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=8,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=8,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=9,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=up,level=9,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block"
|
||||
},
|
||||
"facing=west,level=0,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=0,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=1,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=1,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=10,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=10,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=11,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=11,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=12,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=12,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=13,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=13,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=14,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=14,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=15,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=15,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=2,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=2,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=3,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=3,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=4,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=4,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=5,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=5,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=6,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=6,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=7,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=7,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=8,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=8,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=9,waterlogged=false": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,level=9,waterlogged=true": {
|
||||
"model": "createindustry:block/light_bulb/block",
|
||||
"x": 90,
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/light_gray_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/light_gray_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/light_gray_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/light_gray_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/lime_caution_block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/lime_caution_block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/lime_caution_block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/lime_caution_block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/lithium_block"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "createindustry:block/lithium_ore"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down,waterlogged=false": {
|
||||
"model": "createindustry:block/lithium_torch/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=down,waterlogged=true": {
|
||||
"model": "createindustry:block/lithium_torch/block",
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,waterlogged=false": {
|
||||
"model": "createindustry:block/lithium_torch/block_wall"
|
||||
},
|
||||
"facing=east,waterlogged=true": {
|
||||
"model": "createindustry:block/lithium_torch/block_wall"
|
||||
},
|
||||
"facing=north,waterlogged=false": {
|
||||
"model": "createindustry:block/lithium_torch/block_wall",
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,waterlogged=true": {
|
||||
"model": "createindustry:block/lithium_torch/block_wall",
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,waterlogged=false": {
|
||||
"model": "createindustry:block/lithium_torch/block_wall",
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,waterlogged=true": {
|
||||
"model": "createindustry:block/lithium_torch/block_wall",
|
||||
"y": 90
|
||||
},
|
||||
"facing=up,waterlogged=false": {
|
||||
"model": "createindustry:block/lithium_torch/block"
|
||||
},
|
||||
"facing=up,waterlogged=true": {
|
||||
"model": "createindustry:block/lithium_torch/block"
|
||||
},
|
||||
"facing=west,waterlogged=false": {
|
||||
"model": "createindustry:block/lithium_torch/block_wall",
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,waterlogged=true": {
|
||||
"model": "createindustry:block/lithium_torch/block_wall",
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"variants": {
|
||||
"facing=down": {
|
||||
"model": "createindustry:block/low_grade_fuel_engine/block",
|
||||
"x": 90,
|
||||
"y": 180
|
||||
},
|
||||
"facing=east": {
|
||||
"model": "createindustry:block/low_grade_fuel_engine/block",
|
||||
"y": 90
|
||||
},
|
||||
"facing=north": {
|
||||
"model": "createindustry:block/low_grade_fuel_engine/block"
|
||||
},
|
||||
"facing=south": {
|
||||
"model": "createindustry:block/low_grade_fuel_engine/block",
|
||||
"y": 180
|
||||
},
|
||||
"facing=up": {
|
||||
"model": "createindustry:block/low_grade_fuel_engine/block",
|
||||
"x": 270,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west": {
|
||||
"model": "createindustry:block/low_grade_fuel_engine/block",
|
||||
"y": 270
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user