7 Commits

Author SHA1 Message Date
pouffy
ede78c2bdc Polarizing Recipe 2024-07-22 23:02:19 +01:00
pouffy
a32804c1cb Proper Datagen
- Also: better flamethrower fuel registry
- Also: Blast Stove multiblock & my multiblock system.
2024-07-22 17:00:46 +01:00
DrMangoTea
303be9dae4 0.9.0c 2024-07-05 00:12:07 +02:00
DrMangoTea
b7a62684b8 0.9.0 2024-07-04 20:47:50 +02:00
DrMangoTea
dd72e37691 Merge remote-tracking branch 'origin/main' 2024-07-04 20:35:13 +02:00
DrMangoTea
b711aa2dc3 0.9.0 2024-07-04 20:08:04 +02:00
DrMangoTea
7c3b41762f 0.9.0 2024-07-04 20:07:35 +02:00
1866 changed files with 56329 additions and 7217 deletions

View File

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

35
TODO.txt Normal file
View 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

View File

@@ -4,11 +4,15 @@ buildscript {
maven { url = 'https://maven.minecraftforge.net' }
mavenCentral()
jcenter()
maven { url = 'https://maven.parchmentmc.org' }
maven { url = 'https://repo.spongepowered.org/repository/maven-public' }
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
classpath "org.parchmentmc:librarian:${librarian_version}"
classpath "org.spongepowered:mixingradle:0.7-SNAPSHOT"
}
}
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
@@ -18,12 +22,14 @@ plugins {
id 'com.matthewprenger.cursegradle' version '1.4.0'
}
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'org.parchmentmc.librarian.forgegradle'
apply plugin: 'org.spongepowered.mixin'
//mixin {
// add sourceSets.main, "createindustry.refmap.json"
//}
version = '0.7.0c-1.19.2'
version = '0.9.0c-1.19.2'
group = 'com.drmangotea.createindustry' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'createindustry'
@@ -32,7 +38,8 @@ 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'
mappings channel: 'parchment', version: "${parchment_version}-${minecraft_version}"
// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') // Currently, this location cannot be changed from the default.
@@ -101,7 +108,12 @@ sourceSets.main.resources { srcDir 'src/generated/resources' }
repositories {
maven {
url = 'https://www.cursemaven.com'
content {
includeGroup "curse.maven"
}
}
maven {
// location of the maven that hosts JEI files since January 2023
// location of the maven for Vazkii's mods
@@ -119,12 +131,25 @@ repositories {
dependencies {
minecraft 'net.minecraftforge:forge:1.19.2-43.2.3'
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
compileOnly fg.deobf("com.tterrag.registrate:Registrate:${registrate_version}")
implementation fg.deobf("com.jozufozu.flywheel:flywheel-forge-${flywheel_minecraft_version}:${flywheel_version}")
implementation fg.deobf("com.jozufozu.flywheel:flywheel-forge-${minecraft_version}:${flywheel_version}")
implementation fg.deobf("com.simibubi.create:create-${create_minecraft_version}:${create_version}:all") { transitive = false }
implementation fg.deobf("com.simibubi.create:create-${minecraft_version}:${create_version}:all") { transitive = false }
implementation fg.deobf("curse.maven:createaddition-439890:5070245")
implementation fg.deobf("curse.maven:zinclib-968773:5110339")
implementation fg.deobf("curse.maven:mekanism-268560:4644795")
implementation fg.deobf("curse.maven:selene-499980:4983974")
implementation fg.deobf("curse.maven:spark-361579:4505309")
//implementation fg.deobf("curse.maven:create-steam-n-rails-688231:5246888")
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}")

View File

@@ -3,10 +3,12 @@ org.gradle.daemon=false
jei_minecraft_version = 1.19.2
jei_version = 11.4.0.274
forge_version = 43.2.8
create_minecraft_version = 1.19.2
flywheel_minecraft_version = 1.19.2
minecraft_version = 1.19.2
flywheel_version = 0.6.10-20
create_version = 0.5.1.f-45
librarian_version = 1.+
parchment_version = 2022.11.27
registrate_version = MC1.19-1.1.5

View File

@@ -2,5 +2,8 @@ pluginManagement {
repositories {
gradlePluginPortal()
maven { url = 'https://maven.minecraftforge.net/' }
}
}
}

View File

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

View File

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

View 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
View 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
View File

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

1
shapes/resistor.java Normal file
View 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
View File

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

1
shapes/voltmeter.java Normal file
View File

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

View File

@@ -0,0 +1,6 @@
// 1.19.2 2024-07-22T12:33:14.6532438 TFMG's Sequenced Assembly Recipes
258d38baea53fb3126ec94f06a5d5e6e6c14d7d1 data/createindustry/recipes/sequenced_assembly/gasoline_engine.json
e30d3f96b49da40f39cc488873345e2793c4f8d8 data/createindustry/recipes/sequenced_assembly/heavy_plate.json
da3f1fceaf82a27b879d176056d3c541bb35ce99 data/createindustry/recipes/sequenced_assembly/lpg_engine.json
83bf2c416a7ac7c7958dd4ab8feedfd9429d8dad data/createindustry/recipes/sequenced_assembly/steel_mechanism.json
bfac9c93d67d83a0761bb65bb12346514639ad51 data/createindustry/recipes/sequenced_assembly/turbine_engine.json

View File

@@ -0,0 +1,57 @@
// 1.19.2 2024-07-22T19:15:46.2532461 TFMG's Processing Recipes
b37b7a8bacea5e80c7e080905b858b915af79763 data/createindustry/recipes/casting/steel.json
bfa68e40711dec40213c454b51825a08fa7135bf data/createindustry/recipes/coking/charcoal.json
54e9218c4e8656d38cf51f2af80652a1bd251593 data/createindustry/recipes/coking/coal_coke.json
6fd40a434761c8167eff8b8a7ade51f4fd1be313 data/createindustry/recipes/compacting/bitumen.json
52c90dd510024a3e1bdf6ae5990d4090927ac836 data/createindustry/recipes/compacting/cinderflourblock.json
180ceaee957572e9053b5e2165481dd56b3b2307 data/createindustry/recipes/compacting/plastic_molding.json
d98e44345a87579988171eb09a36d70f6fb368d6 data/createindustry/recipes/compacting/steel_block.json
a8b002d3bd79ea96c81cb5464026d40aeb919573 data/createindustry/recipes/compacting/thermite_powder.json
ae0f1f08c8804c0917062bc4c27c3b703167c275 data/createindustry/recipes/crushing/bauxite_recycling.json
8316b31edf4ef34ca86cd0c45b4da63e0f9a4143 data/createindustry/recipes/crushing/coal_coke_dust.json
da04be7e09f0619a70ce0381bf70b2f18f8be1b5 data/createindustry/recipes/crushing/copper_sulfate.json
6f659f695f6c4d2ac797054aba421d870dc59117 data/createindustry/recipes/crushing/galena_recycling.json
513e6b31cd5bda6a8f587a3002791624a4dc512b data/createindustry/recipes/crushing/lignite.json
6fd8239d1a5d74e4396b4678726b0b4284344e11 data/createindustry/recipes/crushing/limesand.json
c3d2fe15beb23f8cf18d7a848caefbaa06f335f2 data/createindustry/recipes/crushing/saltpeter.json
10bbf46b2a239ed623f16dbf3bdc84233280511b data/createindustry/recipes/crushing/sulfur.json
2375441aac6ee7dbbe6e5267a3d6415ecbfe3181 data/createindustry/recipes/distillation/crude_oil.json
e892ae58a62b6418064d356119b2fcd606b844fa data/createindustry/recipes/distillation/crude_oil_no_naphtha.json
dd6e8cf86ffa4ed576f46bfda151d242bb80de64 data/createindustry/recipes/distillation/heavy_oil.json
383264cd5bf9809d9787f403677bc2382b369eb7 data/createindustry/recipes/distillation/naphtha.json
f978eccd4691cdf7f79a854357abbc8b1307341b data/createindustry/recipes/filling/air_tank.json
45ac3b54e9a50b2a47a1bfedcfc6e6e674fdc47f data/createindustry/recipes/filling/bottle_of_battery_acid.json
ee5247aa1b17d5b14df206af42b3c7905c50bb94 data/createindustry/recipes/filling/bottle_of_concrete.json
812a539e4f87190ee283c5add67d7b125badebc8 data/createindustry/recipes/filling/butane_tank.json
e21db6e692dd85709d0c00559fc9220c2a2e6530 data/createindustry/recipes/filling/carbon_dioxide_tank.json
2d8da4d48e238d543e8129895ca59a0935ad1067 data/createindustry/recipes/filling/ethylene_tank.json
283aa7be890ca3fbd25357c8be288124cdbae975 data/createindustry/recipes/filling/hardened_wood_creosote.json
2b950614669ac2bb8463c48e606ae88f796eb2fa data/createindustry/recipes/filling/lpg_tank.json
7c1adb066b59fa889525812f48432cdafce178c3 data/createindustry/recipes/filling/napalm_potato.json
821ea765f7054283f6bf8d04e0ec1c82b8cfcf09 data/createindustry/recipes/filling/neon_tank.json
240a0d9935faa5eb8024245f1bf3ee2a83e23856 data/createindustry/recipes/filling/propane_tank.json
434aa03777ec738eeac96443ca45046fa2f1037b data/createindustry/recipes/filling/propylene_tank.json
734bb4adb55a628db6d205901dda3c35a8489855 data/createindustry/recipes/gas_blasting/heated_air.json
0939d97f720d323a0aec8f1f1e6c02698c634a79 data/createindustry/recipes/industrial_blasting/steel.json
9d96784b0740ffc3ceb0f11679bef7e26f6061d5 data/createindustry/recipes/item_application/heavy_machinery_casing.json
65ea7b81b508a91bb849cc64744bc11aa74082f6 data/createindustry/recipes/item_application/steel_casing.json
82ddfc0e1f1077beb8f3a6b20fb6960312411217 data/createindustry/recipes/milling/limesand.json
e59186ee803780bdbe9fae2212433476d2459f0f data/createindustry/recipes/mixing/blasting_mixture.json
24faf88c6b9dc8e53c99ca690fa2a56bafc634ec data/createindustry/recipes/mixing/cast_iron_ingot.json
9805ae2291c59912f5dea85061e98f85b8820705 data/createindustry/recipes/mixing/cement.json
30bd501977960395aa9c1d7263eafc790f4c14cb data/createindustry/recipes/mixing/concrete_mixture.json
ead743154be8c100fea443696d3c93835ac1c584 data/createindustry/recipes/mixing/concrete_mixture_from_slag.json
63ab0af81c7c3c721d1192ac610b61756c3643dc data/createindustry/recipes/mixing/cooling_fluid.json
86220a406057c4281aca95f93589e5721d2b8b82 data/createindustry/recipes/mixing/copper_sulfate.json
d714d33c8ee6cd65f925464d663e06bcbd87709c data/createindustry/recipes/mixing/gun_powder.json
2f98cbeaab5ebaffea418d448ed5ea481237adad data/createindustry/recipes/mixing/heated_air_tank.json
cab04677cf05d6c9f14bcaa6e201c3240c0f6998 data/createindustry/recipes/mixing/liquid_asphalt.json
01351b9d90e07c1396b574aab4fc6e0e9cdb1b2a data/createindustry/recipes/mixing/liquid_concrete.json
70db70b38822f87335fb197912837bd2ebd46348 data/createindustry/recipes/mixing/liquid_plastic_from_ethylene.json
84830703ef22cc705280f136044d83a2ee08baff data/createindustry/recipes/mixing/liquid_plastic_from_propylene.json
df0cee89322a498b43363ceeb226b551f7dd4803 data/createindustry/recipes/mixing/napalm.json
5d287309d6d632d44e73a291b6da191e175a98b4 data/createindustry/recipes/mixing/neon.json
e8349432c4aa738fa5992294353ea18dafced4e9 data/createindustry/recipes/mixing/slag.json
4a84b6e28baa9b148f0a87202e510ecca5882165 data/createindustry/recipes/mixing/sulfuric_acid.json
26a945e79d613057da87156c0c859e3319a42eb8 data/createindustry/recipes/mixing/zinc_sulfate.json
b30fc6733ead4e816811f4302159279adc2f485e data/createindustry/recipes/pressing/synthetic_leather.json

View File

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

@@ -0,0 +1,19 @@
// 1.19.2 2024-07-22T12:33:14.6532438 TFMG's Mechanical Crafting Recipes
943bb90b6ad0c793849cf95481b330abac7d7b14 data/createindustry/recipes/mechanical_crafting/advanced_potato_cannon.json
186a2a531980ac2f606a78a1b911fe0e2625b16d data/createindustry/recipes/mechanical_crafting/diesel_engine.json
6a98e0b3dffc6f85248962a6e6394aeb051ff68e data/createindustry/recipes/mechanical_crafting/engine_base.json
b82c5db4030da57245d2a706e0d35f53bf34e453 data/createindustry/recipes/mechanical_crafting/engine_chamber.json
6de25f528d7b58c42be4a75457b5a568c5d530a0 data/createindustry/recipes/mechanical_crafting/flamethrower.json
c479fcfc368163072ee415028bed90890f2ac9d5 data/createindustry/recipes/mechanical_crafting/generator.json
e2ccd4d3cee345a55beac281c6dc6ae46c6b744f data/createindustry/recipes/mechanical_crafting/large_radial_engine.json
f56738f712c94c7de85f801533c4891e161f8923 data/createindustry/recipes/mechanical_crafting/lithium_blade.json
df8d95c2c1e0df5028f47cde8deaca9df890e8d1 data/createindustry/recipes/mechanical_crafting/pumpjack_base.json
ecf585a454dc7a12ab50edf689bc9e8af91f07ef data/createindustry/recipes/mechanical_crafting/pumpjack_crank.json
2a62e8e8f0e160fb7d893ab31d4426a3757f65e7 data/createindustry/recipes/mechanical_crafting/quad_potato_cannon.json
500cde4e41bef594b28e8c628394147ac5daef49 data/createindustry/recipes/mechanical_crafting/radial_engine.json
6ee95c0ef86697df16cbe602fa15c3911084f84c data/createindustry/recipes/mechanical_crafting/rotor.json
f6b1c4af8f20cfc987de77b0b611452f954a2bd6 data/createindustry/recipes/mechanical_crafting/spark_plug.json
96fa8c1bf732f1c5f4b59d78185ca6e9dc92d426 data/createindustry/recipes/mechanical_crafting/stator.json
bf8682fa294a02a842d1ce74b7754753a18a5b26 data/createindustry/recipes/mechanical_crafting/steel_distillation_controller.json
bc6f7b98d34b36a35e2d905e1207464932e4fa8a data/createindustry/recipes/mechanical_crafting/steel_distillation_output.json
ea4ef2ce08d85c2430846c95a2c867ea5e2ba2ec data/createindustry/recipes/mechanical_crafting/surface_scanner.json

View File

@@ -0,0 +1 @@
// 1.19.2 2024-07-22T12:33:14.6422344 TFMG's Standard Recipes

View File

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

View File

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

View File

@@ -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
}
}
}

View File

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

View File

@@ -0,0 +1,34 @@
{
"variants": {
"facing=east,running=false": {
"model": "createindustry:block/blast_stove/block",
"y": 90
},
"facing=east,running=true": {
"model": "createindustry:block/blast_stove/block_running",
"y": 90
},
"facing=north,running=false": {
"model": "createindustry:block/blast_stove/block"
},
"facing=north,running=true": {
"model": "createindustry:block/blast_stove/block_running"
},
"facing=south,running=false": {
"model": "createindustry:block/blast_stove/block",
"y": 180
},
"facing=south,running=true": {
"model": "createindustry:block/blast_stove/block_running",
"y": 180
},
"facing=west,running=false": {
"model": "createindustry:block/blast_stove/block",
"y": 270
},
"facing=west,running=true": {
"model": "createindustry:block/blast_stove/block_running",
"y": 270
}
}
}

View File

@@ -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
}
}
}

View File

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

View File

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

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

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

View File

@@ -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"
}
}
]
}

View File

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

View File

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

View File

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

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -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
}
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -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"
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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"
}
}
]
}

View File

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

View File

@@ -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"
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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"
}
}
]
}

View File

@@ -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
}
}
}

View File

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

View File

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

View File

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

View File

@@ -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
}
}
}

View File

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

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

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

View File

@@ -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"
}
]
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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"
}
}
}

View File

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

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

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

View File

@@ -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"
}
}
]
}

View File

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

View File

@@ -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
}
}
}

View File

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

View File

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

View File

@@ -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
}
}
}

View File

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

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

@@ -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
}
}
}

View File

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

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