1 Commits

Author SHA1 Message Date
pepagg
96d69690cc Update README.txt 2024-02-04 21:33:50 +01:00
1688 changed files with 7739 additions and 48735 deletions

View File

@@ -1 +1 @@
idk what to put there, just grow your factory
idk what to put there, just grow your factory or else :3

View File

@@ -1,35 +0,0 @@
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

View File

@@ -1,85 +1,162 @@
plugins {
id 'fabric-loom' version "1.5-SNAPSHOT"
id 'maven-publish'
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 '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.9.0c-1.19.2-fabric'
version = '0.7.0c-1.19.2'
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.
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_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' }
repositories {
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
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/"
}
}
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}")
// Create - dependencies are added transitively
modImplementation("com.simibubi.create:create-fabric-${minecraft_version}:${create_version}")
minecraft 'net.minecraftforge:forge:1.19.2-43.2.3'
//JEI
compileOnly("mezz.jei:jei-${minecraft_version}-fabric-api:${jei_version}")
runtimeOnly(compileOnly("mezz.jei:jei-${minecraft_version}-fabric:${jei_version}"))
compileOnly fg.deobf("com.tterrag.registrate:Registrate:${registrate_version}")
implementation fg.deobf("com.jozufozu.flywheel:flywheel-forge-${flywheel_minecraft_version}:${flywheel_version}")
// Development QOL
modLocalRuntime("maven.modrinth:lazydfu:${lazydfu_version}")
modLocalRuntime("com.terraformersmc:modmenu:${modmenu_version}")
}
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)
}
java {
withSourcesJar()
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"
}
// Example for how to get properties into the manifest for reading at runtime.
jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}" }
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"
])
}
}
jar.finalizedBy('reobfJar')
publishing {
publications {
mavenJava(MavenPublication) {
@@ -93,32 +170,6 @@ publishing {
}
}
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
// }
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
}
//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' }

View File

@@ -1,16 +1,12 @@
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
jei_version = 11.6.0.1024
fabric_loader_version = 0.15.7
fabric_api_version = 0.92.0+1.20.1
jei_minecraft_version = 1.19.2
jei_version = 11.4.0.274
minecraft_version = 1.19.2
create_version = 0.5.1-f-build.1334+mc1.19.2
quilt_version = 22
parchment_version = 2022.11.27
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
registrate_version = MC1.19-1.1.5
modmenu_version = 4.2.0-beta.2
lazydfu_version = 0.1.3
registrate_version = MC1.19-1.1.5

Binary file not shown.

View File

@@ -1,7 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

35
gradlew vendored
View File

@@ -55,7 +55,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -80,11 +80,13 @@ do
esac
done
# This is normally unused
# shellcheck disable=SC2034
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
APP_NAME="Gradle"
APP_BASE_NAME=${0##*/}
# 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
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@@ -131,29 +133,22 @@ location of your Java installation."
fi
else
JAVACMD=java
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.
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
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
@@ -198,15 +193,11 @@ if "$cygwin" || "$msys" ; then
done
fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, 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.
# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \

1
gradlew.bat vendored
View File

@@ -26,7 +26,6 @@ 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%

View File

@@ -1,9 +1,6 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven { url = "https://maven.fabricmc.net/" }
maven { url = "https://maven.quiltmc.org/repository/release" }
maven { url = 'https://maven.minecraftforge.net/' }
}
}
}

View File

@@ -1 +0,0 @@
Block.box(6, 0, 6, 10, 9, 10)

View File

@@ -1 +0,0 @@
Block.box(6, 0, 6, 10, 16, 10)

View File

@@ -1 +0,0 @@
Shapes.join(Block.box(1, 0, 5, 15, 10, 11), Block.box(5, 0, 0, 11, 11, 5), BooleanOp.OR)

View File

@@ -1 +0,0 @@
Shapes.join(Block.box(3, 0, 3, 13, 14, 13), Block.box(0, 5, 0, 16, 11, 16), BooleanOp.OR)

View File

@@ -1 +0,0 @@
Block.box(5, 0, 5, 11, 9, 11)

View File

@@ -1 +0,0 @@
Shapes.join(Block.box(1, 0, 1, 15, 3, 15), Block.box(3, 3, 0, 13, 13, 16), BooleanOp.OR)

View File

@@ -1 +0,0 @@
Block.box(3, 3, 2, 13, 13, 14)

View File

@@ -1 +0,0 @@
Block.box(0, 2, 13, 16, 14, 16)

View File

@@ -1,2 +1,2 @@
// 1.19.2 2024-07-04T21:35:03.7066189 Create: The Factory Must Grow's lang merger
667bd974985484dace99ea6a538d4b4bf26283f8 assets/createindustry/lang/en_us.json
// 1.19.2 2024-01-12T20:54:31.7261534 Create: The Factory Must Grow's lang merger
98af1b1ba96b233fd0d321a932d7f5dcde5e7f19 assets/createindustry/lang/en_us.json

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/accumulator/block"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/aluminum_cable_hub"
}
}
}

View File

@@ -1,17 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/aluminum_frame/block"
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/brass_cable_hub"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/brass_frame/block"
}
}
}

View File

@@ -1,17 +0,0 @@
{
"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
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,56 +0,0 @@
{
"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
}
}
}

View File

@@ -1,17 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/capacitor/block"
}
}
}

View File

@@ -1,100 +0,0 @@
{
"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"
}
}
]
}

View File

@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "createindustry:block/cast_iron_distillation_controller/block"
}
}
}

View File

@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "createindustry:block/cast_iron_distillation_output/block"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/cast_iron_frame/block"
}
}
}

View File

@@ -1,34 +0,0 @@
{
"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
}
}
}

View File

@@ -1,17 +0,0 @@
{
"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
}
}
}

View File

@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "createindustry:block/caution_block"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/cinder_block/block"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/cinderflour_block/block"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/converter/block"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/copper_cable_hub"
}
}
}

View File

@@ -1,10 +0,0 @@
{
"variants": {
"can_extract=false": {
"model": "createindustry:block/copper_coil/block"
},
"can_extract=true": {
"model": "createindustry:block/copper_coil/block_arrow"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/copper_frame/block"
}
}
}

View File

@@ -1,17 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/copycat_cable_base/block"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "minecraft:block/air"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/creative_generator"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/crude_oil"
}
}
}

View File

@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "createindustry:block/crude_oil_fluid"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/cut_galena"
}
}
}

View File

@@ -1,13 +0,0 @@
{
"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"
}
}
}

View File

@@ -1,209 +0,0 @@
{
"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
}
}
}

View File

@@ -1,90 +0,0 @@
{
"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"
}
}
]
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/cut_galena_bricks"
}
}
}

View File

@@ -1,13 +0,0 @@
{
"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"
}
}
}

View File

@@ -1,209 +0,0 @@
{
"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
}
}
}

View File

@@ -1,90 +0,0 @@
{
"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"
}
}
]
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/deepslate_lead_ore"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/deepslate_lithium_ore"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/deepslate_nickel_ore"
}
}
}

View File

@@ -1,88 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/electric_casing"
}
}
}

View File

@@ -1,26 +0,0 @@
{
"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
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,79 +0,0 @@
{
"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
}
}
}

View File

@@ -1,18 +0,0 @@
{
"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"
}
]
}
}

View File

@@ -1,16 +0,0 @@
{
"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
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,30 +0,0 @@
{
"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
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,13 +0,0 @@
{
"variants": {
"type=bottom": {
"model": "createindustry:block/hardened_planks_bottom"
},
"type=double": {
"model": "createindustry:block/hardened_planks"
},
"type=top": {
"model": "createindustry:block/hardened_planks_top"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/heavy_cable_hub"
}
}
}

View File

@@ -1,56 +0,0 @@
{
"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
}
}
}

View File

@@ -1,56 +0,0 @@
{
"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
}
}
}

View File

@@ -1,56 +0,0 @@
{
"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
}
}
}

View File

@@ -1,56 +0,0 @@
{
"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
}
}
}

View File

@@ -1,56 +0,0 @@
{
"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
}
}
}

View File

@@ -1,20 +0,0 @@
{
"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
}
}
}

View File

@@ -1,56 +0,0 @@
{
"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
}
}
}

View File

@@ -1,17 +0,0 @@
{
"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
}
}
}

View File

@@ -1,17 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/layered_galena"
}
}
}

View File

@@ -1,100 +0,0 @@
{
"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"
}
}
]
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/lead_block"
}
}
}

View File

@@ -1,17 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/lead_frame/block"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/lead_glass"
}
}
}

View File

@@ -1,34 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/lead_ore"
}
}
}

View File

@@ -1,17 +0,0 @@
{
"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
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,836 +0,0 @@
{
"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
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,19 +0,0 @@
{
"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
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/lithium_block"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "createindustry:block/lithium_ore"
}
}
}

View File

@@ -1,48 +0,0 @@
{
"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
}
}
}

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