This commit is contained in:
JozsefA 2021-06-16 11:19:33 -07:00
parent d612cfdd34
commit 7b427e3c92
6562 changed files with 288 additions and 327815 deletions

View file

@ -1,26 +0,0 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
push:
branches: [ mc1.15/dev ]
pull_request:
branches: [ mc1.15/dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build

21
LICENSE
View file

@ -1,21 +0,0 @@
MIT License
Copyright (c) 2019 simibubi
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View file

@ -1,24 +0,0 @@
<p align="center"><img src="https://i.imgur.com/35JmqWB.gif" alt="Logo" width="100"></p>
<h1 align="center">Create<br>
<a href="https://www.patreon.com/simibubi"><img src="https://img.shields.io/badge/Supporters-60-ff5733" alt="Patreon"></a>
<a href="https://www.curseforge.com/minecraft/mc-mods/create/files"><img src="https://img.shields.io/badge/Available%20for-MC%201.14,%201.15,%201.16-c70039" alt="Supported Versions"></a>
<a href="https://github.com/Creators-of-Create/Create/blob/master/LICENSE"><img src="https://img.shields.io/github/license/Creators-of-Create/Create?style=flat&color=900c3f" alt="License"></a>
<a href="https://discord.gg/hmaD7Se"><img src="https://img.shields.io/discord/620934202875183104?color=844685&label=Feedback%20%26%20Help&style=flat" alt="Discord"></a>
<a href="https://www.curseforge.com/minecraft/mc-mods/create"><img src="http://cf.way2muchnoise.eu/short_create.svg" alt="Curseforge Downloads"></a><br><br>
</h1>
Welcome to Create, a mod offering a variety of tools and blocks for Building, Decoration and Aesthetic Automation.
The added elements of tech are designed to leave as many design choices to the player as possible, where item processing doesn't happen inside a single block with funny textures, it requires a set of actors working together in many possible arrangements.
Check out the wiki and in-game Tool-tips for further info on how to use these features, and stay tuned for an ever-growing selection of possibilities for Creative and Survival Minecraft.
[<img src="https://i.imgur.com/0lLX9Oy.jpg" width="210">](https://github.com/simibubi/Create/issues "Report Issues")
[<img src="https://i.imgur.com/bjEZraY.jpg" width="210">](https://www.youtube.com/playlist?list=PLyADkcfPLU8ywCXZPaDbQ_JZJL0CGDN5Z "Watch Videos")
[<img src="https://i.imgur.com/aWrjfKJ.jpg" width="210">](https://discord.gg/hmaD7Se "Feedback & Help")
[<img src="https://i.imgur.com/xj8o2xC.jpg" width="210">](https://www.patreon.com/simibubi "Support Us")
- Support for Minecraft 1.12: Not planned
- Support for Fabric: Not planned
<hr>
<h4 align="center">Find out more about Create on our <a href="https://www.curseforge.com/minecraft/mc-mods/create">Project Page</a></h4>

View file

@ -14,46 +14,59 @@ plugins {
id 'com.github.johnrengelman.shadow' version '5.2.0' id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'com.matthewprenger.cursegradle' version '1.4.0' id 'com.matthewprenger.cursegradle' version '1.4.0'
} }
apply plugin: 'net.minecraftforge.gradle' apply plugin: 'net.minecraftforge.gradle'
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup. apply plugin: 'org.spongepowered.mixin'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'
boolean dev = System.getenv('RELEASE') == null || System.getenv('RELEASE').equals('false'); group = 'jozufozu'
version = '0.1'
ext.buildnumber = 0 archivesBaseName = 'flywheel'
project.buildnumber = System.getenv('BUILD_NUMBER') != null ? System.getenv('BUILD_NUMBER') : "custom"
version = "mc${minecraft_version}_v${mod_version}" + (dev ? "+${buildnumber}" : '')
group = 'com.simibubi.create'
archivesBaseName = 'create'
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
minecraft { minecraft {
mappings channel: 'snapshot', version: '20200920-mixed-1.16.3' mappings channel: 'snapshot', version: "${mcp_mappings}"
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
// Default run configurations.
// These can be tweaked, removed, or duplicated as needed.
runs { runs {
client { client {
workingDirectory project.file('run') workingDirectory project.file('run')
arg '-mixin.config=create.mixins.json'
//jvmArgs '-XX:+UnlockCommercialFeatures' // uncomment for profiling property 'forge.logging.markers', ''
property 'forge.logging.console.level', 'info' property 'forge.logging.console.level', 'debug'
property 'fml.earlyprogresswindow', 'false'
arg "-mixin.config=flywheel.mixins.json"
mods { mods {
create { flywheel {
source sourceSets.main source sourceSets.main
} }
} }
} }
server { server {
workingDirectory project.file('run/server') workingDirectory project.file('run')
arg '-mixin.config=create.mixins.json'
property 'forge.logging.console.level', 'info' // Recommended logging data for a userdev environment
// The markers can be changed as needed.
// "SCAN": For mods scan.
// "REGISTRIES": For firing of registry events.
// "REGISTRYDUMP": For getting the contents of all registries.
property 'forge.logging.markers', 'REGISTRIES'
// Recommended logging level for the console
// You can set various levels here.
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
property 'forge.logging.console.level', 'debug'
arg "-mixin.config=flywheel.mixins.json"
mods { mods {
create { flywheel {
source sourceSets.main source sourceSets.main
} }
} }
@ -61,12 +74,24 @@ minecraft {
data { data {
workingDirectory project.file('run') workingDirectory project.file('run')
property 'forge.logging.markers', 'REGISTRIES,REGISTRYDUMP'
// Recommended logging data for a userdev environment
// The markers can be changed as needed.
// "SCAN": For mods scan.
// "REGISTRIES": For firing of registry events.
// "REGISTRYDUMP": For getting the contents of all registries.
property 'forge.logging.markers', 'REGISTRIES'
// Recommended logging level for the console
// You can set various levels here.
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
property 'forge.logging.console.level', 'debug' property 'forge.logging.console.level', 'debug'
property 'fml.earlyprogresswindow', 'false'
args '--mod', 'create', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources') // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
args '--mod', 'flywheel', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/')
mods { mods {
create { flywheel {
source sourceSets.main source sourceSets.main
} }
} }
@ -74,151 +99,62 @@ minecraft {
} }
} }
compileJava { mixin {
options.compilerArgs = ["-Xdiags:verbose"] add sourceSets.main, "flywheel.refmap.json"
} }
sourceSets.main.resources { // Include resources generated by data generators.
srcDir 'src/generated/resources' sourceSets.main.resources { srcDir 'src/generated/resources' }
}
repositories { repositories {
maven {
// location of the maven that hosts JEI files (And TiC)
name "Progwml6 maven"
url "https://dvs1.progwml6.com/files/maven/"
}
/*
maven {
// location of a maven mirror for JEI files, as a fallback
name "ModMaven"
url "https://modmaven.k-4u.nl"
}*/
maven {
//location of the maven for vazkii's mods
name "blamejared"
url "http://maven.blamejared.com/"
}
maven { maven {
//location of the maven for mixed mappings and registrate //location of the maven for mixed mappings and registrate
name = "tterrag maven" name = "tterrag maven"
url = "https://maven.tterrag.com/" url = "https://maven.tterrag.com/"
} }
maven {
url = "https://www.cursemaven.com"
}
}
configurations {
shade
} }
dependencies { dependencies {
// Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed
// that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"
def registrate = "com.tterrag.registrate:Registrate:MC1.16.5-${registrate_version}" // You may put jars on which you depend on in ./libs or you may define them like so..
implementation fg.deobf(registrate) // compile "some.group:artifact:version:classifier"
shade registrate // compile "some.group:artifact:version"
// compile against the JEI API but do not include it at runtime // Real examples
compileOnly fg.deobf("mezz.jei:jei-1.16.4:${jei_version}:api") // compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
// at runtime, use the full JEI jar // compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
runtimeOnly fg.deobf("mezz.jei:jei-1.16.4:${jei_version}")
// implementation fg.deobf("curse.maven:druidcraft-340991:3101903") // The 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime.
// provided 'com.mod-buildcraft:buildcraft:6.0.8:dev'
// i'll leave this here commented for easier testing // These dependencies get remapped to your current MCP mappings
//runtimeOnly fg.deobf("vazkii.arl:AutoRegLib:1.4-35.69") // deobf 'com.mod-buildcraft:buildcraft:6.0.8:dev'
//runtimeOnly fg.deobf("vazkii.quark:Quark:r2.0-212.984")
//runtimeOnly fg.deobf("slimeknights.mantle:Mantle:1.16.5-1.6.103") // For more info...
//runtimeOnly fg.deobf("slimeknights.tconstruct:TConstruct:1.16.5-3.0.3.168") // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html
annotationProcessor 'org.spongepowered:mixin:0.8:processor' annotationProcessor 'org.spongepowered:mixin:0.8:processor'
} }
// Example for how to get properties into the manifest for reading by the runtime..
jar { jar {
classifier = 'slim'
manifest { manifest {
attributes([ attributes([
"Specification-Title": "create", "Specification-Title" : "flywheel",
"Specification-Vendor": "simibubi", //"Specification-Vendor": "flywheel authors",
"Specification-Version": "1", "Specification-Version" : "1", // We are version 1 of ourselves
"Implementation-Title" : project.name, "Implementation-Title" : project.name,
"Implementation-Version": "${version}", "Implementation-Version" : project.version,
"Implementation-Vendor" :"simibubi", //"Implementation-Vendor": "flywheel authors",
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), "MixinConfigs" : "flywheel.mixins.json",
"MixinConfigs": "create.mixins.json" "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
]) ])
} }
} }
shadowJar { jar.finalizedBy('reobfJar')
classifier = ''
configurations = [project.configurations.shade]
relocate 'com.tterrag.registrate', 'com.simibubi.create.repack.registrate'
}
reobf {
shadowJar {}
}
String getChangelogText() {
def changelogFile = file('changelog.txt')
String str = ''
int lineCount = 0
boolean done = false
changelogFile.eachLine {
if (done || it == null) {
return
}
if (it.size() > 1) {
def temp = it
if (lineCount == 0) {
temp = "Create ${version}"
temp = "<span style=\"font-size: 18px; color: #333399;\">Create v${mod_version}</span>&nbsp;&nbsp;<em>for Minecraft ${minecraft_version}</em><br/>"
} else if (it.startsWith('-')) {
temp = "&nbsp;&nbsp;&nbsp;$temp<br/>"
temp = temp.replaceAll("(\\S+\\/\\S+)#([0-9]+)\\b", "<a href=\"https://github.com/\$1/issues/\$2\">\$0</a>");
temp = temp.replaceAll("#([0-9]+)\\b(?!<\\/a>)", "<a href=\"https://github.com/$github_project/issues/\$1\">\$0</a>");
} else {
temp = "<h4>$temp</h4>"
}
str += temp
lineCount++
} else {
str += "<p>Please submit any Issues you come across on the&nbsp;<a href=\"https://github.com/${github_project}/issues\" rel=\"nofollow\">Issue Tracker</a>.</p>"
done = true
}
}
return str
}
//changelog debugging
//new File("changelog.html").write getChangelogText()
tasks.curseforge.enabled = !dev && project.hasProperty('simi_curseforge_key')
curseforge {
if (project.hasProperty('simi_curseforge_key')) {
apiKey = project.simi_curseforge_key
}
project {
id = project.projectId
changelog = System.getenv('CHANGELOG') == null || System.getenv('CHANGELOG').equals('none') ? getChangelogText() : System.getenv('CHANGELOG')
changelogType = 'html'
releaseType = project.curse_type
mainArtifact(shadowJar) {
displayName = "Create - ${version}"
}
relations {
optionalDependency 'jei'
}
}
}
apply plugin: 'org.spongepowered.mixin'
mixin {
add sourceSets.main, "create.refmap.json"
}

View file

@ -1,64 +0,0 @@
0.2.4d:
More tiny bugfixes; we appreciate the reports!
Changes
- Cart assemblers now have several behaviours depending on the rail type they were placed on
Fixes
- Fixed dedicated server crash when using the Schematicannon
- Fixed blockzappers placing waterlogged blocks
- Updated chinese localization
- Added missing recipe for Dark Scoria
0.2.4c:
A hotfix for our dear users over in Multiplayer.
Fixes
- (0.2.4b) Fixed server crash when Cart Assembler accelerates held Minecarts
- Fixed build errors of previous version
0.2.4a:
Just a few Bug-Fixes since the recent 1.15 release. Enjoy!
Fixes
- Fixed pistons moving at inconsistent speeds, overshooting their bounds
- Fixed belts not moving entities
- Fixed diagonal belts teleporting entities miles away
- Fixed tree fertilizer not working
- Patched some localization gaps
- Fixed pulley placing down ropes when destroyed while moving
- Fixed inconsistencies with glue removal and placement
- Fixed crash when placing a crafter between two colliding rotation sources
- Fixed cases of self-powering loops caused by blocks rotated using the wrench
- Fixed Extendo Grip animation for left-handed players
- Fixed encoding of degree symbols in tooltips
0.2.4:
Welcome to the future! Glad you are still here.
Warning
- Do NOT transfer world or schematic data from 1.14. This version is incompatible with any of the prior versions!
New
- Ported Create to Minecraft 1.15.2
- Added Nixie Tubes
- Added the Extendo Grip
- Added support for TerraForged worldgen
Changes
- Removed Windowlogging, might come back as a stand-alone
- Removed Blazing, Shadow Steel and Gilded Quartz Toolsets
- Massively reworked Create palettes, offering a whole bunch of new patterns!
- The Creative Motor can now face in any direction
- The Creative Motor, Encased Fan and other directional blocks will now reverse their effective rotation when oriented backwards
- Redstone link receivers now emit their signal with the level of the strongest transmitter of the same frequency
- Changed the way cart assemblers react to redstone input
- Blocks that couldn't be placed when a contraption disassembles, now drop as items
- Some fixes regarding inconsistencies with Super Glue placement
- Deployers no longer consume food
- Deployers can now feed players
- Ploughs no longer break blocks if farmland is below them
- Super glue can no longer be removed while inbetween two blocks
Fixes
- Fixed Bells duplicating themselves when moved by a contraption
- Fixed moved Deployers in breaking mode getting stuck on fluids or bedrock
- Schematicannons can no longer place water in the nether
- Fixed bug with extractors not always being able to pull from moved contraptions
- Fixed deployers not able to place certain foods on campfires
- Fixed fire-immune creatures taking damage from heated air currents
- Endermen now take damage from washing fans
- Fixed crash when assembled minecarts pick up the block below their assembler
- Schematicannons can no longer place lit furnaces

View file

@ -1,20 +1,19 @@
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false org.gradle.daemon=false
# mod version info # mod version info
mod_version=0.3.1c mod_version=0.0.1
minecraft_version=1.16.5 minecraft_version=1.16.5
forge_version=36.0.42 forge_version=36.0.42
mcp_mappings=20200920-mixed-1.16.3
# dependency versions # dependency versions
registrate_version=1.0.4 registrate_version=1.0.4
jei_version=7.6.1.71 jei_version=7.6.1.71
# curseforge information # curseforge information
projectId=328085 # projectId=486392
curse_type=beta # curse_type=beta
# github information # github information
github_project=Creators-of-Create/Create github_project=Jozufozu/Flywheel

File diff suppressed because it is too large Load diff

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/acacia_window"
}
}
}

View file

@ -1,77 +0,0 @@
{
"multipart": [
{
"apply": {
"model": "create:block/acacia_window_pane_post"
}
},
{
"when": {
"north": "true"
},
"apply": {
"model": "create:block/acacia_window_pane_side"
}
},
{
"when": {
"north": "false"
},
"apply": {
"model": "create:block/acacia_window_pane_noside"
}
},
{
"when": {
"south": "true"
},
"apply": {
"model": "create:block/acacia_window_pane_side_alt"
}
},
{
"when": {
"south": "false"
},
"apply": {
"model": "create:block/acacia_window_pane_noside_alt",
"y": 90
}
},
{
"when": {
"west": "true"
},
"apply": {
"model": "create:block/acacia_window_pane_side_alt",
"y": 90
}
},
{
"when": {
"west": "false"
},
"apply": {
"model": "create:block/acacia_window_pane_noside",
"y": 270
}
},
{
"when": {
"east": "true"
},
"apply": {
"model": "create:block/acacia_window_pane_side",
"y": 90
}
},
{
"when": {
"east": "false"
},
"apply": {
"model": "create:block/acacia_window_pane_noside_alt"
}
}
]
}

View file

@ -1,190 +0,0 @@
{
"variants": {
"axis=x,axis_along_first=false,part=start,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal",
"x": 180
},
"axis=y,axis_along_first=false,part=start,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_vertical"
},
"axis=z,axis_along_first=false,part=start,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal",
"x": 270,
"y": 90
},
"axis=x,axis_along_first=true,part=start,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal",
"x": 270
},
"axis=y,axis_along_first=true,part=start,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_vertical",
"y": 270
},
"axis=z,axis_along_first=true,part=start,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal",
"y": 90
},
"axis=x,axis_along_first=false,part=middle,powered=false": {
"model": "create:block/adjustable_chain_gearshift_middle_horizontal"
},
"axis=y,axis_along_first=false,part=middle,powered=false": {
"model": "create:block/adjustable_chain_gearshift_middle_vertical"
},
"axis=z,axis_along_first=false,part=middle,powered=false": {
"model": "create:block/adjustable_chain_gearshift_middle_horizontal",
"x": 90,
"y": 90
},
"axis=x,axis_along_first=true,part=middle,powered=false": {
"model": "create:block/adjustable_chain_gearshift_middle_horizontal",
"x": 90
},
"axis=y,axis_along_first=true,part=middle,powered=false": {
"model": "create:block/adjustable_chain_gearshift_middle_vertical",
"y": 90
},
"axis=z,axis_along_first=true,part=middle,powered=false": {
"model": "create:block/adjustable_chain_gearshift_middle_horizontal",
"y": 90
},
"axis=x,axis_along_first=false,part=end,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal"
},
"axis=y,axis_along_first=false,part=end,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_vertical",
"y": 180
},
"axis=z,axis_along_first=false,part=end,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal",
"x": 90,
"y": 90
},
"axis=x,axis_along_first=true,part=end,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal",
"x": 90
},
"axis=y,axis_along_first=true,part=end,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_vertical",
"y": 90
},
"axis=z,axis_along_first=true,part=end,powered=false": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal",
"y": 270
},
"axis=x,axis_along_first=false,part=none,powered=false": {
"model": "create:block/adjustable_chain_gearshift_single",
"y": 90
},
"axis=y,axis_along_first=false,part=none,powered=false": {
"model": "create:block/adjustable_chain_gearshift_single",
"x": 90
},
"axis=z,axis_along_first=false,part=none,powered=false": {
"model": "create:block/adjustable_chain_gearshift_single"
},
"axis=x,axis_along_first=true,part=none,powered=false": {
"model": "create:block/adjustable_chain_gearshift_single",
"y": 90
},
"axis=y,axis_along_first=true,part=none,powered=false": {
"model": "create:block/adjustable_chain_gearshift_single",
"x": 90
},
"axis=z,axis_along_first=true,part=none,powered=false": {
"model": "create:block/adjustable_chain_gearshift_single"
},
"axis=x,axis_along_first=false,part=start,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal_powered",
"x": 180
},
"axis=y,axis_along_first=false,part=start,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_vertical_powered"
},
"axis=z,axis_along_first=false,part=start,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal_powered",
"x": 270,
"y": 90
},
"axis=x,axis_along_first=true,part=start,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal_powered",
"x": 270
},
"axis=y,axis_along_first=true,part=start,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_vertical_powered",
"y": 270
},
"axis=z,axis_along_first=true,part=start,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal_powered",
"y": 90
},
"axis=x,axis_along_first=false,part=middle,powered=true": {
"model": "create:block/adjustable_chain_gearshift_middle_horizontal_powered"
},
"axis=y,axis_along_first=false,part=middle,powered=true": {
"model": "create:block/adjustable_chain_gearshift_middle_vertical_powered"
},
"axis=z,axis_along_first=false,part=middle,powered=true": {
"model": "create:block/adjustable_chain_gearshift_middle_horizontal_powered",
"x": 90,
"y": 90
},
"axis=x,axis_along_first=true,part=middle,powered=true": {
"model": "create:block/adjustable_chain_gearshift_middle_horizontal_powered",
"x": 90
},
"axis=y,axis_along_first=true,part=middle,powered=true": {
"model": "create:block/adjustable_chain_gearshift_middle_vertical_powered",
"y": 90
},
"axis=z,axis_along_first=true,part=middle,powered=true": {
"model": "create:block/adjustable_chain_gearshift_middle_horizontal_powered",
"y": 90
},
"axis=x,axis_along_first=false,part=end,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal_powered"
},
"axis=y,axis_along_first=false,part=end,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_vertical_powered",
"y": 180
},
"axis=z,axis_along_first=false,part=end,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal_powered",
"x": 90,
"y": 90
},
"axis=x,axis_along_first=true,part=end,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal_powered",
"x": 90
},
"axis=y,axis_along_first=true,part=end,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_vertical_powered",
"y": 90
},
"axis=z,axis_along_first=true,part=end,powered=true": {
"model": "create:block/adjustable_chain_gearshift_end_horizontal_powered",
"y": 270
},
"axis=x,axis_along_first=false,part=none,powered=true": {
"model": "create:block/adjustable_chain_gearshift_single_powered",
"y": 90
},
"axis=y,axis_along_first=false,part=none,powered=true": {
"model": "create:block/adjustable_chain_gearshift_single_powered",
"x": 90
},
"axis=z,axis_along_first=false,part=none,powered=true": {
"model": "create:block/adjustable_chain_gearshift_single_powered"
},
"axis=x,axis_along_first=true,part=none,powered=true": {
"model": "create:block/adjustable_chain_gearshift_single_powered",
"y": 90
},
"axis=y,axis_along_first=true,part=none,powered=true": {
"model": "create:block/adjustable_chain_gearshift_single_powered",
"x": 90
},
"axis=z,axis_along_first=true,part=none,powered=true": {
"model": "create:block/adjustable_chain_gearshift_single_powered"
}
}
}

View file

@ -1,42 +0,0 @@
{
"variants": {
"double=false,facing=down": {
"model": "create:block/crate/brass/single"
},
"double=true,facing=down": {
"model": "create:block/crate/brass/top"
},
"double=false,facing=up": {
"model": "create:block/crate/brass/single"
},
"double=true,facing=up": {
"model": "create:block/crate/brass/bottom"
},
"double=false,facing=north": {
"model": "create:block/crate/brass/single"
},
"double=true,facing=north": {
"model": "create:block/crate/brass/right"
},
"double=false,facing=south": {
"model": "create:block/crate/brass/single"
},
"double=true,facing=south": {
"model": "create:block/crate/brass/left"
},
"double=false,facing=west": {
"model": "create:block/crate/brass/single"
},
"double=true,facing=west": {
"model": "create:block/crate/brass/left",
"y": 90
},
"double=false,facing=east": {
"model": "create:block/crate/brass/single"
},
"double=true,facing=east": {
"model": "create:block/crate/brass/right",
"y": 90
}
}
}

View file

@ -1,64 +0,0 @@
{
"variants": {
"facing=north,powered=false,powering=false": {
"model": "create:block/diodes/adjustable_pulse_repeater",
"y": 180
},
"facing=south,powered=false,powering=false": {
"model": "create:block/diodes/adjustable_pulse_repeater"
},
"facing=west,powered=false,powering=false": {
"model": "create:block/diodes/adjustable_pulse_repeater",
"y": 90
},
"facing=east,powered=false,powering=false": {
"model": "create:block/diodes/adjustable_pulse_repeater",
"y": 270
},
"facing=north,powered=true,powering=false": {
"model": "create:block/adjustable_pulse_repeater_powered",
"y": 180
},
"facing=south,powered=true,powering=false": {
"model": "create:block/adjustable_pulse_repeater_powered"
},
"facing=west,powered=true,powering=false": {
"model": "create:block/adjustable_pulse_repeater_powered",
"y": 90
},
"facing=east,powered=true,powering=false": {
"model": "create:block/adjustable_pulse_repeater_powered",
"y": 270
},
"facing=north,powered=false,powering=true": {
"model": "create:block/adjustable_pulse_repeater_powering",
"y": 180
},
"facing=south,powered=false,powering=true": {
"model": "create:block/adjustable_pulse_repeater_powering"
},
"facing=west,powered=false,powering=true": {
"model": "create:block/adjustable_pulse_repeater_powering",
"y": 90
},
"facing=east,powered=false,powering=true": {
"model": "create:block/adjustable_pulse_repeater_powering",
"y": 270
},
"facing=north,powered=true,powering=true": {
"model": "create:block/adjustable_pulse_repeater_powered_powering",
"y": 180
},
"facing=south,powered=true,powering=true": {
"model": "create:block/adjustable_pulse_repeater_powered_powering"
},
"facing=west,powered=true,powering=true": {
"model": "create:block/adjustable_pulse_repeater_powered_powering",
"y": 90
},
"facing=east,powered=true,powering=true": {
"model": "create:block/adjustable_pulse_repeater_powered_powering",
"y": 270
}
}
}

View file

@ -1,64 +0,0 @@
{
"variants": {
"facing=north,powered=false,powering=false": {
"model": "create:block/diodes/adjustable_repeater",
"y": 180
},
"facing=south,powered=false,powering=false": {
"model": "create:block/diodes/adjustable_repeater"
},
"facing=west,powered=false,powering=false": {
"model": "create:block/diodes/adjustable_repeater",
"y": 90
},
"facing=east,powered=false,powering=false": {
"model": "create:block/diodes/adjustable_repeater",
"y": 270
},
"facing=north,powered=true,powering=false": {
"model": "create:block/adjustable_repeater_powered",
"y": 180
},
"facing=south,powered=true,powering=false": {
"model": "create:block/adjustable_repeater_powered"
},
"facing=west,powered=true,powering=false": {
"model": "create:block/adjustable_repeater_powered",
"y": 90
},
"facing=east,powered=true,powering=false": {
"model": "create:block/adjustable_repeater_powered",
"y": 270
},
"facing=north,powered=false,powering=true": {
"model": "create:block/adjustable_repeater_powering",
"y": 180
},
"facing=south,powered=false,powering=true": {
"model": "create:block/adjustable_repeater_powering"
},
"facing=west,powered=false,powering=true": {
"model": "create:block/adjustable_repeater_powering",
"y": 90
},
"facing=east,powered=false,powering=true": {
"model": "create:block/adjustable_repeater_powering",
"y": 270
},
"facing=north,powered=true,powering=true": {
"model": "create:block/adjustable_repeater_powered_powering",
"y": 180
},
"facing=south,powered=true,powering=true": {
"model": "create:block/adjustable_repeater_powered_powering"
},
"facing=west,powered=true,powering=true": {
"model": "create:block/adjustable_repeater_powered_powering",
"y": 90
},
"facing=east,powered=true,powering=true": {
"model": "create:block/adjustable_repeater_powered_powering",
"y": 270
}
}
}

View file

@ -1,57 +0,0 @@
{
"variants": {
"face=floor,facing=north": {
"model": "create:block/analog_lever/block"
},
"face=wall,facing=north": {
"model": "create:block/analog_lever/block",
"x": 90
},
"face=ceiling,facing=north": {
"model": "create:block/analog_lever/block",
"x": 180,
"y": 180
},
"face=floor,facing=south": {
"model": "create:block/analog_lever/block",
"y": 180
},
"face=wall,facing=south": {
"model": "create:block/analog_lever/block",
"x": 90,
"y": 180
},
"face=ceiling,facing=south": {
"model": "create:block/analog_lever/block",
"x": 180
},
"face=floor,facing=west": {
"model": "create:block/analog_lever/block",
"y": 270
},
"face=wall,facing=west": {
"model": "create:block/analog_lever/block",
"x": 90,
"y": 270
},
"face=ceiling,facing=west": {
"model": "create:block/analog_lever/block",
"x": 180,
"y": 90
},
"face=floor,facing=east": {
"model": "create:block/analog_lever/block",
"y": 90
},
"face=wall,facing=east": {
"model": "create:block/analog_lever/block",
"x": 90,
"y": 90
},
"face=ceiling,facing=east": {
"model": "create:block/analog_lever/block",
"x": 180,
"y": 270
}
}
}

View file

@ -1,124 +0,0 @@
{
"variants": {
"facing=north,powered=false,shape=retracted": {
"model": "create:block/andesite_belt_funnel__retracted"
},
"facing=south,powered=false,shape=retracted": {
"model": "create:block/andesite_belt_funnel__retracted",
"y": 180
},
"facing=west,powered=false,shape=retracted": {
"model": "create:block/andesite_belt_funnel__retracted",
"y": 270
},
"facing=east,powered=false,shape=retracted": {
"model": "create:block/andesite_belt_funnel__retracted",
"y": 90
},
"facing=north,powered=true,shape=retracted": {
"model": "create:block/andesite_belt_funnel__powered_retracted"
},
"facing=south,powered=true,shape=retracted": {
"model": "create:block/andesite_belt_funnel__powered_retracted",
"y": 180
},
"facing=west,powered=true,shape=retracted": {
"model": "create:block/andesite_belt_funnel__powered_retracted",
"y": 270
},
"facing=east,powered=true,shape=retracted": {
"model": "create:block/andesite_belt_funnel__powered_retracted",
"y": 90
},
"facing=north,powered=false,shape=extended": {
"model": "create:block/andesite_belt_funnel__extended"
},
"facing=south,powered=false,shape=extended": {
"model": "create:block/andesite_belt_funnel__extended",
"y": 180
},
"facing=west,powered=false,shape=extended": {
"model": "create:block/andesite_belt_funnel__extended",
"y": 270
},
"facing=east,powered=false,shape=extended": {
"model": "create:block/andesite_belt_funnel__extended",
"y": 90
},
"facing=north,powered=true,shape=extended": {
"model": "create:block/andesite_belt_funnel__powered_extended"
},
"facing=south,powered=true,shape=extended": {
"model": "create:block/andesite_belt_funnel__powered_extended",
"y": 180
},
"facing=west,powered=true,shape=extended": {
"model": "create:block/andesite_belt_funnel__powered_extended",
"y": 270
},
"facing=east,powered=true,shape=extended": {
"model": "create:block/andesite_belt_funnel__powered_extended",
"y": 90
},
"facing=north,powered=false,shape=pushing": {
"model": "create:block/andesite_belt_funnel__pushing"
},
"facing=south,powered=false,shape=pushing": {
"model": "create:block/andesite_belt_funnel__pushing",
"y": 180
},
"facing=west,powered=false,shape=pushing": {
"model": "create:block/andesite_belt_funnel__pushing",
"y": 270
},
"facing=east,powered=false,shape=pushing": {
"model": "create:block/andesite_belt_funnel__pushing",
"y": 90
},
"facing=north,powered=true,shape=pushing": {
"model": "create:block/andesite_belt_funnel__powered_pushing"
},
"facing=south,powered=true,shape=pushing": {
"model": "create:block/andesite_belt_funnel__powered_pushing",
"y": 180
},
"facing=west,powered=true,shape=pushing": {
"model": "create:block/andesite_belt_funnel__powered_pushing",
"y": 270
},
"facing=east,powered=true,shape=pushing": {
"model": "create:block/andesite_belt_funnel__powered_pushing",
"y": 90
},
"facing=north,powered=false,shape=pulling": {
"model": "create:block/andesite_belt_funnel__pulling"
},
"facing=south,powered=false,shape=pulling": {
"model": "create:block/andesite_belt_funnel__pulling",
"y": 180
},
"facing=west,powered=false,shape=pulling": {
"model": "create:block/andesite_belt_funnel__pulling",
"y": 270
},
"facing=east,powered=false,shape=pulling": {
"model": "create:block/andesite_belt_funnel__pulling",
"y": 90
},
"facing=north,powered=true,shape=pulling": {
"model": "create:block/andesite_belt_funnel__powered_pulling"
},
"facing=south,powered=true,shape=pulling": {
"model": "create:block/andesite_belt_funnel__powered_pulling",
"y": 180
},
"facing=west,powered=true,shape=pulling": {
"model": "create:block/andesite_belt_funnel__powered_pulling",
"y": 270
},
"facing=east,powered=true,shape=pulling": {
"model": "create:block/andesite_belt_funnel__powered_pulling",
"y": 90
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/andesite_bricks"
}
}
}

View file

@ -1,13 +0,0 @@
{
"variants": {
"type=top": {
"model": "create:block/andesite_bricks_slab_top"
},
"type=bottom": {
"model": "create:block/andesite_bricks_slab"
},
"type=double": {
"model": "create:block/andesite_bricks"
}
}
}

View file

@ -1,209 +0,0 @@
{
"variants": {
"facing=north,half=top,shape=straight": {
"model": "create:block/andesite_bricks_stairs",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=straight": {
"model": "create:block/andesite_bricks_stairs",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=straight": {
"model": "create:block/andesite_bricks_stairs",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=straight": {
"model": "create:block/andesite_bricks_stairs",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=straight": {
"model": "create:block/andesite_bricks_stairs",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=straight": {
"model": "create:block/andesite_bricks_stairs",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=straight": {
"model": "create:block/andesite_bricks_stairs",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=straight": {
"model": "create:block/andesite_bricks_stairs"
},
"facing=north,half=top,shape=inner_left": {
"model": "create:block/andesite_bricks_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=inner_left": {
"model": "create:block/andesite_bricks_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=inner_left": {
"model": "create:block/andesite_bricks_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=inner_left": {
"model": "create:block/andesite_bricks_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_left": {
"model": "create:block/andesite_bricks_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_left": {
"model": "create:block/andesite_bricks_stairs_inner"
},
"facing=west,half=bottom,shape=inner_left": {
"model": "create:block/andesite_bricks_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_left": {
"model": "create:block/andesite_bricks_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=inner_right": {
"model": "create:block/andesite_bricks_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=inner_right": {
"model": "create:block/andesite_bricks_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=inner_right": {
"model": "create:block/andesite_bricks_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=inner_right": {
"model": "create:block/andesite_bricks_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_right": {
"model": "create:block/andesite_bricks_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_right": {
"model": "create:block/andesite_bricks_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=inner_right": {
"model": "create:block/andesite_bricks_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_right": {
"model": "create:block/andesite_bricks_stairs_inner"
},
"facing=north,half=top,shape=outer_left": {
"model": "create:block/andesite_bricks_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=outer_left": {
"model": "create:block/andesite_bricks_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=outer_left": {
"model": "create:block/andesite_bricks_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=outer_left": {
"model": "create:block/andesite_bricks_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_left": {
"model": "create:block/andesite_bricks_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_left": {
"model": "create:block/andesite_bricks_stairs_outer"
},
"facing=west,half=bottom,shape=outer_left": {
"model": "create:block/andesite_bricks_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_left": {
"model": "create:block/andesite_bricks_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=outer_right": {
"model": "create:block/andesite_bricks_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=outer_right": {
"model": "create:block/andesite_bricks_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=outer_right": {
"model": "create:block/andesite_bricks_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=outer_right": {
"model": "create:block/andesite_bricks_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_right": {
"model": "create:block/andesite_bricks_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_right": {
"model": "create:block/andesite_bricks_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=outer_right": {
"model": "create:block/andesite_bricks_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_right": {
"model": "create:block/andesite_bricks_stairs_outer"
}
}
}

View file

@ -1,90 +0,0 @@
{
"multipart": [
{
"when": {
"up": "true"
},
"apply": {
"model": "create:block/andesite_bricks_wall_post"
}
},
{
"when": {
"east": "low"
},
"apply": {
"model": "create:block/andesite_bricks_wall_side",
"y": 90,
"uvlock": true
}
},
{
"when": {
"east": "tall"
},
"apply": {
"model": "create:block/andesite_bricks_wall_side_tall",
"y": 90,
"uvlock": true
}
},
{
"when": {
"north": "low"
},
"apply": {
"model": "create:block/andesite_bricks_wall_side",
"uvlock": true
}
},
{
"when": {
"north": "tall"
},
"apply": {
"model": "create:block/andesite_bricks_wall_side_tall",
"uvlock": true
}
},
{
"when": {
"south": "low"
},
"apply": {
"model": "create:block/andesite_bricks_wall_side",
"y": 180,
"uvlock": true
}
},
{
"when": {
"south": "tall"
},
"apply": {
"model": "create:block/andesite_bricks_wall_side_tall",
"y": 180,
"uvlock": true
}
},
{
"when": {
"west": "low"
},
"apply": {
"model": "create:block/andesite_bricks_wall_side",
"y": 270,
"uvlock": true
}
},
{
"when": {
"west": "tall"
},
"apply": {
"model": "create:block/andesite_bricks_wall_side_tall",
"y": 270,
"uvlock": true
}
}
]
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/andesite_casing"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/andesite_cobblestone"
}
}
}

View file

@ -1,13 +0,0 @@
{
"variants": {
"type=top": {
"model": "create:block/andesite_cobblestone_slab_top"
},
"type=bottom": {
"model": "create:block/andesite_cobblestone_slab"
},
"type=double": {
"model": "create:block/andesite_cobblestone"
}
}
}

View file

@ -1,209 +0,0 @@
{
"variants": {
"facing=north,half=top,shape=straight": {
"model": "create:block/andesite_cobblestone_stairs",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=straight": {
"model": "create:block/andesite_cobblestone_stairs",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=straight": {
"model": "create:block/andesite_cobblestone_stairs",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=straight": {
"model": "create:block/andesite_cobblestone_stairs",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=straight": {
"model": "create:block/andesite_cobblestone_stairs",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=straight": {
"model": "create:block/andesite_cobblestone_stairs",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=straight": {
"model": "create:block/andesite_cobblestone_stairs",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=straight": {
"model": "create:block/andesite_cobblestone_stairs"
},
"facing=north,half=top,shape=inner_left": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=inner_left": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=inner_left": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=inner_left": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_left": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_left": {
"model": "create:block/andesite_cobblestone_stairs_inner"
},
"facing=west,half=bottom,shape=inner_left": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_left": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=inner_right": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=inner_right": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=inner_right": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=inner_right": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_right": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_right": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=inner_right": {
"model": "create:block/andesite_cobblestone_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_right": {
"model": "create:block/andesite_cobblestone_stairs_inner"
},
"facing=north,half=top,shape=outer_left": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=outer_left": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=outer_left": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=outer_left": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_left": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_left": {
"model": "create:block/andesite_cobblestone_stairs_outer"
},
"facing=west,half=bottom,shape=outer_left": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_left": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=outer_right": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=outer_right": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=outer_right": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=outer_right": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_right": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_right": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=outer_right": {
"model": "create:block/andesite_cobblestone_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_right": {
"model": "create:block/andesite_cobblestone_stairs_outer"
}
}
}

View file

@ -1,90 +0,0 @@
{
"multipart": [
{
"when": {
"up": "true"
},
"apply": {
"model": "create:block/andesite_cobblestone_wall_post"
}
},
{
"when": {
"east": "low"
},
"apply": {
"model": "create:block/andesite_cobblestone_wall_side",
"y": 90,
"uvlock": true
}
},
{
"when": {
"east": "tall"
},
"apply": {
"model": "create:block/andesite_cobblestone_wall_side_tall",
"y": 90,
"uvlock": true
}
},
{
"when": {
"north": "low"
},
"apply": {
"model": "create:block/andesite_cobblestone_wall_side",
"uvlock": true
}
},
{
"when": {
"north": "tall"
},
"apply": {
"model": "create:block/andesite_cobblestone_wall_side_tall",
"uvlock": true
}
},
{
"when": {
"south": "low"
},
"apply": {
"model": "create:block/andesite_cobblestone_wall_side",
"y": 180,
"uvlock": true
}
},
{
"when": {
"south": "tall"
},
"apply": {
"model": "create:block/andesite_cobblestone_wall_side_tall",
"y": 180,
"uvlock": true
}
},
{
"when": {
"west": "low"
},
"apply": {
"model": "create:block/andesite_cobblestone_wall_side",
"y": 270,
"uvlock": true
}
},
{
"when": {
"west": "tall"
},
"apply": {
"model": "create:block/andesite_cobblestone_wall_side_tall",
"y": 270,
"uvlock": true
}
}
]
}

View file

@ -1,20 +0,0 @@
{
"variants": {
"axis=x": {
"model": "create:block/encased_shaft/block_andesite",
"x": 90,
"y": 90,
"uvlock": true
},
"axis=y": {
"model": "create:block/encased_shaft/block_andesite",
"uvlock": true
},
"axis=z": {
"model": "create:block/encased_shaft/block_andesite",
"x": 90,
"y": 180,
"uvlock": true
}
}
}

View file

@ -1,100 +0,0 @@
{
"variants": {
"extracting=false,facing=down,powered=false": {
"model": "create:block/andesite_funnel_vertical_filterless_pull",
"x": 180,
"y": 180
},
"extracting=true,facing=down,powered=false": {
"model": "create:block/andesite_funnel_vertical_filterless_push",
"x": 180,
"y": 180
},
"extracting=false,facing=up,powered=false": {
"model": "create:block/andesite_funnel_vertical_filterless_pull",
"y": 180
},
"extracting=true,facing=up,powered=false": {
"model": "create:block/andesite_funnel_vertical_filterless_push",
"y": 180
},
"extracting=false,facing=north,powered=false": {
"model": "create:block/andesite_funnel_horizontal_pull"
},
"extracting=true,facing=north,powered=false": {
"model": "create:block/andesite_funnel_horizontal_push"
},
"extracting=false,facing=south,powered=false": {
"model": "create:block/andesite_funnel_horizontal_pull",
"y": 180
},
"extracting=true,facing=south,powered=false": {
"model": "create:block/andesite_funnel_horizontal_push",
"y": 180
},
"extracting=false,facing=west,powered=false": {
"model": "create:block/andesite_funnel_horizontal_pull",
"y": 270
},
"extracting=true,facing=west,powered=false": {
"model": "create:block/andesite_funnel_horizontal_push",
"y": 270
},
"extracting=false,facing=east,powered=false": {
"model": "create:block/andesite_funnel_horizontal_pull",
"y": 90
},
"extracting=true,facing=east,powered=false": {
"model": "create:block/andesite_funnel_horizontal_push",
"y": 90
},
"extracting=false,facing=down,powered=true": {
"model": "create:block/andesite_funnel_vertical_filterless_pull_powered",
"x": 180,
"y": 180
},
"extracting=true,facing=down,powered=true": {
"model": "create:block/andesite_funnel_vertical_filterless_push_powered",
"x": 180,
"y": 180
},
"extracting=false,facing=up,powered=true": {
"model": "create:block/andesite_funnel_vertical_filterless_pull_powered",
"y": 180
},
"extracting=true,facing=up,powered=true": {
"model": "create:block/andesite_funnel_vertical_filterless_push_powered",
"y": 180
},
"extracting=false,facing=north,powered=true": {
"model": "create:block/andesite_funnel_horizontal_pull_powered"
},
"extracting=true,facing=north,powered=true": {
"model": "create:block/andesite_funnel_horizontal_push_powered"
},
"extracting=false,facing=south,powered=true": {
"model": "create:block/andesite_funnel_horizontal_pull_powered",
"y": 180
},
"extracting=true,facing=south,powered=true": {
"model": "create:block/andesite_funnel_horizontal_push_powered",
"y": 180
},
"extracting=false,facing=west,powered=true": {
"model": "create:block/andesite_funnel_horizontal_pull_powered",
"y": 270
},
"extracting=true,facing=west,powered=true": {
"model": "create:block/andesite_funnel_horizontal_push_powered",
"y": 270
},
"extracting=false,facing=east,powered=true": {
"model": "create:block/andesite_funnel_horizontal_pull_powered",
"y": 90
},
"extracting=true,facing=east,powered=true": {
"model": "create:block/andesite_funnel_horizontal_push_powered",
"y": 90
}
}
}

View file

@ -1,17 +0,0 @@
{
"variants": {
"axis=x": {
"model": "create:block/andesite_pillar",
"x": 90,
"y": 90
},
"axis=y": {
"model": "create:block/andesite_pillar"
},
"axis=z": {
"model": "create:block/andesite_pillar",
"x": 90,
"y": 180
}
}
}

View file

@ -1,46 +0,0 @@
{
"variants": {
"axis=x,shape=straight": {
"model": "create:block/andesite_tunnel/straight"
},
"axis=z,shape=straight": {
"model": "create:block/andesite_tunnel/straight",
"y": 90
},
"axis=x,shape=window": {
"model": "create:block/andesite_tunnel/window"
},
"axis=z,shape=window": {
"model": "create:block/andesite_tunnel/window",
"y": 90
},
"axis=x,shape=closed": {
"model": "create:block/andesite_tunnel/straight"
},
"axis=z,shape=closed": {
"model": "create:block/andesite_tunnel/straight",
"y": 90
},
"axis=x,shape=t_left": {
"model": "create:block/andesite_tunnel/t_left"
},
"axis=z,shape=t_left": {
"model": "create:block/andesite_tunnel/t_left",
"y": 90
},
"axis=x,shape=t_right": {
"model": "create:block/andesite_tunnel/t_right"
},
"axis=z,shape=t_right": {
"model": "create:block/andesite_tunnel/t_right",
"y": 90
},
"axis=x,shape=cross": {
"model": "create:block/andesite_tunnel/cross"
},
"axis=z,shape=cross": {
"model": "create:block/andesite_tunnel/cross",
"y": 90
}
}
}

View file

@ -1,22 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/basin/block"
},
"facing=north": {
"model": "create:block/basin/block_directional",
"y": 180
},
"facing=south": {
"model": "create:block/basin/block_directional"
},
"facing=west": {
"model": "create:block/basin/block_directional",
"y": 90
},
"facing=east": {
"model": "create:block/basin/block_directional",
"y": 270
}
}
}

View file

@ -1,652 +0,0 @@
{
"variants": {
"casing=false,facing=north,part=start,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=north,part=start,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_start",
"y": 180
},
"casing=false,facing=south,part=start,slope=horizontal": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=start,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_start"
},
"casing=false,facing=west,part=start,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=west,part=start,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_start",
"y": 90
},
"casing=false,facing=east,part=start,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=start,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_start",
"y": 270
},
"casing=false,facing=north,part=middle,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=north,part=middle,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_middle",
"y": 180
},
"casing=false,facing=south,part=middle,slope=horizontal": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=middle,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_middle"
},
"casing=false,facing=west,part=middle,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=west,part=middle,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_middle",
"y": 90
},
"casing=false,facing=east,part=middle,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=middle,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_middle",
"y": 270
},
"casing=false,facing=north,part=end,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=north,part=end,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_end",
"y": 180
},
"casing=false,facing=south,part=end,slope=horizontal": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=end,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_end"
},
"casing=false,facing=west,part=end,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=west,part=end,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_end",
"y": 90
},
"casing=false,facing=east,part=end,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=end,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_end",
"y": 270
},
"casing=false,facing=north,part=pulley,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=north,part=pulley,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_pulley",
"y": 180
},
"casing=false,facing=south,part=pulley,slope=horizontal": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=pulley,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_pulley"
},
"casing=false,facing=west,part=pulley,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=west,part=pulley,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_pulley",
"y": 90
},
"casing=false,facing=east,part=pulley,slope=horizontal": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=pulley,slope=horizontal": {
"model": "create:block/belt_casing/horizontal_pulley",
"y": 270
},
"casing=false,facing=north,part=start,slope=upward": {
"model": "create:block/belt/particle"
},
"casing=true,facing=north,part=start,slope=upward": {
"model": "create:block/belt_casing/diagonal_start"
},
"casing=false,facing=south,part=start,slope=upward": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=south,part=start,slope=upward": {
"model": "create:block/belt_casing/diagonal_start",
"y": 180
},
"casing=false,facing=west,part=start,slope=upward": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=west,part=start,slope=upward": {
"model": "create:block/belt_casing/diagonal_start",
"y": 270
},
"casing=false,facing=east,part=start,slope=upward": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=east,part=start,slope=upward": {
"model": "create:block/belt_casing/diagonal_start",
"y": 90
},
"casing=false,facing=north,part=middle,slope=upward": {
"model": "create:block/belt/particle"
},
"casing=true,facing=north,part=middle,slope=upward": {
"model": "create:block/belt_casing/diagonal_middle"
},
"casing=false,facing=south,part=middle,slope=upward": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=south,part=middle,slope=upward": {
"model": "create:block/belt_casing/diagonal_middle",
"y": 180
},
"casing=false,facing=west,part=middle,slope=upward": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=west,part=middle,slope=upward": {
"model": "create:block/belt_casing/diagonal_middle",
"y": 270
},
"casing=false,facing=east,part=middle,slope=upward": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=east,part=middle,slope=upward": {
"model": "create:block/belt_casing/diagonal_middle",
"y": 90
},
"casing=false,facing=north,part=end,slope=upward": {
"model": "create:block/belt/particle"
},
"casing=true,facing=north,part=end,slope=upward": {
"model": "create:block/belt_casing/diagonal_end"
},
"casing=false,facing=south,part=end,slope=upward": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=south,part=end,slope=upward": {
"model": "create:block/belt_casing/diagonal_end",
"y": 180
},
"casing=false,facing=west,part=end,slope=upward": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=west,part=end,slope=upward": {
"model": "create:block/belt_casing/diagonal_end",
"y": 270
},
"casing=false,facing=east,part=end,slope=upward": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=east,part=end,slope=upward": {
"model": "create:block/belt_casing/diagonal_end",
"y": 90
},
"casing=false,facing=north,part=pulley,slope=upward": {
"model": "create:block/belt/particle"
},
"casing=true,facing=north,part=pulley,slope=upward": {
"model": "create:block/belt_casing/diagonal_pulley"
},
"casing=false,facing=south,part=pulley,slope=upward": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=south,part=pulley,slope=upward": {
"model": "create:block/belt_casing/diagonal_pulley",
"y": 180
},
"casing=false,facing=west,part=pulley,slope=upward": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=west,part=pulley,slope=upward": {
"model": "create:block/belt_casing/diagonal_pulley",
"y": 270
},
"casing=false,facing=east,part=pulley,slope=upward": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=east,part=pulley,slope=upward": {
"model": "create:block/belt_casing/diagonal_pulley",
"y": 90
},
"casing=false,facing=north,part=start,slope=downward": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=north,part=start,slope=downward": {
"model": "create:block/belt_casing/diagonal_end",
"y": 180
},
"casing=false,facing=south,part=start,slope=downward": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=start,slope=downward": {
"model": "create:block/belt_casing/diagonal_end"
},
"casing=false,facing=west,part=start,slope=downward": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=west,part=start,slope=downward": {
"model": "create:block/belt_casing/diagonal_end",
"y": 90
},
"casing=false,facing=east,part=start,slope=downward": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=start,slope=downward": {
"model": "create:block/belt_casing/diagonal_end",
"y": 270
},
"casing=false,facing=north,part=middle,slope=downward": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=north,part=middle,slope=downward": {
"model": "create:block/belt_casing/diagonal_middle",
"y": 180
},
"casing=false,facing=south,part=middle,slope=downward": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=middle,slope=downward": {
"model": "create:block/belt_casing/diagonal_middle"
},
"casing=false,facing=west,part=middle,slope=downward": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=west,part=middle,slope=downward": {
"model": "create:block/belt_casing/diagonal_middle",
"y": 90
},
"casing=false,facing=east,part=middle,slope=downward": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=middle,slope=downward": {
"model": "create:block/belt_casing/diagonal_middle",
"y": 270
},
"casing=false,facing=north,part=end,slope=downward": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=north,part=end,slope=downward": {
"model": "create:block/belt_casing/diagonal_start",
"y": 180
},
"casing=false,facing=south,part=end,slope=downward": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=end,slope=downward": {
"model": "create:block/belt_casing/diagonal_start"
},
"casing=false,facing=west,part=end,slope=downward": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=west,part=end,slope=downward": {
"model": "create:block/belt_casing/diagonal_start",
"y": 90
},
"casing=false,facing=east,part=end,slope=downward": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=end,slope=downward": {
"model": "create:block/belt_casing/diagonal_start",
"y": 270
},
"casing=false,facing=north,part=pulley,slope=downward": {
"model": "create:block/belt/particle",
"y": 180
},
"casing=true,facing=north,part=pulley,slope=downward": {
"model": "create:block/belt_casing/diagonal_pulley",
"y": 180
},
"casing=false,facing=south,part=pulley,slope=downward": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=pulley,slope=downward": {
"model": "create:block/belt_casing/diagonal_pulley"
},
"casing=false,facing=west,part=pulley,slope=downward": {
"model": "create:block/belt/particle",
"y": 90
},
"casing=true,facing=west,part=pulley,slope=downward": {
"model": "create:block/belt_casing/diagonal_pulley",
"y": 90
},
"casing=false,facing=east,part=pulley,slope=downward": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=pulley,slope=downward": {
"model": "create:block/belt_casing/diagonal_pulley",
"y": 270
},
"casing=false,facing=north,part=start,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 180
},
"casing=true,facing=north,part=start,slope=vertical": {
"model": "create:block/belt_casing/sideways_end",
"x": 90,
"y": 270
},
"casing=false,facing=south,part=start,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90
},
"casing=true,facing=south,part=start,slope=vertical": {
"model": "create:block/belt_casing/sideways_start",
"x": 90,
"y": 90
},
"casing=false,facing=west,part=start,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 90
},
"casing=true,facing=west,part=start,slope=vertical": {
"model": "create:block/belt_casing/sideways_end",
"x": 90,
"y": 180
},
"casing=false,facing=east,part=start,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 270
},
"casing=true,facing=east,part=start,slope=vertical": {
"model": "create:block/belt_casing/sideways_start",
"x": 90
},
"casing=false,facing=north,part=middle,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 180
},
"casing=true,facing=north,part=middle,slope=vertical": {
"model": "create:block/belt_casing/sideways_middle",
"x": 90,
"y": 270
},
"casing=false,facing=south,part=middle,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90
},
"casing=true,facing=south,part=middle,slope=vertical": {
"model": "create:block/belt_casing/sideways_middle",
"x": 90,
"y": 90
},
"casing=false,facing=west,part=middle,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 90
},
"casing=true,facing=west,part=middle,slope=vertical": {
"model": "create:block/belt_casing/sideways_middle",
"x": 90,
"y": 180
},
"casing=false,facing=east,part=middle,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 270
},
"casing=true,facing=east,part=middle,slope=vertical": {
"model": "create:block/belt_casing/sideways_middle",
"x": 90
},
"casing=false,facing=north,part=end,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 180
},
"casing=true,facing=north,part=end,slope=vertical": {
"model": "create:block/belt_casing/sideways_start",
"x": 90,
"y": 270
},
"casing=false,facing=south,part=end,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90
},
"casing=true,facing=south,part=end,slope=vertical": {
"model": "create:block/belt_casing/sideways_end",
"x": 90,
"y": 90
},
"casing=false,facing=west,part=end,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 90
},
"casing=true,facing=west,part=end,slope=vertical": {
"model": "create:block/belt_casing/sideways_start",
"x": 90,
"y": 180
},
"casing=false,facing=east,part=end,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 270
},
"casing=true,facing=east,part=end,slope=vertical": {
"model": "create:block/belt_casing/sideways_end",
"x": 90
},
"casing=false,facing=north,part=pulley,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 180
},
"casing=true,facing=north,part=pulley,slope=vertical": {
"model": "create:block/belt_casing/sideways_pulley",
"x": 90,
"y": 270
},
"casing=false,facing=south,part=pulley,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90
},
"casing=true,facing=south,part=pulley,slope=vertical": {
"model": "create:block/belt_casing/sideways_pulley",
"x": 90,
"y": 90
},
"casing=false,facing=west,part=pulley,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 90
},
"casing=true,facing=west,part=pulley,slope=vertical": {
"model": "create:block/belt_casing/sideways_pulley",
"x": 90,
"y": 180
},
"casing=false,facing=east,part=pulley,slope=vertical": {
"model": "create:block/belt/particle",
"x": 90,
"y": 270
},
"casing=true,facing=east,part=pulley,slope=vertical": {
"model": "create:block/belt_casing/sideways_pulley",
"x": 90
},
"casing=false,facing=north,part=start,slope=sideways": {
"model": "create:block/belt/particle",
"x": 180,
"y": 180
},
"casing=true,facing=north,part=start,slope=sideways": {
"model": "create:block/belt_casing/sideways_end",
"x": 180,
"y": 180
},
"casing=false,facing=south,part=start,slope=sideways": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=start,slope=sideways": {
"model": "create:block/belt_casing/sideways_start"
},
"casing=false,facing=west,part=start,slope=sideways": {
"model": "create:block/belt/particle",
"x": 180,
"y": 90
},
"casing=true,facing=west,part=start,slope=sideways": {
"model": "create:block/belt_casing/sideways_end",
"x": 180,
"y": 90
},
"casing=false,facing=east,part=start,slope=sideways": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=start,slope=sideways": {
"model": "create:block/belt_casing/sideways_start",
"y": 270
},
"casing=false,facing=north,part=middle,slope=sideways": {
"model": "create:block/belt/particle",
"x": 180,
"y": 180
},
"casing=true,facing=north,part=middle,slope=sideways": {
"model": "create:block/belt_casing/sideways_middle",
"x": 180,
"y": 180
},
"casing=false,facing=south,part=middle,slope=sideways": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=middle,slope=sideways": {
"model": "create:block/belt_casing/sideways_middle"
},
"casing=false,facing=west,part=middle,slope=sideways": {
"model": "create:block/belt/particle",
"x": 180,
"y": 90
},
"casing=true,facing=west,part=middle,slope=sideways": {
"model": "create:block/belt_casing/sideways_middle",
"x": 180,
"y": 90
},
"casing=false,facing=east,part=middle,slope=sideways": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=middle,slope=sideways": {
"model": "create:block/belt_casing/sideways_middle",
"y": 270
},
"casing=false,facing=north,part=end,slope=sideways": {
"model": "create:block/belt/particle",
"x": 180,
"y": 180
},
"casing=true,facing=north,part=end,slope=sideways": {
"model": "create:block/belt_casing/sideways_start",
"x": 180,
"y": 180
},
"casing=false,facing=south,part=end,slope=sideways": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=end,slope=sideways": {
"model": "create:block/belt_casing/sideways_end"
},
"casing=false,facing=west,part=end,slope=sideways": {
"model": "create:block/belt/particle",
"x": 180,
"y": 90
},
"casing=true,facing=west,part=end,slope=sideways": {
"model": "create:block/belt_casing/sideways_start",
"x": 180,
"y": 90
},
"casing=false,facing=east,part=end,slope=sideways": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=end,slope=sideways": {
"model": "create:block/belt_casing/sideways_end",
"y": 270
},
"casing=false,facing=north,part=pulley,slope=sideways": {
"model": "create:block/belt/particle",
"x": 180,
"y": 180
},
"casing=true,facing=north,part=pulley,slope=sideways": {
"model": "create:block/belt_casing/sideways_pulley",
"x": 180,
"y": 180
},
"casing=false,facing=south,part=pulley,slope=sideways": {
"model": "create:block/belt/particle"
},
"casing=true,facing=south,part=pulley,slope=sideways": {
"model": "create:block/belt_casing/sideways_pulley"
},
"casing=false,facing=west,part=pulley,slope=sideways": {
"model": "create:block/belt/particle",
"x": 180,
"y": 90
},
"casing=true,facing=west,part=pulley,slope=sideways": {
"model": "create:block/belt_casing/sideways_pulley",
"x": 180,
"y": 90
},
"casing=false,facing=east,part=pulley,slope=sideways": {
"model": "create:block/belt/particle",
"y": 270
},
"casing=true,facing=east,part=pulley,slope=sideways": {
"model": "create:block/belt_casing/sideways_pulley",
"y": 270
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/birch_window"
}
}
}

View file

@ -1,77 +0,0 @@
{
"multipart": [
{
"apply": {
"model": "create:block/birch_window_pane_post"
}
},
{
"when": {
"north": "true"
},
"apply": {
"model": "create:block/birch_window_pane_side"
}
},
{
"when": {
"north": "false"
},
"apply": {
"model": "create:block/birch_window_pane_noside"
}
},
{
"when": {
"south": "true"
},
"apply": {
"model": "create:block/birch_window_pane_side_alt"
}
},
{
"when": {
"south": "false"
},
"apply": {
"model": "create:block/birch_window_pane_noside_alt",
"y": 90
}
},
{
"when": {
"west": "true"
},
"apply": {
"model": "create:block/birch_window_pane_side_alt",
"y": 90
}
},
{
"when": {
"west": "false"
},
"apply": {
"model": "create:block/birch_window_pane_noside",
"y": 270
}
},
{
"when": {
"east": "true"
},
"apply": {
"model": "create:block/birch_window_pane_side",
"y": 90
}
},
{
"when": {
"east": "false"
},
"apply": {
"model": "create:block/birch_window_pane_noside_alt"
}
}
]
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/black_sail",
"x": 180
},
"facing=up": {
"model": "create:block/black_sail"
},
"facing=north": {
"model": "create:block/black_sail",
"x": 90
},
"facing=south": {
"model": "create:block/black_sail",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/black_sail",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/black_sail",
"x": 90,
"y": 90
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/black_seat"
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/black_valve_handle",
"x": 180
},
"facing=up": {
"model": "create:block/black_valve_handle"
},
"facing=north": {
"model": "create:block/black_valve_handle",
"x": 90
},
"facing=south": {
"model": "create:block/black_valve_handle",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/black_valve_handle",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/black_valve_handle",
"x": 90,
"y": 90
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/blaze_burner/block"
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/blue_sail",
"x": 180
},
"facing=up": {
"model": "create:block/blue_sail"
},
"facing=north": {
"model": "create:block/blue_sail",
"x": 90
},
"facing=south": {
"model": "create:block/blue_sail",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/blue_sail",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/blue_sail",
"x": 90,
"y": 90
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/blue_seat"
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/blue_valve_handle",
"x": 180
},
"facing=up": {
"model": "create:block/blue_valve_handle"
},
"facing=north": {
"model": "create:block/blue_valve_handle",
"x": 90
},
"facing=south": {
"model": "create:block/blue_valve_handle",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/blue_valve_handle",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/blue_valve_handle",
"x": 90,
"y": 90
}
}
}

View file

@ -1,124 +0,0 @@
{
"variants": {
"facing=north,powered=false,shape=retracted": {
"model": "create:block/brass_belt_funnel__retracted"
},
"facing=south,powered=false,shape=retracted": {
"model": "create:block/brass_belt_funnel__retracted",
"y": 180
},
"facing=west,powered=false,shape=retracted": {
"model": "create:block/brass_belt_funnel__retracted",
"y": 270
},
"facing=east,powered=false,shape=retracted": {
"model": "create:block/brass_belt_funnel__retracted",
"y": 90
},
"facing=north,powered=true,shape=retracted": {
"model": "create:block/brass_belt_funnel__powered_retracted"
},
"facing=south,powered=true,shape=retracted": {
"model": "create:block/brass_belt_funnel__powered_retracted",
"y": 180
},
"facing=west,powered=true,shape=retracted": {
"model": "create:block/brass_belt_funnel__powered_retracted",
"y": 270
},
"facing=east,powered=true,shape=retracted": {
"model": "create:block/brass_belt_funnel__powered_retracted",
"y": 90
},
"facing=north,powered=false,shape=extended": {
"model": "create:block/brass_belt_funnel__extended"
},
"facing=south,powered=false,shape=extended": {
"model": "create:block/brass_belt_funnel__extended",
"y": 180
},
"facing=west,powered=false,shape=extended": {
"model": "create:block/brass_belt_funnel__extended",
"y": 270
},
"facing=east,powered=false,shape=extended": {
"model": "create:block/brass_belt_funnel__extended",
"y": 90
},
"facing=north,powered=true,shape=extended": {
"model": "create:block/brass_belt_funnel__powered_extended"
},
"facing=south,powered=true,shape=extended": {
"model": "create:block/brass_belt_funnel__powered_extended",
"y": 180
},
"facing=west,powered=true,shape=extended": {
"model": "create:block/brass_belt_funnel__powered_extended",
"y": 270
},
"facing=east,powered=true,shape=extended": {
"model": "create:block/brass_belt_funnel__powered_extended",
"y": 90
},
"facing=north,powered=false,shape=pushing": {
"model": "create:block/brass_belt_funnel__pushing"
},
"facing=south,powered=false,shape=pushing": {
"model": "create:block/brass_belt_funnel__pushing",
"y": 180
},
"facing=west,powered=false,shape=pushing": {
"model": "create:block/brass_belt_funnel__pushing",
"y": 270
},
"facing=east,powered=false,shape=pushing": {
"model": "create:block/brass_belt_funnel__pushing",
"y": 90
},
"facing=north,powered=true,shape=pushing": {
"model": "create:block/brass_belt_funnel__powered_pushing"
},
"facing=south,powered=true,shape=pushing": {
"model": "create:block/brass_belt_funnel__powered_pushing",
"y": 180
},
"facing=west,powered=true,shape=pushing": {
"model": "create:block/brass_belt_funnel__powered_pushing",
"y": 270
},
"facing=east,powered=true,shape=pushing": {
"model": "create:block/brass_belt_funnel__powered_pushing",
"y": 90
},
"facing=north,powered=false,shape=pulling": {
"model": "create:block/brass_belt_funnel__pulling"
},
"facing=south,powered=false,shape=pulling": {
"model": "create:block/brass_belt_funnel__pulling",
"y": 180
},
"facing=west,powered=false,shape=pulling": {
"model": "create:block/brass_belt_funnel__pulling",
"y": 270
},
"facing=east,powered=false,shape=pulling": {
"model": "create:block/brass_belt_funnel__pulling",
"y": 90
},
"facing=north,powered=true,shape=pulling": {
"model": "create:block/brass_belt_funnel__powered_pulling"
},
"facing=south,powered=true,shape=pulling": {
"model": "create:block/brass_belt_funnel__powered_pulling",
"y": 180
},
"facing=west,powered=true,shape=pulling": {
"model": "create:block/brass_belt_funnel__powered_pulling",
"y": 270
},
"facing=east,powered=true,shape=pulling": {
"model": "create:block/brass_belt_funnel__powered_pulling",
"y": 90
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/brass_block"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/brass_casing"
}
}
}

View file

@ -1,20 +0,0 @@
{
"variants": {
"axis=x": {
"model": "create:block/encased_shaft/block_brass",
"x": 90,
"y": 90,
"uvlock": true
},
"axis=y": {
"model": "create:block/encased_shaft/block_brass",
"uvlock": true
},
"axis=z": {
"model": "create:block/encased_shaft/block_brass",
"x": 90,
"y": 180,
"uvlock": true
}
}
}

View file

@ -1,100 +0,0 @@
{
"variants": {
"extracting=false,facing=down,powered=false": {
"model": "create:block/brass_funnel_vertical_pull",
"x": 180,
"y": 180
},
"extracting=true,facing=down,powered=false": {
"model": "create:block/brass_funnel_vertical_push",
"x": 180,
"y": 180
},
"extracting=false,facing=up,powered=false": {
"model": "create:block/brass_funnel_vertical_pull",
"y": 180
},
"extracting=true,facing=up,powered=false": {
"model": "create:block/brass_funnel_vertical_push",
"y": 180
},
"extracting=false,facing=north,powered=false": {
"model": "create:block/brass_funnel_horizontal_pull"
},
"extracting=true,facing=north,powered=false": {
"model": "create:block/brass_funnel_horizontal_push"
},
"extracting=false,facing=south,powered=false": {
"model": "create:block/brass_funnel_horizontal_pull",
"y": 180
},
"extracting=true,facing=south,powered=false": {
"model": "create:block/brass_funnel_horizontal_push",
"y": 180
},
"extracting=false,facing=west,powered=false": {
"model": "create:block/brass_funnel_horizontal_pull",
"y": 270
},
"extracting=true,facing=west,powered=false": {
"model": "create:block/brass_funnel_horizontal_push",
"y": 270
},
"extracting=false,facing=east,powered=false": {
"model": "create:block/brass_funnel_horizontal_pull",
"y": 90
},
"extracting=true,facing=east,powered=false": {
"model": "create:block/brass_funnel_horizontal_push",
"y": 90
},
"extracting=false,facing=down,powered=true": {
"model": "create:block/brass_funnel_vertical_pull_powered",
"x": 180,
"y": 180
},
"extracting=true,facing=down,powered=true": {
"model": "create:block/brass_funnel_vertical_push_powered",
"x": 180,
"y": 180
},
"extracting=false,facing=up,powered=true": {
"model": "create:block/brass_funnel_vertical_pull_powered",
"y": 180
},
"extracting=true,facing=up,powered=true": {
"model": "create:block/brass_funnel_vertical_push_powered",
"y": 180
},
"extracting=false,facing=north,powered=true": {
"model": "create:block/brass_funnel_horizontal_pull_powered"
},
"extracting=true,facing=north,powered=true": {
"model": "create:block/brass_funnel_horizontal_push_powered"
},
"extracting=false,facing=south,powered=true": {
"model": "create:block/brass_funnel_horizontal_pull_powered",
"y": 180
},
"extracting=true,facing=south,powered=true": {
"model": "create:block/brass_funnel_horizontal_push_powered",
"y": 180
},
"extracting=false,facing=west,powered=true": {
"model": "create:block/brass_funnel_horizontal_pull_powered",
"y": 270
},
"extracting=true,facing=west,powered=true": {
"model": "create:block/brass_funnel_horizontal_push_powered",
"y": 270
},
"extracting=false,facing=east,powered=true": {
"model": "create:block/brass_funnel_horizontal_pull_powered",
"y": 90
},
"extracting=true,facing=east,powered=true": {
"model": "create:block/brass_funnel_horizontal_push_powered",
"y": 90
}
}
}

View file

@ -1,46 +0,0 @@
{
"variants": {
"axis=x,shape=straight": {
"model": "create:block/brass_tunnel/straight"
},
"axis=z,shape=straight": {
"model": "create:block/brass_tunnel/straight",
"y": 90
},
"axis=x,shape=window": {
"model": "create:block/brass_tunnel/window"
},
"axis=z,shape=window": {
"model": "create:block/brass_tunnel/window",
"y": 90
},
"axis=x,shape=closed": {
"model": "create:block/brass_tunnel/straight"
},
"axis=z,shape=closed": {
"model": "create:block/brass_tunnel/straight",
"y": 90
},
"axis=x,shape=t_left": {
"model": "create:block/brass_tunnel/t_left"
},
"axis=z,shape=t_left": {
"model": "create:block/brass_tunnel/t_left",
"y": 90
},
"axis=x,shape=t_right": {
"model": "create:block/brass_tunnel/t_right"
},
"axis=z,shape=t_right": {
"model": "create:block/brass_tunnel/t_right",
"y": 90
},
"axis=x,shape=cross": {
"model": "create:block/brass_tunnel/cross"
},
"axis=z,shape=cross": {
"model": "create:block/brass_tunnel/cross",
"y": 90
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/brown_sail",
"x": 180
},
"facing=up": {
"model": "create:block/brown_sail"
},
"facing=north": {
"model": "create:block/brown_sail",
"x": 90
},
"facing=south": {
"model": "create:block/brown_sail",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/brown_sail",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/brown_sail",
"x": 90,
"y": 90
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/brown_seat"
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/brown_valve_handle",
"x": 180
},
"facing=up": {
"model": "create:block/brown_valve_handle"
},
"facing=north": {
"model": "create:block/brown_valve_handle",
"x": 90
},
"facing=south": {
"model": "create:block/brown_valve_handle",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/brown_valve_handle",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/brown_valve_handle",
"x": 90,
"y": 90
}
}
}

View file

@ -1,90 +0,0 @@
{
"variants": {
"powered=false,rail_type=regular,shape=north_south": {
"model": "create:block/cart_assembler/block_regular"
},
"powered=true,rail_type=regular,shape=north_south": {
"model": "create:block/cart_assembler/block_regular_powered"
},
"powered=false,rail_type=powered_rail,shape=north_south": {
"model": "create:block/cart_assembler/block_powered_rail"
},
"powered=true,rail_type=powered_rail,shape=north_south": {
"model": "create:block/cart_assembler/block_powered_rail_powered"
},
"powered=false,rail_type=detector_rail,shape=north_south": {
"model": "create:block/cart_assembler/block_detector_rail"
},
"powered=true,rail_type=detector_rail,shape=north_south": {
"model": "create:block/cart_assembler/block_detector_rail_powered"
},
"powered=false,rail_type=activator_rail,shape=north_south": {
"model": "create:block/cart_assembler/block_activator_rail"
},
"powered=true,rail_type=activator_rail,shape=north_south": {
"model": "create:block/cart_assembler/block_activator_rail_powered"
},
"powered=false,rail_type=controller_rail,shape=north_south": {
"model": "create:block/cart_assembler/block_controller_rail"
},
"powered=true,rail_type=controller_rail,shape=north_south": {
"model": "create:block/cart_assembler/block_controller_rail_powered"
},
"powered=false,rail_type=controller_rail_backwards,shape=north_south": {
"model": "create:block/cart_assembler/block_controller_rail",
"y": 180
},
"powered=true,rail_type=controller_rail_backwards,shape=north_south": {
"model": "create:block/cart_assembler/block_controller_rail_powered",
"y": 180
},
"powered=false,rail_type=regular,shape=east_west": {
"model": "create:block/cart_assembler/block_regular",
"y": 270
},
"powered=true,rail_type=regular,shape=east_west": {
"model": "create:block/cart_assembler/block_regular_powered",
"y": 270
},
"powered=false,rail_type=powered_rail,shape=east_west": {
"model": "create:block/cart_assembler/block_powered_rail",
"y": 270
},
"powered=true,rail_type=powered_rail,shape=east_west": {
"model": "create:block/cart_assembler/block_powered_rail_powered",
"y": 270
},
"powered=false,rail_type=detector_rail,shape=east_west": {
"model": "create:block/cart_assembler/block_detector_rail",
"y": 270
},
"powered=true,rail_type=detector_rail,shape=east_west": {
"model": "create:block/cart_assembler/block_detector_rail_powered",
"y": 270
},
"powered=false,rail_type=activator_rail,shape=east_west": {
"model": "create:block/cart_assembler/block_activator_rail",
"y": 270
},
"powered=true,rail_type=activator_rail,shape=east_west": {
"model": "create:block/cart_assembler/block_activator_rail_powered",
"y": 270
},
"powered=false,rail_type=controller_rail,shape=east_west": {
"model": "create:block/cart_assembler/block_controller_rail",
"y": 270
},
"powered=true,rail_type=controller_rail,shape=east_west": {
"model": "create:block/cart_assembler/block_controller_rail_powered",
"y": 270
},
"powered=false,rail_type=controller_rail_backwards,shape=east_west": {
"model": "create:block/cart_assembler/block_controller_rail",
"y": 90
},
"powered=true,rail_type=controller_rail_backwards,shape=east_west": {
"model": "create:block/cart_assembler/block_controller_rail_powered",
"y": 90
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/chiseled_dark_scoria"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/chiseled_dolomite"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/chiseled_gabbro"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/chiseled_limestone"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/chiseled_scoria"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/chiseled_weathered_limestone"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/chocolate"
}
}
}

View file

@ -1,58 +0,0 @@
{
"variants": {
"facing=down,shape=intersection": {
"model": "create:block/chute/block_intersection"
},
"facing=north,shape=intersection": {
"model": "create:block/chute/block_diagonal_intersection",
"y": 180
},
"facing=south,shape=intersection": {
"model": "create:block/chute/block_diagonal_intersection"
},
"facing=west,shape=intersection": {
"model": "create:block/chute/block_diagonal_intersection",
"y": 90
},
"facing=east,shape=intersection": {
"model": "create:block/chute/block_diagonal_intersection",
"y": 270
},
"facing=down,shape=window": {
"model": "create:block/chute/block_windowed"
},
"facing=north,shape=window": {
"model": "create:block/chute/block_diagonal",
"y": 180
},
"facing=south,shape=window": {
"model": "create:block/chute/block_diagonal"
},
"facing=west,shape=window": {
"model": "create:block/chute/block_diagonal",
"y": 90
},
"facing=east,shape=window": {
"model": "create:block/chute/block_diagonal",
"y": 270
},
"facing=down,shape=normal": {
"model": "create:block/chute/block"
},
"facing=north,shape=normal": {
"model": "create:block/chute/block_diagonal",
"y": 180
},
"facing=south,shape=normal": {
"model": "create:block/chute/block_diagonal"
},
"facing=west,shape=normal": {
"model": "create:block/chute/block_diagonal",
"y": 90
},
"facing=east,shape=normal": {
"model": "create:block/chute/block_diagonal",
"y": 270
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/clockwork_bearing",
"x": 180
},
"facing=up": {
"model": "create:block/clockwork_bearing"
},
"facing=north": {
"model": "create:block/clockwork_bearing",
"x": 90
},
"facing=south": {
"model": "create:block/clockwork_bearing",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/clockwork_bearing",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/clockwork_bearing",
"x": 90,
"y": 90
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"axis=x,powered=false": {
"model": "create:block/clutch/block",
"x": 90,
"y": 90
},
"axis=y,powered=false": {
"model": "create:block/clutch/block"
},
"axis=z,powered=false": {
"model": "create:block/clutch/block",
"x": 90,
"y": 180
},
"axis=x,powered=true": {
"model": "create:block/clutch/block_powered",
"x": 90,
"y": 90
},
"axis=y,powered=true": {
"model": "create:block/clutch/block_powered"
},
"axis=z,powered=true": {
"model": "create:block/clutch/block_powered",
"x": 90,
"y": 180
}
}
}

View file

@ -1,17 +0,0 @@
{
"variants": {
"axis=x": {
"model": "create:block/cogwheel",
"x": 90,
"y": 90
},
"axis=y": {
"model": "create:block/cogwheel"
},
"axis=z": {
"model": "create:block/cogwheel",
"x": 90,
"y": 180
}
}
}

View file

@ -1,34 +0,0 @@
{
"variants": {
"facing=north,powered=false": {
"model": "create:block/content_observer/block"
},
"facing=south,powered=false": {
"model": "create:block/content_observer/block",
"y": 180
},
"facing=west,powered=false": {
"model": "create:block/content_observer/block",
"y": 270
},
"facing=east,powered=false": {
"model": "create:block/content_observer/block",
"y": 90
},
"facing=north,powered=true": {
"model": "create:block/content_observer/block_powered"
},
"facing=south,powered=true": {
"model": "create:block/content_observer/block_powered",
"y": 180
},
"facing=west,powered=true": {
"model": "create:block/content_observer/block_powered",
"y": 270
},
"facing=east,powered=true": {
"model": "create:block/content_observer/block_powered",
"y": 90
}
}
}

View file

@ -1,49 +0,0 @@
{
"variants": {
"backwards=false,shape=north_south": {
"model": "create:block/controller_rail/block_north_south"
},
"backwards=true,shape=north_south": {
"model": "create:block/controller_rail/block_north_south",
"y": 180
},
"backwards=false,shape=east_west": {
"model": "create:block/controller_rail/block_north_south",
"y": 270
},
"backwards=true,shape=east_west": {
"model": "create:block/controller_rail/block_north_south",
"y": 90
},
"backwards=false,shape=ascending_east": {
"model": "create:block/controller_rail/block_ascending_south",
"y": 270
},
"backwards=true,shape=ascending_east": {
"model": "create:block/controller_rail/block_ascending_north",
"y": 90
},
"backwards=false,shape=ascending_west": {
"model": "create:block/controller_rail/block_ascending_north",
"y": 270
},
"backwards=true,shape=ascending_west": {
"model": "create:block/controller_rail/block_ascending_south",
"y": 90
},
"backwards=false,shape=ascending_north": {
"model": "create:block/controller_rail/block_ascending_north"
},
"backwards=true,shape=ascending_north": {
"model": "create:block/controller_rail/block_ascending_south",
"y": 180
},
"backwards=false,shape=ascending_south": {
"model": "create:block/controller_rail/block_ascending_south"
},
"backwards=true,shape=ascending_south": {
"model": "create:block/controller_rail/block_ascending_north",
"y": 180
}
}
}

View file

@ -1,34 +0,0 @@
{
"variants": {
"facing=north,waterlogged=false": {
"model": "create:block/copper_backtank/block"
},
"facing=south,waterlogged=false": {
"model": "create:block/copper_backtank/block",
"y": 180
},
"facing=west,waterlogged=false": {
"model": "create:block/copper_backtank/block",
"y": 270
},
"facing=east,waterlogged=false": {
"model": "create:block/copper_backtank/block",
"y": 90
},
"facing=north,waterlogged=true": {
"model": "create:block/copper_backtank/block"
},
"facing=south,waterlogged=true": {
"model": "create:block/copper_backtank/block",
"y": 180
},
"facing=west,waterlogged=true": {
"model": "create:block/copper_backtank/block",
"y": 270
},
"facing=east,waterlogged=true": {
"model": "create:block/copper_backtank/block",
"y": 90
}
}
}

View file

@ -1,28 +0,0 @@
{
"variants": {
"oxidization=0": {
"model": "create:block/oxidized/copper_block_0"
},
"oxidization=1": {
"model": "create:block/oxidized/copper_block_1"
},
"oxidization=2": {
"model": "create:block/oxidized/copper_block_2"
},
"oxidization=3": {
"model": "create:block/oxidized/copper_block_3"
},
"oxidization=4": {
"model": "create:block/oxidized/copper_block_4"
},
"oxidization=5": {
"model": "create:block/oxidized/copper_block_5"
},
"oxidization=6": {
"model": "create:block/oxidized/copper_block_6"
},
"oxidization=7": {
"model": "create:block/oxidized/copper_block_7"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/copper_casing"
}
}
}

View file

@ -1,28 +0,0 @@
{
"variants": {
"oxidization=0": {
"model": "create:block/oxidized/copper_ore_0"
},
"oxidization=1": {
"model": "create:block/oxidized/copper_ore_1"
},
"oxidization=2": {
"model": "create:block/oxidized/copper_ore_2"
},
"oxidization=3": {
"model": "create:block/oxidized/copper_ore_3"
},
"oxidization=4": {
"model": "create:block/oxidized/copper_ore_4"
},
"oxidization=5": {
"model": "create:block/oxidized/copper_ore_5"
},
"oxidization=6": {
"model": "create:block/oxidized/copper_ore_6"
},
"oxidization=7": {
"model": "create:block/oxidized/copper_ore_7"
}
}
}

View file

@ -1,28 +0,0 @@
{
"variants": {
"oxidization=0": {
"model": "create:block/oxidized/copper_shingles_0"
},
"oxidization=1": {
"model": "create:block/oxidized/copper_shingles_1"
},
"oxidization=2": {
"model": "create:block/oxidized/copper_shingles_2"
},
"oxidization=3": {
"model": "create:block/oxidized/copper_shingles_3"
},
"oxidization=4": {
"model": "create:block/oxidized/copper_shingles_4"
},
"oxidization=5": {
"model": "create:block/oxidized/copper_shingles_5"
},
"oxidization=6": {
"model": "create:block/oxidized/copper_shingles_6"
},
"oxidization=7": {
"model": "create:block/oxidized/copper_shingles_7"
}
}
}

View file

@ -1,28 +0,0 @@
{
"variants": {
"oxidization=0": {
"model": "create:block/oxidized/copper_tiles_0"
},
"oxidization=1": {
"model": "create:block/oxidized/copper_tiles_1"
},
"oxidization=2": {
"model": "create:block/oxidized/copper_tiles_2"
},
"oxidization=3": {
"model": "create:block/oxidized/copper_tiles_3"
},
"oxidization=4": {
"model": "create:block/oxidized/copper_tiles_4"
},
"oxidization=5": {
"model": "create:block/oxidized/copper_tiles_5"
},
"oxidization=6": {
"model": "create:block/oxidized/copper_tiles_6"
},
"oxidization=7": {
"model": "create:block/oxidized/copper_tiles_7"
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/copper_valve_handle",
"x": 180
},
"facing=up": {
"model": "create:block/copper_valve_handle"
},
"facing=north": {
"model": "create:block/copper_valve_handle",
"x": 90
},
"facing=south": {
"model": "create:block/copper_valve_handle",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/copper_valve_handle",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/copper_valve_handle",
"x": 90,
"y": 90
}
}
}

View file

@ -1,42 +0,0 @@
{
"variants": {
"double=false,facing=down": {
"model": "create:block/crate/creative/single"
},
"double=true,facing=down": {
"model": "create:block/crate/creative/top"
},
"double=false,facing=up": {
"model": "create:block/crate/creative/single"
},
"double=true,facing=up": {
"model": "create:block/crate/creative/bottom"
},
"double=false,facing=north": {
"model": "create:block/crate/creative/single"
},
"double=true,facing=north": {
"model": "create:block/crate/creative/right"
},
"double=false,facing=south": {
"model": "create:block/crate/creative/single"
},
"double=true,facing=south": {
"model": "create:block/crate/creative/left"
},
"double=false,facing=west": {
"model": "create:block/crate/creative/single"
},
"double=true,facing=west": {
"model": "create:block/crate/creative/left",
"y": 90
},
"double=false,facing=east": {
"model": "create:block/crate/creative/single"
},
"double=true,facing=east": {
"model": "create:block/crate/creative/right",
"y": 90
}
}
}

View file

@ -1,76 +0,0 @@
{
"variants": {
"bottom=false,shape=plain,top=false": {
"model": "create:block/creative_middle"
},
"bottom=true,shape=plain,top=false": {
"model": "create:block/creative_bottom"
},
"bottom=false,shape=window,top=false": {
"model": "create:block/creative_middle_window"
},
"bottom=true,shape=window,top=false": {
"model": "create:block/creative_bottom_window"
},
"bottom=false,shape=window_nw,top=false": {
"model": "create:block/creative_middle_window_nw"
},
"bottom=true,shape=window_nw,top=false": {
"model": "create:block/creative_bottom_window_nw"
},
"bottom=false,shape=window_sw,top=false": {
"model": "create:block/creative_middle_window_sw"
},
"bottom=true,shape=window_sw,top=false": {
"model": "create:block/creative_bottom_window_sw"
},
"bottom=false,shape=window_ne,top=false": {
"model": "create:block/creative_middle_window_ne"
},
"bottom=true,shape=window_ne,top=false": {
"model": "create:block/creative_bottom_window_ne"
},
"bottom=false,shape=window_se,top=false": {
"model": "create:block/creative_middle_window_se"
},
"bottom=true,shape=window_se,top=false": {
"model": "create:block/creative_bottom_window_se"
},
"bottom=false,shape=plain,top=true": {
"model": "create:block/creative_top"
},
"bottom=true,shape=plain,top=true": {
"model": "create:block/creative_single"
},
"bottom=false,shape=window,top=true": {
"model": "create:block/creative_top_window"
},
"bottom=true,shape=window,top=true": {
"model": "create:block/creative_single_window"
},
"bottom=false,shape=window_nw,top=true": {
"model": "create:block/creative_top_window_nw"
},
"bottom=true,shape=window_nw,top=true": {
"model": "create:block/creative_single_window_nw"
},
"bottom=false,shape=window_sw,top=true": {
"model": "create:block/creative_top_window_sw"
},
"bottom=true,shape=window_sw,top=true": {
"model": "create:block/creative_single_window_sw"
},
"bottom=false,shape=window_ne,top=true": {
"model": "create:block/creative_top_window_ne"
},
"bottom=true,shape=window_ne,top=true": {
"model": "create:block/creative_single_window_ne"
},
"bottom=false,shape=window_se,top=true": {
"model": "create:block/creative_top_window_se"
},
"bottom=true,shape=window_se,top=true": {
"model": "create:block/creative_single_window_se"
}
}
}

View file

@ -1,26 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/creative_motor/block_vertical",
"x": 180
},
"facing=up": {
"model": "create:block/creative_motor/block_vertical"
},
"facing=north": {
"model": "create:block/creative_motor/block",
"y": 180
},
"facing=south": {
"model": "create:block/creative_motor/block"
},
"facing=west": {
"model": "create:block/creative_motor/block",
"y": 90
},
"facing=east": {
"model": "create:block/creative_motor/block",
"y": 270
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/crimson_window"
}
}
}

View file

@ -1,77 +0,0 @@
{
"multipart": [
{
"apply": {
"model": "create:block/crimson_window_pane_post"
}
},
{
"when": {
"north": "true"
},
"apply": {
"model": "create:block/crimson_window_pane_side"
}
},
{
"when": {
"north": "false"
},
"apply": {
"model": "create:block/crimson_window_pane_noside"
}
},
{
"when": {
"south": "true"
},
"apply": {
"model": "create:block/crimson_window_pane_side_alt"
}
},
{
"when": {
"south": "false"
},
"apply": {
"model": "create:block/crimson_window_pane_noside_alt",
"y": 90
}
},
{
"when": {
"west": "true"
},
"apply": {
"model": "create:block/crimson_window_pane_side_alt",
"y": 90
}
},
{
"when": {
"west": "false"
},
"apply": {
"model": "create:block/crimson_window_pane_noside",
"y": 270
}
},
{
"when": {
"east": "true"
},
"apply": {
"model": "create:block/crimson_window_pane_side",
"y": 90
}
},
{
"when": {
"east": "false"
},
"apply": {
"model": "create:block/crimson_window_pane_noside_alt"
}
}
]
}

View file

@ -1,17 +0,0 @@
{
"variants": {
"axis=x": {
"model": "create:block/crushing_wheel",
"x": 90,
"y": 90
},
"axis=y": {
"model": "create:block/crushing_wheel"
},
"axis=z": {
"model": "create:block/crushing_wheel",
"x": 90,
"y": 180
}
}
}

View file

@ -1,10 +0,0 @@
{
"variants": {
"valid=false": {
"model": "minecraft:block/air"
},
"valid=true": {
"model": "minecraft:block/air"
}
}
}

View file

@ -1,19 +0,0 @@
{
"variants": {
"facing=north": {
"model": "create:block/cuckoo_clock/block"
},
"facing=south": {
"model": "create:block/cuckoo_clock/block",
"y": 180
},
"facing=west": {
"model": "create:block/cuckoo_clock/block",
"y": 270
},
"facing=east": {
"model": "create:block/cuckoo_clock/block",
"y": 90
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/cyan_sail",
"x": 180
},
"facing=up": {
"model": "create:block/cyan_sail"
},
"facing=north": {
"model": "create:block/cyan_sail",
"x": 90
},
"facing=south": {
"model": "create:block/cyan_sail",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/cyan_sail",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/cyan_sail",
"x": 90,
"y": 90
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/cyan_seat"
}
}
}

View file

@ -1,30 +0,0 @@
{
"variants": {
"facing=down": {
"model": "create:block/cyan_valve_handle",
"x": 180
},
"facing=up": {
"model": "create:block/cyan_valve_handle"
},
"facing=north": {
"model": "create:block/cyan_valve_handle",
"x": 90
},
"facing=south": {
"model": "create:block/cyan_valve_handle",
"x": 90,
"y": 180
},
"facing=west": {
"model": "create:block/cyan_valve_handle",
"x": 90,
"y": 270
},
"facing=east": {
"model": "create:block/cyan_valve_handle",
"x": 90,
"y": 90
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/dark_oak_window"
}
}
}

View file

@ -1,77 +0,0 @@
{
"multipart": [
{
"apply": {
"model": "create:block/dark_oak_window_pane_post"
}
},
{
"when": {
"north": "true"
},
"apply": {
"model": "create:block/dark_oak_window_pane_side"
}
},
{
"when": {
"north": "false"
},
"apply": {
"model": "create:block/dark_oak_window_pane_noside"
}
},
{
"when": {
"south": "true"
},
"apply": {
"model": "create:block/dark_oak_window_pane_side_alt"
}
},
{
"when": {
"south": "false"
},
"apply": {
"model": "create:block/dark_oak_window_pane_noside_alt",
"y": 90
}
},
{
"when": {
"west": "true"
},
"apply": {
"model": "create:block/dark_oak_window_pane_side_alt",
"y": 90
}
},
{
"when": {
"west": "false"
},
"apply": {
"model": "create:block/dark_oak_window_pane_noside",
"y": 270
}
},
{
"when": {
"east": "true"
},
"apply": {
"model": "create:block/dark_oak_window_pane_side",
"y": 90
}
},
{
"when": {
"east": "false"
},
"apply": {
"model": "create:block/dark_oak_window_pane_noside_alt"
}
}
]
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/dark_scoria"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/dark_scoria_bricks"
}
}
}

View file

@ -1,13 +0,0 @@
{
"variants": {
"type=top": {
"model": "create:block/dark_scoria_bricks_slab_top"
},
"type=bottom": {
"model": "create:block/dark_scoria_bricks_slab"
},
"type=double": {
"model": "create:block/dark_scoria_bricks"
}
}
}

View file

@ -1,209 +0,0 @@
{
"variants": {
"facing=north,half=top,shape=straight": {
"model": "create:block/dark_scoria_bricks_stairs",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=straight": {
"model": "create:block/dark_scoria_bricks_stairs",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=straight": {
"model": "create:block/dark_scoria_bricks_stairs",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=straight": {
"model": "create:block/dark_scoria_bricks_stairs",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=straight": {
"model": "create:block/dark_scoria_bricks_stairs",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=straight": {
"model": "create:block/dark_scoria_bricks_stairs",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=straight": {
"model": "create:block/dark_scoria_bricks_stairs",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=straight": {
"model": "create:block/dark_scoria_bricks_stairs"
},
"facing=north,half=top,shape=inner_left": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=inner_left": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=inner_left": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=inner_left": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_left": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_left": {
"model": "create:block/dark_scoria_bricks_stairs_inner"
},
"facing=west,half=bottom,shape=inner_left": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_left": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=inner_right": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=inner_right": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=inner_right": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=inner_right": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_right": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_right": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=inner_right": {
"model": "create:block/dark_scoria_bricks_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_right": {
"model": "create:block/dark_scoria_bricks_stairs_inner"
},
"facing=north,half=top,shape=outer_left": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=outer_left": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=outer_left": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=outer_left": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_left": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_left": {
"model": "create:block/dark_scoria_bricks_stairs_outer"
},
"facing=west,half=bottom,shape=outer_left": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_left": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=outer_right": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=outer_right": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=outer_right": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=outer_right": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_right": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_right": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=outer_right": {
"model": "create:block/dark_scoria_bricks_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_right": {
"model": "create:block/dark_scoria_bricks_stairs_outer"
}
}
}

View file

@ -1,90 +0,0 @@
{
"multipart": [
{
"when": {
"up": "true"
},
"apply": {
"model": "create:block/dark_scoria_bricks_wall_post"
}
},
{
"when": {
"east": "low"
},
"apply": {
"model": "create:block/dark_scoria_bricks_wall_side",
"y": 90,
"uvlock": true
}
},
{
"when": {
"east": "tall"
},
"apply": {
"model": "create:block/dark_scoria_bricks_wall_side_tall",
"y": 90,
"uvlock": true
}
},
{
"when": {
"north": "low"
},
"apply": {
"model": "create:block/dark_scoria_bricks_wall_side",
"uvlock": true
}
},
{
"when": {
"north": "tall"
},
"apply": {
"model": "create:block/dark_scoria_bricks_wall_side_tall",
"uvlock": true
}
},
{
"when": {
"south": "low"
},
"apply": {
"model": "create:block/dark_scoria_bricks_wall_side",
"y": 180,
"uvlock": true
}
},
{
"when": {
"south": "tall"
},
"apply": {
"model": "create:block/dark_scoria_bricks_wall_side_tall",
"y": 180,
"uvlock": true
}
},
{
"when": {
"west": "low"
},
"apply": {
"model": "create:block/dark_scoria_bricks_wall_side",
"y": 270,
"uvlock": true
}
},
{
"when": {
"west": "tall"
},
"apply": {
"model": "create:block/dark_scoria_bricks_wall_side_tall",
"y": 270,
"uvlock": true
}
}
]
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/dark_scoria_cobblestone"
}
}
}

View file

@ -1,13 +0,0 @@
{
"variants": {
"type=top": {
"model": "create:block/dark_scoria_cobblestone_slab_top"
},
"type=bottom": {
"model": "create:block/dark_scoria_cobblestone_slab"
},
"type=double": {
"model": "create:block/dark_scoria_cobblestone"
}
}
}

View file

@ -1,209 +0,0 @@
{
"variants": {
"facing=north,half=top,shape=straight": {
"model": "create:block/dark_scoria_cobblestone_stairs",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=straight": {
"model": "create:block/dark_scoria_cobblestone_stairs",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=straight": {
"model": "create:block/dark_scoria_cobblestone_stairs",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=straight": {
"model": "create:block/dark_scoria_cobblestone_stairs",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=straight": {
"model": "create:block/dark_scoria_cobblestone_stairs",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=straight": {
"model": "create:block/dark_scoria_cobblestone_stairs",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=straight": {
"model": "create:block/dark_scoria_cobblestone_stairs",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=straight": {
"model": "create:block/dark_scoria_cobblestone_stairs"
},
"facing=north,half=top,shape=inner_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=inner_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=inner_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=inner_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner"
},
"facing=west,half=bottom,shape=inner_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=inner_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=inner_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=inner_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=inner_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=inner_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_inner"
},
"facing=north,half=top,shape=outer_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=outer_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=outer_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=outer_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer"
},
"facing=west,half=bottom,shape=outer_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_left": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=outer_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=outer_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=outer_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=outer_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=outer_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_right": {
"model": "create:block/dark_scoria_cobblestone_stairs_outer"
}
}
}

View file

@ -1,90 +0,0 @@
{
"multipart": [
{
"when": {
"up": "true"
},
"apply": {
"model": "create:block/dark_scoria_cobblestone_wall_post"
}
},
{
"when": {
"east": "low"
},
"apply": {
"model": "create:block/dark_scoria_cobblestone_wall_side",
"y": 90,
"uvlock": true
}
},
{
"when": {
"east": "tall"
},
"apply": {
"model": "create:block/dark_scoria_cobblestone_wall_side_tall",
"y": 90,
"uvlock": true
}
},
{
"when": {
"north": "low"
},
"apply": {
"model": "create:block/dark_scoria_cobblestone_wall_side",
"uvlock": true
}
},
{
"when": {
"north": "tall"
},
"apply": {
"model": "create:block/dark_scoria_cobblestone_wall_side_tall",
"uvlock": true
}
},
{
"when": {
"south": "low"
},
"apply": {
"model": "create:block/dark_scoria_cobblestone_wall_side",
"y": 180,
"uvlock": true
}
},
{
"when": {
"south": "tall"
},
"apply": {
"model": "create:block/dark_scoria_cobblestone_wall_side_tall",
"y": 180,
"uvlock": true
}
},
{
"when": {
"west": "low"
},
"apply": {
"model": "create:block/dark_scoria_cobblestone_wall_side",
"y": 270,
"uvlock": true
}
},
{
"when": {
"west": "tall"
},
"apply": {
"model": "create:block/dark_scoria_cobblestone_wall_side_tall",
"y": 270,
"uvlock": true
}
}
]
}

View file

@ -1,17 +0,0 @@
{
"variants": {
"axis=x": {
"model": "create:block/dark_scoria_pillar",
"x": 90,
"y": 90
},
"axis=y": {
"model": "create:block/dark_scoria_pillar"
},
"axis=z": {
"model": "create:block/dark_scoria_pillar",
"x": 90,
"y": 180
}
}
}

View file

@ -1,52 +0,0 @@
{
"variants": {
"axis_along_first=false,facing=down": {
"model": "create:block/deployer/horizontal",
"x": 270,
"y": 90
},
"axis_along_first=true,facing=down": {
"model": "create:block/deployer/horizontal",
"x": 270
},
"axis_along_first=false,facing=up": {
"model": "create:block/deployer/horizontal",
"x": 90,
"y": 90
},
"axis_along_first=true,facing=up": {
"model": "create:block/deployer/horizontal",
"x": 90
},
"axis_along_first=false,facing=north": {
"model": "create:block/deployer/vertical",
"y": 180
},
"axis_along_first=true,facing=north": {
"model": "create:block/deployer/horizontal",
"y": 180
},
"axis_along_first=false,facing=south": {
"model": "create:block/deployer/vertical"
},
"axis_along_first=true,facing=south": {
"model": "create:block/deployer/horizontal"
},
"axis_along_first=false,facing=west": {
"model": "create:block/deployer/horizontal",
"y": 90
},
"axis_along_first=true,facing=west": {
"model": "create:block/deployer/vertical",
"y": 90
},
"axis_along_first=false,facing=east": {
"model": "create:block/deployer/horizontal",
"y": 270
},
"axis_along_first=true,facing=east": {
"model": "create:block/deployer/vertical",
"y": 270
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/depot/block"
}
}
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/diorite_bricks"
}
}
}

View file

@ -1,13 +0,0 @@
{
"variants": {
"type=top": {
"model": "create:block/diorite_bricks_slab_top"
},
"type=bottom": {
"model": "create:block/diorite_bricks_slab"
},
"type=double": {
"model": "create:block/diorite_bricks"
}
}
}

View file

@ -1,209 +0,0 @@
{
"variants": {
"facing=north,half=top,shape=straight": {
"model": "create:block/diorite_bricks_stairs",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=straight": {
"model": "create:block/diorite_bricks_stairs",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=straight": {
"model": "create:block/diorite_bricks_stairs",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=straight": {
"model": "create:block/diorite_bricks_stairs",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=straight": {
"model": "create:block/diorite_bricks_stairs",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=straight": {
"model": "create:block/diorite_bricks_stairs",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=straight": {
"model": "create:block/diorite_bricks_stairs",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=straight": {
"model": "create:block/diorite_bricks_stairs"
},
"facing=north,half=top,shape=inner_left": {
"model": "create:block/diorite_bricks_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=inner_left": {
"model": "create:block/diorite_bricks_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=inner_left": {
"model": "create:block/diorite_bricks_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=inner_left": {
"model": "create:block/diorite_bricks_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_left": {
"model": "create:block/diorite_bricks_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_left": {
"model": "create:block/diorite_bricks_stairs_inner"
},
"facing=west,half=bottom,shape=inner_left": {
"model": "create:block/diorite_bricks_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_left": {
"model": "create:block/diorite_bricks_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=inner_right": {
"model": "create:block/diorite_bricks_stairs_inner",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=inner_right": {
"model": "create:block/diorite_bricks_stairs_inner",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=inner_right": {
"model": "create:block/diorite_bricks_stairs_inner",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=inner_right": {
"model": "create:block/diorite_bricks_stairs_inner",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=inner_right": {
"model": "create:block/diorite_bricks_stairs_inner",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=inner_right": {
"model": "create:block/diorite_bricks_stairs_inner",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=inner_right": {
"model": "create:block/diorite_bricks_stairs_inner",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=inner_right": {
"model": "create:block/diorite_bricks_stairs_inner"
},
"facing=north,half=top,shape=outer_left": {
"model": "create:block/diorite_bricks_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=south,half=top,shape=outer_left": {
"model": "create:block/diorite_bricks_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=west,half=top,shape=outer_left": {
"model": "create:block/diorite_bricks_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=east,half=top,shape=outer_left": {
"model": "create:block/diorite_bricks_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_left": {
"model": "create:block/diorite_bricks_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_left": {
"model": "create:block/diorite_bricks_stairs_outer"
},
"facing=west,half=bottom,shape=outer_left": {
"model": "create:block/diorite_bricks_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_left": {
"model": "create:block/diorite_bricks_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=north,half=top,shape=outer_right": {
"model": "create:block/diorite_bricks_stairs_outer",
"x": 180,
"uvlock": true
},
"facing=south,half=top,shape=outer_right": {
"model": "create:block/diorite_bricks_stairs_outer",
"x": 180,
"y": 180,
"uvlock": true
},
"facing=west,half=top,shape=outer_right": {
"model": "create:block/diorite_bricks_stairs_outer",
"x": 180,
"y": 270,
"uvlock": true
},
"facing=east,half=top,shape=outer_right": {
"model": "create:block/diorite_bricks_stairs_outer",
"x": 180,
"y": 90,
"uvlock": true
},
"facing=north,half=bottom,shape=outer_right": {
"model": "create:block/diorite_bricks_stairs_outer",
"y": 270,
"uvlock": true
},
"facing=south,half=bottom,shape=outer_right": {
"model": "create:block/diorite_bricks_stairs_outer",
"y": 90,
"uvlock": true
},
"facing=west,half=bottom,shape=outer_right": {
"model": "create:block/diorite_bricks_stairs_outer",
"y": 180,
"uvlock": true
},
"facing=east,half=bottom,shape=outer_right": {
"model": "create:block/diorite_bricks_stairs_outer"
}
}
}

View file

@ -1,90 +0,0 @@
{
"multipart": [
{
"when": {
"up": "true"
},
"apply": {
"model": "create:block/diorite_bricks_wall_post"
}
},
{
"when": {
"east": "low"
},
"apply": {
"model": "create:block/diorite_bricks_wall_side",
"y": 90,
"uvlock": true
}
},
{
"when": {
"east": "tall"
},
"apply": {
"model": "create:block/diorite_bricks_wall_side_tall",
"y": 90,
"uvlock": true
}
},
{
"when": {
"north": "low"
},
"apply": {
"model": "create:block/diorite_bricks_wall_side",
"uvlock": true
}
},
{
"when": {
"north": "tall"
},
"apply": {
"model": "create:block/diorite_bricks_wall_side_tall",
"uvlock": true
}
},
{
"when": {
"south": "low"
},
"apply": {
"model": "create:block/diorite_bricks_wall_side",
"y": 180,
"uvlock": true
}
},
{
"when": {
"south": "tall"
},
"apply": {
"model": "create:block/diorite_bricks_wall_side_tall",
"y": 180,
"uvlock": true
}
},
{
"when": {
"west": "low"
},
"apply": {
"model": "create:block/diorite_bricks_wall_side",
"y": 270,
"uvlock": true
}
},
{
"when": {
"west": "tall"
},
"apply": {
"model": "create:block/diorite_bricks_wall_side_tall",
"y": 270,
"uvlock": true
}
}
]
}

View file

@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "create:block/diorite_cobblestone"
}
}
}

View file

@ -1,13 +0,0 @@
{
"variants": {
"type=top": {
"model": "create:block/diorite_cobblestone_slab_top"
},
"type=bottom": {
"model": "create:block/diorite_cobblestone_slab"
},
"type=double": {
"model": "create:block/diorite_cobblestone"
}
}
}

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