mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-26 04:47:59 +01:00
Merge pull request #304 from Snownee/mc1.15-fix-rendering
[1.15] Fix some rendering issues
This commit is contained in:
commit
995357c32e
83 changed files with 518 additions and 849 deletions
|
@ -56,6 +56,7 @@ public class DoubleItemIcon implements IDrawable {
|
|||
RenderSystem.popMatrix();
|
||||
|
||||
RenderSystem.popMatrix();
|
||||
RenderSystem.enableBlend();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -19,8 +19,8 @@ import net.minecraft.client.renderer.RenderHelper;
|
|||
import net.minecraft.client.renderer.RenderType;
|
||||
import net.minecraft.client.renderer.RenderTypeLookup;
|
||||
import net.minecraft.client.renderer.model.IBakedModel;
|
||||
import net.minecraft.client.renderer.texture.AtlasTexture;
|
||||
import net.minecraft.client.renderer.texture.OverlayTexture;
|
||||
import net.minecraft.inventory.container.PlayerContainer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Vec3d;
|
||||
|
@ -84,11 +84,11 @@ public class ScreenElementRenderer {
|
|||
}
|
||||
|
||||
RenderSystem.scaled(50, -50, 50);
|
||||
IRenderTypeBuffer.Impl buffer = mc.getBufferBuilders().getEntityVertexConsumers();
|
||||
IRenderTypeBuffer.Impl buffer = mc.getBufferBuilders().getEntityVertexConsumers();
|
||||
RenderType renderType = RenderTypeLookup.getEntityBlockLayer(blockToRender);
|
||||
IVertexBuilder vb = buffer.getBuffer(renderType);
|
||||
MatrixStack ms = new MatrixStack();
|
||||
mc.getTextureManager().bindTexture(AtlasTexture.LOCATION_BLOCKS_TEXTURE);
|
||||
mc.getTextureManager().bindTexture(PlayerContainer.BLOCK_ATLAS_TEXTURE);
|
||||
|
||||
RenderSystem.pushMatrix();
|
||||
if (fire) {
|
||||
|
@ -107,14 +107,16 @@ public class ScreenElementRenderer {
|
|||
}
|
||||
}
|
||||
RenderSystem.popMatrix();
|
||||
buffer.draw(renderType);
|
||||
|
||||
if (blockToRender != null && !blockToRender.getFluidState().isEmpty()) {
|
||||
renderType = RenderTypeLookup.getFluidLayer(blockToRender.getFluidState());
|
||||
vb = buffer.getBuffer(renderType);
|
||||
RenderHelper.disableStandardItemLighting();
|
||||
RenderSystem.translatef(0, -300, 0);
|
||||
blockRenderer.renderFluid(new BlockPos(0, 300, 0), mc.world, vb, blockToRender.getFluidState());
|
||||
buffer.draw(renderType);
|
||||
}
|
||||
|
||||
buffer.draw(renderType);
|
||||
|
||||
RenderSystem.disableAlphaTest();
|
||||
RenderSystem.disableRescaleNormal();
|
||||
|
|
|
@ -63,7 +63,7 @@ public class MechanicalCrafterTileEntityRenderer extends SafeTileEntityRenderer<
|
|||
ms.pop();
|
||||
|
||||
renderFast(te, partialTicks, ms, buffer);
|
||||
TessellatorHelper.draw();
|
||||
//TessellatorHelper.draw();
|
||||
}
|
||||
|
||||
public void renderItems(MechanicalCrafterTileEntity te, float partialTicks, MatrixStack ms, IRenderTypeBuffer buffer, int light, int overlay) {
|
||||
|
|
|
@ -54,6 +54,7 @@ import net.minecraft.util.math.shapes.VoxelShape;
|
|||
import net.minecraft.world.IBlockReader;
|
||||
import net.minecraft.world.IWorldReader;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.WorldType;
|
||||
import net.minecraft.world.storage.loot.LootParameters;
|
||||
import net.minecraftforge.api.distmarker.Dist;
|
||||
import net.minecraftforge.api.distmarker.OnlyIn;
|
||||
|
@ -393,7 +394,7 @@ public class BeltBlock extends HorizontalKineticBlock implements ITE<BeltTileEnt
|
|||
// }
|
||||
|
||||
public static void initBelt(World world, BlockPos pos) {
|
||||
if (world.isRemote)
|
||||
if (world.isRemote || world.getWorldType() == WorldType.DEBUG_ALL_BLOCK_STATES)
|
||||
return;
|
||||
|
||||
BlockState state = world.getBlockState(pos);
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package com.simibubi.create.modules.contraptions.relays.elementary;
|
||||
|
||||
import com.simibubi.create.AllBlocksNew;
|
||||
import com.simibubi.create.AllItems;
|
||||
import com.simibubi.create.foundation.utility.AllShapes;
|
||||
import com.simibubi.create.modules.contraptions.base.RotatedPillarKineticBlock;
|
||||
|
||||
|
@ -64,7 +63,6 @@ public class ShaftBlock extends RotatedPillarKineticBlock {
|
|||
@Override
|
||||
public void fillItemGroup(ItemGroup group, NonNullList<ItemStack> items) {
|
||||
super.fillItemGroup(group, items);
|
||||
AllItems.BELT_CONNECTOR.get().fillItemGroup(group, items);
|
||||
}
|
||||
|
||||
public static boolean isShaft(BlockState state) {
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"belt": {
|
||||
"true": { "model": "create:block/funnel/horizontal_belt" },
|
||||
"false": { "model": "create:block/funnel/horizontal" }
|
||||
},
|
||||
"facing": {
|
||||
"south": { "y": 180 },
|
||||
"east": { "y": 90 },
|
||||
"north": { "y": 0 },
|
||||
"west": { "y": 270 }
|
||||
}
|
||||
"belt=true,facing=south": { "model": "create:block/funnel/horizontal_belt", "y": 180 },
|
||||
"belt=true,facing=east": { "model": "create:block/funnel/horizontal_belt", "y": 90 },
|
||||
"belt=true,facing=north": { "model": "create:block/funnel/horizontal_belt" },
|
||||
"belt=true,facing=west": { "model": "create:block/funnel/horizontal_belt", "y": 270 },
|
||||
"belt=false,facing=south": { "model": "create:block/funnel/horizontal_belt", "y": 180 },
|
||||
"belt=false,facing=east": { "model": "create:block/funnel/horizontal_belt", "y": 90 },
|
||||
"belt=false,facing=north": { "model": "create:block/funnel/horizontal_belt" },
|
||||
"belt=false,facing=west": { "model": "create:block/funnel/horizontal_belt", "y": 270 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"shape": {
|
||||
"straight": { "model": "create:block/belt_tunnel/straight" },
|
||||
"window": { "model": "create:block/belt_tunnel/straight_windowed" },
|
||||
"halfshade": { "model": "create:block/belt_tunnel/straight_halfshade" },
|
||||
"fullshade": { "model": "create:block/belt_tunnel/straight_fullshade" },
|
||||
"t_left": { "model": "create:block/belt_tunnel/t_left" },
|
||||
"t_right": { "model": "create:block/belt_tunnel/t_right" },
|
||||
"cross": { "model": "create:block/belt_tunnel/cross" }
|
||||
},
|
||||
"axis": {
|
||||
"x": { },
|
||||
"z": { "y": 90 }
|
||||
"shape=straight,axis=x": { "model": "create:block/belt_tunnel/straight" },
|
||||
"shape=window,axis=x": { "model": "create:block/belt_tunnel/straight_windowed" },
|
||||
"shape=halfshade,axis=x": { "model": "create:block/belt_tunnel/straight_halfshade" },
|
||||
"shape=fullshade,axis=x": { "model": "create:block/belt_tunnel/straight_fullshade" },
|
||||
"shape=t_left,axis=x": { "model": "create:block/belt_tunnel/t_left" },
|
||||
"shape=t_right,axis=x": { "model": "create:block/belt_tunnel/t_right" },
|
||||
"shape=cross,axis=x": { "model": "create:block/belt_tunnel/cross" },
|
||||
|
||||
"shape=straight,axis=z": { "model": "create:block/belt_tunnel/straight", "y": 90 },
|
||||
"shape=window,axis=z": { "model": "create:block/belt_tunnel/straight_windowed", "y": 90 },
|
||||
"shape=halfshade,axis=z": { "model": "create:block/belt_tunnel/straight_halfshade", "y": 90 },
|
||||
"shape=fullshade,axis=z": { "model": "create:block/belt_tunnel/straight_fullshade", "y": 90 },
|
||||
"shape=t_left,axis=z": { "model": "create:block/belt_tunnel/t_left", "y": 90 },
|
||||
"shape=t_right,axis=z": { "model": "create:block/belt_tunnel/t_right", "y": 90 },
|
||||
"shape=cross,axis=z": { "model": "create:block/belt_tunnel/cross", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,20 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/cart_assembler"
|
||||
},
|
||||
"variants": {
|
||||
"shape": {
|
||||
"north_south": { },
|
||||
"east_west": { "y": 90 }
|
||||
},
|
||||
"powered": {
|
||||
"false": { },
|
||||
"true": {
|
||||
"textures": {
|
||||
"clutch_off": "create:block/clutch_on"
|
||||
}
|
||||
}
|
||||
}
|
||||
"shape=north_south,powered=false": { "model": "create:block/cart_assembler" },
|
||||
"shape=east_west,powered=false": { "model": "create:block/cart_assembler", "y": 90 },
|
||||
"shape=north_south,powered=true": { "model": "create:block/cart_assembler_powered" },
|
||||
"shape=east_west,powered=true": { "model": "create:block/cart_assembler_powered", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/bearing/clockwork"
|
||||
},
|
||||
"variants": {
|
||||
"facing" : {
|
||||
"up" : { },
|
||||
"down" : { "x": 180 },
|
||||
"north" : { "x": 90 },
|
||||
"east" : { "x": 90, "y": 90 },
|
||||
"south" : { "x": 90, "y": 180 },
|
||||
"west" : { "x": 90, "y": 270 }
|
||||
}
|
||||
"facing=up" : { "model": "create:block/bearing/clockwork" },
|
||||
"facing=down" : { "model": "create:block/bearing/clockwork", "x": 180 },
|
||||
"facing=north" : { "model": "create:block/bearing/clockwork", "x": 90 },
|
||||
"facing=east" : { "model": "create:block/bearing/clockwork", "x": 90, "y": 90 },
|
||||
"facing=south" : { "model": "create:block/bearing/clockwork", "x": 90, "y": 180 },
|
||||
"facing=west" : { "model": "create:block/bearing/clockwork", "x": 90, "y": 270 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered" : {
|
||||
"true": { "model": "create:block/clutch_on" },
|
||||
"false": { "model": "create:block/clutch_off" }
|
||||
},
|
||||
"axis": {
|
||||
"y": { "x": 90 },
|
||||
"x": { "y": 90 },
|
||||
"z": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"powered=true,axis=x": { "model": "create:block/clutch_on", "y": 90 },
|
||||
"powered=true,axis=y": { "model": "create:block/clutch_on", "x": 90 },
|
||||
"powered=true,axis=z": { "model": "create:block/clutch_on" },
|
||||
"powered=false,axis=x": { "model": "create:block/clutch_off", "y": 90 },
|
||||
"powered=false,axis=y": { "model": "create:block/clutch_off", "x": 90 },
|
||||
"powered=false,axis=z": { "model": "create:block/clutch_off" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,15 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"age": {
|
||||
"0": { "model": "create:block/cocoa_log_0" },
|
||||
"1": { "model": "create:block/cocoa_log_1" },
|
||||
"2": { "model": "create:block/cocoa_log_2" }
|
||||
},
|
||||
"axis": {
|
||||
"y": {},
|
||||
"x": { "x": 90, "y": 90 },
|
||||
"z": { "x": 90 }
|
||||
}
|
||||
"age=0,axis=y": { "model": "create:block/cocoa_log_0" },
|
||||
"age=1,axis=y": { "model": "create:block/cocoa_log_1" },
|
||||
"age=2,axis=y": { "model": "create:block/cocoa_log_2" },
|
||||
"age=0,axis=x": { "model": "create:block/cocoa_log_0", "x": 90, "y": 90 },
|
||||
"age=1,axis=x": { "model": "create:block/cocoa_log_1", "x": 90, "y": 90 },
|
||||
"age=2,axis=x": { "model": "create:block/cocoa_log_2", "x": 90, "y": 90 },
|
||||
"age=0,axis=z": { "model": "create:block/cocoa_log_0", "x": 90 },
|
||||
"age=1,axis=z": { "model": "create:block/cocoa_log_1", "x": 90 },
|
||||
"age=2,axis=z": { "model": "create:block/cocoa_log_2", "x": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,17 +1,16 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered": {
|
||||
"true": { "model": "create:block/contact_powered" },
|
||||
"false": { "model": "create:block/contact" }
|
||||
},
|
||||
"facing": {
|
||||
"north": { "x": 90 },
|
||||
"south": { "x": 90, "y": 180 },
|
||||
"west": { "x": 90, "y": 270 },
|
||||
"up": { },
|
||||
"down": { "x": 180 },
|
||||
"east": { "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"powered=true,facing=north": { "model": "create:block/contact_powered", "x": 90 },
|
||||
"powered=true,facing=east": { "model": "create:block/contact_powered", "x": 90, "y": 90 },
|
||||
"powered=true,facing=south": { "model": "create:block/contact_powered", "x": 90, "y": 180 },
|
||||
"powered=true,facing=west": { "model": "create:block/contact_powered", "x": 90, "y": 270 },
|
||||
"powered=true,facing=up": { "model": "create:block/contact_powered" },
|
||||
"powered=true,facing=down": { "model": "create:block/contact_powered", "x": 180 },
|
||||
"powered=false,facing=north": { "model": "create:block/contact", "x": 90 },
|
||||
"powered=false,facing=east": { "model": "create:block/contact", "x": 90, "y": 90 },
|
||||
"powered=false,facing=south": { "model": "create:block/contact", "x": 90, "y": 180 },
|
||||
"powered=false,facing=west": { "model": "create:block/contact", "x": 90, "y": 270 },
|
||||
"powered=false,facing=up": { "model": "create:block/contact" },
|
||||
"powered=false,facing=down": { "model": "create:block/contact", "x": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"oxidization": {
|
||||
"0": { "model": "create:block/oxidized/copper_block/0" },
|
||||
"1": { "model": "create:block/oxidized/copper_block/1" },
|
||||
"2": { "model": "create:block/oxidized/copper_block/2" },
|
||||
"3": { "model": "create:block/oxidized/copper_block/3" },
|
||||
"4": { "model": "create:block/oxidized/copper_block/4" },
|
||||
"5": { "model": "create:block/oxidized/copper_block/5" },
|
||||
"6": { "model": "create:block/oxidized/copper_block/6" },
|
||||
"7": { "model": "create:block/oxidized/copper_block/7" }
|
||||
}
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"oxidization": {
|
||||
"0": { "model": "create:block/oxidized/copper_ore/0" },
|
||||
"1": { "model": "create:block/oxidized/copper_ore/1" },
|
||||
"2": { "model": "create:block/oxidized/copper_ore/2" },
|
||||
"3": { "model": "create:block/oxidized/copper_ore/3" },
|
||||
"4": { "model": "create:block/oxidized/copper_ore/4" },
|
||||
"5": { "model": "create:block/oxidized/copper_ore/5" },
|
||||
"6": { "model": "create:block/oxidized/copper_ore/6" },
|
||||
"7": { "model": "create:block/oxidized/copper_ore/7" }
|
||||
}
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"oxidization": {
|
||||
"0": { "model": "create:block/oxidized/copper_shingles/0" },
|
||||
"1": { "model": "create:block/oxidized/copper_shingles/1" },
|
||||
"2": { "model": "create:block/oxidized/copper_shingles/2" },
|
||||
"3": { "model": "create:block/oxidized/copper_shingles/3" },
|
||||
"4": { "model": "create:block/oxidized/copper_shingles/4" },
|
||||
"5": { "model": "create:block/oxidized/copper_shingles/5" },
|
||||
"6": { "model": "create:block/oxidized/copper_shingles/6" },
|
||||
"7": { "model": "create:block/oxidized/copper_shingles/7" }
|
||||
}
|
||||
"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" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/cuckoo_clock/casing"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 90 },
|
||||
"south": { "y": 270 },
|
||||
"east": { "y": 180 },
|
||||
"west": { "y": 0 }
|
||||
"facing=north": { "model": "create:block/cuckoo_clock/casing", "y": 90 },
|
||||
"facing=south": { "model": "create:block/cuckoo_clock/casing", "y": 270 },
|
||||
"facing=east": { "model": "create:block/cuckoo_clock/casing", "y": 180 },
|
||||
"facing=west": { "model": "create:block/cuckoo_clock/casing", "y": 0 }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/dark_scoria_bricks_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/dark_scoria_bricks_slab" },
|
||||
"double": { "model":"create:block/palettes/dark_scoria_bricks" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/dark_scoria_bricks_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/dark_scoria_bricks_slab" },
|
||||
"type=double": { "model":"create:block/palettes/dark_scoria_bricks" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/dark_scoria_tiles_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/dark_scoria_tiles_slab" },
|
||||
"double": { "model":"create:block/palettes/dark_scoria_tiles" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/dark_scoria_tiles_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/dark_scoria_tiles_slab" },
|
||||
"type=double": { "model":"create:block/palettes/dark_scoria_tiles" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"facing=east,axis_along_first=false": { "model": "create:block/deployer/horizontal", "x": 0, "y": 270 },
|
||||
"facing=west,axis_along_first=false": { "model": "create:block/deployer/horizontal", "x": 0, "y": 90 },
|
||||
|
@ -7,7 +6,7 @@
|
|||
"facing=down,axis_along_first=false": { "model": "create:block/deployer/horizontal", "x": 270, "y": 90 },
|
||||
"facing=south,axis_along_first=false": { "model": "create:block/deployer/vertical", "x": 0, "y": 0 },
|
||||
"facing=north,axis_along_first=false": { "model": "create:block/deployer/vertical", "x": 0, "y": 180 },
|
||||
|
||||
|
||||
"facing=east,axis_along_first=true": { "model": "create:block/deployer/vertical", "x": 0, "y": 270 },
|
||||
"facing=west,axis_along_first=true": { "model": "create:block/deployer/vertical", "x": 0, "y": 90 },
|
||||
"facing=up,axis_along_first=true": { "model": "create:block/deployer/horizontal", "x": 90, "y": 0 },
|
||||
|
@ -15,4 +14,4 @@
|
|||
"facing=south,axis_along_first=true": { "model": "create:block/deployer/horizontal", "x": 0, "y": 0 },
|
||||
"facing=north,axis_along_first=true": { "model": "create:block/deployer/horizontal", "x": 0, "y": 180 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"variants": {
|
||||
"variants": {
|
||||
"": { "model": "create:block/palettes/diorite_layers" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/dolomite_bricks_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/dolomite_bricks_slab" },
|
||||
"double": { "model":"create:block/palettes/dolomite_bricks" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/dolomite_bricks_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/dolomite_bricks_slab" },
|
||||
"type=double": { "model":"create:block/palettes/dolomite_bricks" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/dolomite_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/dolomite_slab" },
|
||||
"double": { "model":"create:block/palettes/dolomite" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/dolomite_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/dolomite_slab" },
|
||||
"type=double": { "model":"create:block/palettes/dolomite" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/drill_base"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 180 },
|
||||
"south": { },
|
||||
"west": { "y": 90 },
|
||||
"up": { "x": 90 },
|
||||
"down": { "x": 270 },
|
||||
"east": { "y": 270 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/drill_base", "y": 180 },
|
||||
"facing=south": { "model": "create:block/drill_base" },
|
||||
"facing=west": { "model": "create:block/drill_base", "y": 90 },
|
||||
"facing=up": { "model": "create:block/drill_base", "x": 90 },
|
||||
"facing=down": { "model": "create:block/drill_base", "x": 270 },
|
||||
"facing=east": { "model": "create:block/drill_base", "y": 270 }
|
||||
}
|
||||
}
|
|
@ -1,16 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/encased_fan/casing"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 0 },
|
||||
"south": { "y": 180 },
|
||||
"west": { "y": 270 },
|
||||
"up": { "x": 270 },
|
||||
"down": { "x": 90 },
|
||||
"east": { "y": 90 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/encased_fan/casing", "y": 0 },
|
||||
"facing=south": { "model": "create:block/encased_fan/casing", "y": 180 },
|
||||
"facing=west": { "model": "create:block/encased_fan/casing", "y": 270 },
|
||||
"facing=up": { "model": "create:block/encased_fan/casing", "x": 270 },
|
||||
"facing=down": { "model": "create:block/encased_fan/casing", "x": 90 },
|
||||
"facing=east": { "model": "create:block/encased_fan/casing", "y": 90 }
|
||||
}
|
||||
}
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered": {
|
||||
"true": { "model": "create:block/extractor/horizontal_powered" },
|
||||
"false": { "model": "create:block/extractor/horizontal" }
|
||||
},
|
||||
"facing": {
|
||||
"south": { "y": 180 },
|
||||
"east": { "y": 90 },
|
||||
"north": { "y": 0 },
|
||||
"west": { "y": 270 }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"powered=true,facing=north": { "model": "create:block/extractor/horizontal_powered", "y": 180 },
|
||||
"powered=true,facing=east": { "model": "create:block/extractor/horizontal_powered", "y": 90 },
|
||||
"powered=true,facing=south": { "model": "create:block/extractor/horizontal_powered", "y": 0 },
|
||||
"powered=true,facing=west": { "model": "create:block/extractor/horizontal_powered", "y": 270 },
|
||||
"powered=false,facing=north": { "model": "create:block/extractor/horizontal", "y": 180 },
|
||||
"powered=false,facing=east": { "model": "create:block/extractor/horizontal", "y": 90 },
|
||||
"powered=false,facing=south": { "model": "create:block/extractor/horizontal", "y": 0 },
|
||||
"powered=false,facing=west": { "model": "create:block/extractor/horizontal", "y": 270 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,24 +1,23 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered=false,powering=false,facing=north": { "model": "create:block/repeaters/flexpeater", "y": 180 },
|
||||
"powered=false,powering=false,facing=east": { "model": "create:block/repeaters/flexpeater", "y": 270 },
|
||||
"powered=false,powering=false,facing=south": { "model": "create:block/repeaters/flexpeater", "y": 0 },
|
||||
"powered=false,powering=false,facing=west": { "model": "create:block/repeaters/flexpeater", "y": 90 },
|
||||
|
||||
|
||||
"powered=true,powering=false,facing=north": { "model": "create:block/repeaters/flexpeater_powered", "y": 180 },
|
||||
"powered=true,powering=false,facing=east": { "model": "create:block/repeaters/flexpeater_powered", "y": 270 },
|
||||
"powered=true,powering=false,facing=south": { "model": "create:block/repeaters/flexpeater_powered", "y": 0 },
|
||||
"powered=true,powering=false,facing=west": { "model": "create:block/repeaters/flexpeater_powered", "y": 90 },
|
||||
|
||||
|
||||
"powered=false,powering=true,facing=north": { "model": "create:block/repeaters/flexpeater_powering", "y": 180 },
|
||||
"powered=false,powering=true,facing=east": { "model": "create:block/repeaters/flexpeater_powering", "y": 270 },
|
||||
"powered=false,powering=true,facing=south": { "model": "create:block/repeaters/flexpeater_powering", "y": 0 },
|
||||
"powered=false,powering=true,facing=west": { "model": "create:block/repeaters/flexpeater_powering", "y": 90 },
|
||||
|
||||
|
||||
"powered=true,powering=true,facing=north": { "model": "create:block/repeaters/flexpeater_powered_powering", "y": 180 },
|
||||
"powered=true,powering=true,facing=east": { "model": "create:block/repeaters/flexpeater_powered_powering", "y": 270 },
|
||||
"powered=true,powering=true,facing=south": { "model": "create:block/repeaters/flexpeater_powered_powering", "y": 0 },
|
||||
"powered=true,powering=true,facing=west": { "model": "create:block/repeaters/flexpeater_powered_powering", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,24 +1,23 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered=false,powering=false,facing=north": { "model": "create:block/repeaters/flexpulsepeater", "y": 180 },
|
||||
"powered=false,powering=false,facing=east": { "model": "create:block/repeaters/flexpulsepeater", "y": 270 },
|
||||
"powered=false,powering=false,facing=south": { "model": "create:block/repeaters/flexpulsepeater", "y": 0 },
|
||||
"powered=false,powering=false,facing=west": { "model": "create:block/repeaters/flexpulsepeater", "y": 90 },
|
||||
|
||||
|
||||
"powered=true,powering=false,facing=north": { "model": "create:block/repeaters/flexpulsepeater_powered", "y": 180 },
|
||||
"powered=true,powering=false,facing=east": { "model": "create:block/repeaters/flexpulsepeater_powered", "y": 270 },
|
||||
"powered=true,powering=false,facing=south": { "model": "create:block/repeaters/flexpulsepeater_powered", "y": 0 },
|
||||
"powered=true,powering=false,facing=west": { "model": "create:block/repeaters/flexpulsepeater_powered", "y": 90 },
|
||||
|
||||
|
||||
"powered=false,powering=true,facing=north": { "model": "create:block/repeaters/flexpulsepeater_powering", "y": 180 },
|
||||
"powered=false,powering=true,facing=east": { "model": "create:block/repeaters/flexpulsepeater_powering", "y": 270 },
|
||||
"powered=false,powering=true,facing=south": { "model": "create:block/repeaters/flexpulsepeater_powering", "y": 0 },
|
||||
"powered=false,powering=true,facing=west": { "model": "create:block/repeaters/flexpulsepeater_powering", "y": 90 },
|
||||
|
||||
|
||||
"powered=true,powering=true,facing=north": { "model": "create:block/repeaters/flexpulsepeater_powered_powering", "y": 180 },
|
||||
"powered=true,powering=true,facing=east": { "model": "create:block/repeaters/flexpulsepeater_powered_powering", "y": 270 },
|
||||
"powered=true,powering=true,facing=south": { "model": "create:block/repeaters/flexpulsepeater_powered_powering", "y": 0 },
|
||||
"powered=true,powering=true,facing=west": { "model": "create:block/repeaters/flexpulsepeater_powered_powering", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,18 +1,16 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 270 },
|
||||
"south": { "y": 90 },
|
||||
"east": { "y": 0 },
|
||||
"west": { "y": 180 }
|
||||
},
|
||||
"connection": {
|
||||
"none": { "model": "create:block/flywheel/casing_no_connection" },
|
||||
"left": { "model": "create:block/flywheel/casing_left" },
|
||||
"right": { "model": "create:block/flywheel/casing_right" }
|
||||
"connection=none,facing=north": { "model": "create:block/flywheel/casing_no_connection", "y": 270 },
|
||||
"connection=none,facing=south": { "model": "create:block/flywheel/casing_no_connection", "y": 90 },
|
||||
"connection=none,facing=east": { "model": "create:block/flywheel/casing_no_connection", "y": 0 },
|
||||
"connection=none,facing=west": { "model": "create:block/flywheel/casing_no_connection", "y": 180 },
|
||||
"connection=left,facing=north": { "model": "create:block/flywheel/casing_left", "y": 270 },
|
||||
"connection=left,facing=south": { "model": "create:block/flywheel/casing_left", "y": 90 },
|
||||
"connection=left,facing=east": { "model": "create:block/flywheel/casing_left", "y": 0 },
|
||||
"connection=left,facing=west": { "model": "create:block/flywheel/casing_left", "y": 180 },
|
||||
"connection=right,facing=north": { "model": "create:block/flywheel/casing_right", "y": 270 },
|
||||
"connection=right,facing=south": { "model": "create:block/flywheel/casing_right", "y": 90 },
|
||||
"connection=right,facing=east": { "model": "create:block/flywheel/casing_right", "y": 0 },
|
||||
"connection=right,facing=west": { "model": "create:block/flywheel/casing_right", "y": 180 }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/furnace_engine/body"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 180 },
|
||||
"south": { "y": 0 },
|
||||
"west": { "y": 90 },
|
||||
"east": { "y": 270 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/furnace_engine/body", "y": 180 },
|
||||
"facing=south": { "model": "create:block/furnace_engine/body", "y": 0 },
|
||||
"facing=west": { "model": "create:block/furnace_engine/body", "y": 90 },
|
||||
"facing=east": { "model": "create:block/furnace_engine/body", "y": 270 }
|
||||
}
|
||||
}
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/gabbro_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/gabbro_slab" },
|
||||
"double": { "model":"create:block/palettes/gabbro" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/gabbro_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/gabbro_slab" },
|
||||
"type=double": { "model":"create:block/palettes/gabbro" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
{
|
||||
"forgemarker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/gearbox"
|
||||
},
|
||||
"variants": {
|
||||
"variants": {
|
||||
"axis=y": { "model": "create:block/gearbox" },
|
||||
"axis=z": { "model": "create:block/gearbox", "x": 90 },
|
||||
"axis=x": { "model": "create:block/gearbox", "x": 90, "y": 90 }
|
||||
"axis=z": { "model": "create:block/gearbox", "x": 90 },
|
||||
"axis=x": { "model": "create:block/gearbox", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered" : {
|
||||
"true": { "model": "create:block/gearshift_on" },
|
||||
"false": { "model": "create:block/gearshift_off" }
|
||||
},
|
||||
"axis": {
|
||||
"x": { "y": 90 },
|
||||
"y": { "x": 90 },
|
||||
"z": {}
|
||||
}
|
||||
"variants": {
|
||||
"powered=true,axis=x": { "model": "create:block/gearshift_on", "y": 90 },
|
||||
"powered=true,axis=y": { "model": "create:block/gearshift_on", "x": 90 },
|
||||
"powered=true,axis=z": { "model": "create:block/gearshift_on" },
|
||||
"powered=false,axis=x": { "model": "create:block/gearshift_off", "y": 90 },
|
||||
"powered=false,axis=y": { "model": "create:block/gearshift_off", "x": 90 },
|
||||
"powered=false,axis=z": { "model": "create:block/gearshift_off" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/hand_crank/block"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 0 },
|
||||
"south": { "y": 180 },
|
||||
"west": { "y": 270 },
|
||||
"up": { "x": 270 },
|
||||
"down": { "x": 90 },
|
||||
"east": { "y": 90 }
|
||||
}
|
||||
"facing=north":{ "model": "create:block/hand_crank/block" },
|
||||
"facing=south":{ "model": "create:block/hand_crank/block", "y": 180 },
|
||||
"facing=west": { "model": "create:block/hand_crank/block", "y": 270 },
|
||||
"facing=up": { "model": "create:block/hand_crank/block", "x": 270 },
|
||||
"facing=down": { "model": "create:block/hand_crank/block", "x": 90 },
|
||||
"facing=east": { "model": "create:block/hand_crank/block", "y": 90 }
|
||||
}
|
||||
}
|
|
@ -1,14 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/harvester"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 180 },
|
||||
"south": {},
|
||||
"east": { "y": 270 },
|
||||
"west": { "y": 90 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/harvester", "y": 180 },
|
||||
"facing=south": { "model": "create:block/harvester" },
|
||||
"facing=east": { "model": "create:block/harvester", "y": 270 },
|
||||
"facing=west": { "model": "create:block/harvester", "y": 90 }
|
||||
}
|
||||
}
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/indented_gabbro_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/indented_gabbro_slab" },
|
||||
"double": { "model":"create:block/palettes/indented_gabbro" }
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/indented_gabbro_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/indented_gabbro_slab" },
|
||||
"type=double": { "model":"create:block/palettes/indented_gabbro" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": { "model": "create:block/palettes/limesand" },
|
||||
"variants": {
|
||||
"": [{ "y": 0 }, { "y": 90 }, { "y": 180 }, { "y": 270 }]
|
||||
}
|
||||
"variants": {
|
||||
"": [
|
||||
{ "model": "create:block/palettes/limesand", "y": 0 },
|
||||
{ "model": "create:block/palettes/limesand", "y": 90 },
|
||||
{ "model": "create:block/palettes/limesand", "y": 180 },
|
||||
{ "model": "create:block/palettes/limesand", "y": 270 }
|
||||
]
|
||||
}
|
||||
}
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/limestone_bricks_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/limestone_bricks_slab" },
|
||||
"double": { "model":"create:block/palettes/limestone_bricks" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/limestone_bricks_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/limestone_bricks_slab" },
|
||||
"type=double": { "model":"create:block/palettes/limestone_bricks" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/limestone_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/limestone_slab" },
|
||||
"double": { "model":"create:block/palettes/limestone" }
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/limestone_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/limestone_slab" },
|
||||
"type=double": { "model":"create:block/palettes/limestone" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,15 +1,13 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered": {
|
||||
"true": { "model": "create:block/extractor/horizontal_wireless_powered" },
|
||||
"false": { "model": "create:block/extractor/horizontal_wireless" }
|
||||
},
|
||||
"facing": {
|
||||
"south": { "y": 180 },
|
||||
"east": { "y": 90 },
|
||||
"north": { "y": 0 },
|
||||
"west": { "y": 270 }
|
||||
}
|
||||
"powered=true,facing=south": { "model": "create:block/extractor/horizontal_wireless_powered", "y": 180 },
|
||||
"powered=true,facing=east": { "model": "create:block/extractor/horizontal_wireless_powered", "y": 90 },
|
||||
"powered=true,facing=north": { "model": "create:block/extractor/horizontal_wireless_powered", "y": 0 },
|
||||
"powered=true,facing=west": { "model": "create:block/extractor/horizontal_wireless_powered", "y": 270 },
|
||||
|
||||
"powered=false,facing=south": { "model": "create:block/extractor/horizontal_wireless", "y": 180 },
|
||||
"powered=false,facing=east": { "model": "create:block/extractor/horizontal_wireless", "y": 90 },
|
||||
"powered=false,facing=north": { "model": "create:block/extractor/horizontal_wireless", "y": 0 },
|
||||
"powered=false,facing=west": { "model": "create:block/extractor/horizontal_wireless", "y": 270 }
|
||||
}
|
||||
}
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered": {
|
||||
"true": { "model": "create:block/transposer/linked_powered" },
|
||||
"false": { "model": "create:block/transposer/linked" }
|
||||
},
|
||||
"facing": {
|
||||
"north": { "y": 0 },
|
||||
"south": { "y": 180 },
|
||||
"west": { "y": 270 },
|
||||
"east": { "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"powered=true,facing=north": { "model": "create:block/transposer/linked_powered", "y": 0 },
|
||||
"powered=true,facing=south": { "model": "create:block/transposer/linked_powered", "y": 180 },
|
||||
"powered=true,facing=west": { "model": "create:block/transposer/linked_powered", "y": 270 },
|
||||
"powered=true,facing=east": { "model": "create:block/transposer/linked_powered", "y": 90 },
|
||||
"powered=false,facing=north": { "model": "create:block/transposer/linked", "y": 0 },
|
||||
"powered=false,facing=south": { "model": "create:block/transposer/linked", "y": 180 },
|
||||
"powered=false,facing=west": { "model": "create:block/transposer/linked", "y": 270 },
|
||||
"powered=false,facing=east": { "model": "create:block/transposer/linked", "y": 90 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,23 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/logistical_controller"
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"storage": { },
|
||||
"calculation": { },
|
||||
"supply": { },
|
||||
"transactions": { },
|
||||
"request": { }
|
||||
},
|
||||
"facing": {
|
||||
"north": { "y": 180 },
|
||||
"south": { },
|
||||
"west": { "y": 90 },
|
||||
"up": { "x": 90 },
|
||||
"down": { "x": 270 },
|
||||
"east": { "y": 270 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/logistical_controller", "y": 180 },
|
||||
"facing=south": { "model": "create:block/logistical_controller" },
|
||||
"facing=west": { "model": "create:block/logistical_controller", "y": 90 },
|
||||
"facing=up": { "model": "create:block/logistical_controller", "x": 90 },
|
||||
"facing=down": { "model": "create:block/logistical_controller", "x": 270 },
|
||||
"facing=east": { "model": "create:block/logistical_controller", "y": 270 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/logistical_index"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 180 },
|
||||
"south": { },
|
||||
"east": { "y": 270 },
|
||||
"west": { "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=north": { "model": "create:block/logistical_index", "y": 180 },
|
||||
"facing=south": { "model": "create:block/logistical_index" },
|
||||
"facing=east": { "model": "create:block/logistical_index", "y": 270 },
|
||||
"facing=west": { "model": "create:block/logistical_index", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/logisticians_table"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 180 },
|
||||
"south": { },
|
||||
"east": { "y": 270 },
|
||||
"west": { "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=north": { "model": "create:block/logisticians_table", "y": 180 },
|
||||
"facing=south": { "model": "create:block/logisticians_table" },
|
||||
"facing=east": { "model": "create:block/logisticians_table", "y": 270 },
|
||||
"facing=west": { "model": "create:block/logisticians_table", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/bearing/regular"
|
||||
},
|
||||
"variants": {
|
||||
"facing" : {
|
||||
"up" : { },
|
||||
"down" : { "x": 180 },
|
||||
"north" : { "x": 90 },
|
||||
"east" : { "x": 90, "y": 90 },
|
||||
"south" : { "x": 90, "y": 180 },
|
||||
"west" : { "x": 90, "y": 270 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=up" : { "model": "create:block/bearing/regular" },
|
||||
"facing=down" : { "model": "create:block/bearing/regular", "x": 180 },
|
||||
"facing=north" : { "model": "create:block/bearing/regular", "x": 90 },
|
||||
"facing=east" : { "model": "create:block/bearing/regular", "x": 90, "y": 90 },
|
||||
"facing=south" : { "model": "create:block/bearing/regular", "x": 90, "y": 180 },
|
||||
"facing=west" : { "model": "create:block/bearing/regular", "x": 90, "y": 270 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,20 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/crafter/casing"
|
||||
},
|
||||
"variants": {
|
||||
"pointing": {
|
||||
"up": {},
|
||||
"left": {},
|
||||
"down": {},
|
||||
"right": {}
|
||||
},
|
||||
"facing": {
|
||||
"north": { "y": 90 },
|
||||
"south": { "y": 270 },
|
||||
"west": { "y": 0 },
|
||||
"east": { "y": 180 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/crafter/casing", "y": 90 },
|
||||
"facing=south": { "model": "create:block/crafter/casing", "y": 270 },
|
||||
"facing=west": { "model": "create:block/crafter/casing", "y": 0 },
|
||||
"facing=east": { "model": "create:block/crafter/casing", "y": 180 }
|
||||
}
|
||||
}
|
|
@ -1,21 +1,17 @@
|
|||
{
|
||||
"forgemarker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/mechanical_piston_head"
|
||||
},
|
||||
"variants": {
|
||||
"type=normal,facing=south": { "model": "create:block/mechanical_piston_head", "x": 90, "y": 180 },
|
||||
"variants": {
|
||||
"type=normal,facing=south": { "model": "create:block/mechanical_piston_head", "x": 90, "y": 180 },
|
||||
"type=normal,facing=north": { "model": "create:block/mechanical_piston_head", "x": 90 },
|
||||
"type=normal,facing=west": { "model": "create:block/mechanical_piston_head", "x": 90, "y": 270 },
|
||||
"type=normal,facing=west": { "model": "create:block/mechanical_piston_head", "x": 90, "y": 270 },
|
||||
"type=normal,facing=up": { "model": "create:block/mechanical_piston_head" },
|
||||
"type=normal,facing=down": { "model": "create:block/mechanical_piston_head", "x": 180 },
|
||||
"type=normal,facing=east": { "model": "create:block/mechanical_piston_head", "x": 90, "y": 90 },
|
||||
|
||||
"type=normal,facing=down": { "model": "create:block/mechanical_piston_head", "x": 180 },
|
||||
"type=normal,facing=east": { "model": "create:block/mechanical_piston_head", "x": 90, "y": 90 },
|
||||
|
||||
"type=sticky,facing=south": { "model": "create:block/mechanical_piston_head_sticky", "x": 90, "y": 180 },
|
||||
"type=sticky,facing=north": { "model": "create:block/mechanical_piston_head_sticky", "x": 90 },
|
||||
"type=sticky,facing=west": { "model": "create:block/mechanical_piston_head_sticky", "x": 90, "y": 270 },
|
||||
"type=sticky,facing=west": { "model": "create:block/mechanical_piston_head_sticky", "x": 90, "y": 270 },
|
||||
"type=sticky,facing=up": { "model": "create:block/mechanical_piston_head_sticky" },
|
||||
"type=sticky,facing=down": { "model": "create:block/mechanical_piston_head_sticky", "x": 180 },
|
||||
"type=sticky,facing=east": { "model": "create:block/mechanical_piston_head_sticky", "x": 90, "y": 90 }
|
||||
"type=sticky,facing=down": { "model": "create:block/mechanical_piston_head_sticky", "x": 180 },
|
||||
"type=sticky,facing=east": { "model": "create:block/mechanical_piston_head_sticky", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,12 +1,6 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/minecart_anchor"
|
||||
},
|
||||
"variants": {
|
||||
"axis": {
|
||||
"x": { "y": 90 },
|
||||
"z": { }
|
||||
}
|
||||
"variants": {
|
||||
"axis=x": { "model": "create:block/minecart_anchor", "y": 90 },
|
||||
"axis=z": { "model": "create:block/minecart_anchor" }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/cuckoo_clock/casing"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 90 },
|
||||
"south": { "y": 270 },
|
||||
"east": { "y": 180 },
|
||||
"west": { "y": 0 }
|
||||
"facing=north": { "model": "create:block/cuckoo_clock/casing", "y": 90 },
|
||||
"facing=south": { "model": "create:block/cuckoo_clock/casing", "y": 270 },
|
||||
"facing=east": { "model": "create:block/cuckoo_clock/casing", "y": 180 },
|
||||
"facing=west": { "model": "create:block/cuckoo_clock/casing", "y": 0 }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/nozzle/block"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 0 },
|
||||
"south": { "y": 180 },
|
||||
"west": { "y": 270 },
|
||||
"up": { "x": 270 },
|
||||
"down": { "x": 90 },
|
||||
"east": { "y": 90 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/nozzle/block", "y": 0 },
|
||||
"facing=south": { "model": "create:block/nozzle/block", "y": 180 },
|
||||
"facing=west": { "model": "create:block/nozzle/block", "y": 270 },
|
||||
"facing=up": { "model": "create:block/nozzle/block", "x": 270 },
|
||||
"facing=down": { "model": "create:block/nozzle/block", "x": 90 },
|
||||
"facing=east": { "model": "create:block/nozzle/block", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/package_funnel"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 180 },
|
||||
"south": { },
|
||||
"west": { "y": 90 },
|
||||
"up": { "model": "create:block/package_funnel_vertical", "x": 90 },
|
||||
"down": { "model": "create:block/package_funnel_vertical", "x": 270 },
|
||||
"east": { "y": 270 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/package_funnel", "y": 180 },
|
||||
"facing=south": { "model": "create:block/package_funnel" },
|
||||
"facing=west": { "model": "create:block/package_funnel", "y": 90 },
|
||||
"facing=up": { "model": "create:block/package_funnel_vertical", "x": 90 },
|
||||
"facing=down": { "model": "create:block/package_funnel_vertical", "x": 270 },
|
||||
"facing=east": { "model": "create:block/package_funnel", "y": 270 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/paved_gabbro_bricks_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/paved_gabbro_bricks_slab" },
|
||||
"double": { "model":"create:block/palettes/paved_gabbro_bricks" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/paved_gabbro_bricks_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/paved_gabbro_bricks_slab" },
|
||||
"type=double": { "model":"create:block/palettes/paved_gabbro_bricks" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"variants": {
|
||||
"variants": {
|
||||
"facing=up": { "model": "create:block/mechanical_piston/pole" },
|
||||
"facing=down": { "model": "create:block/mechanical_piston/pole" , "x": 180 },
|
||||
"facing=south": { "model": "create:block/mechanical_piston/pole", "x": 90, "y": 180 },
|
||||
"facing=north": { "model": "create:block/mechanical_piston/pole", "x": 90, "y": 0 },
|
||||
"facing=east": { "model": "create:block/mechanical_piston/pole", "x": 90, "y": 90 },
|
||||
"facing=west": { "model": "create:block/mechanical_piston/pole", "x": 90, "y": 270 }
|
||||
"facing=south": { "model": "create:block/mechanical_piston/pole", "x": 90, "y": 180 },
|
||||
"facing=north": { "model": "create:block/mechanical_piston/pole", "x": 90, "y": 0 },
|
||||
"facing=east": { "model": "create:block/mechanical_piston/pole", "x": 90, "y": 90 },
|
||||
"facing=west": { "model": "create:block/mechanical_piston/pole", "x": 90, "y": 270 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/plough"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "y": 180 },
|
||||
"south": {},
|
||||
"east": { "y": 270 },
|
||||
"west": { "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=north": { "model": "create:block/plough", "y": 180 },
|
||||
"facing=south": { "model": "create:block/plough" },
|
||||
"facing=east": { "model": "create:block/plough", "y": 270 },
|
||||
"facing=west": { "model": "create:block/plough", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/polished_limestone_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/polished_limestone_slab" },
|
||||
"double": { "model":"create:block/palettes/polished_limestone_double_slab" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/polished_limestone_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/polished_limestone_slab" },
|
||||
"type=double": { "model":"create:block/palettes/polished_limestone_double_slab" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/polished_scoria_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/polished_scoria_slab" },
|
||||
"double": { "model":"create:block/palettes/polished_scoria_double_slab" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/polished_scoria_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/polished_scoria_slab" },
|
||||
"type=double": { "model":"create:block/palettes/polished_scoria_double_slab" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/polished_weathered_limestone_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/polished_weathered_limestone_slab" },
|
||||
"double": { "model":"create:block/palettes/polished_weathered_limestone_double_slab" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/polished_weathered_limestone_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/polished_weathered_limestone_slab" },
|
||||
"type=double": { "model":"create:block/palettes/polished_weathered_limestone_double_slab" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,10 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/portable_storage_interface"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "x": 90 },
|
||||
"south": { "x": 90, "y": 180 },
|
||||
"west": { "x": 90, "y": 270 },
|
||||
"up": { },
|
||||
"down": { "x": 180 },
|
||||
"east": { "x": 90, "y": 90 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/portable_storage_interface", "x": 90 },
|
||||
"facing=south": { "model": "create:block/portable_storage_interface", "x": 90, "y": 180 },
|
||||
"facing=west": { "model": "create:block/portable_storage_interface", "x": 90, "y": 270 },
|
||||
"facing=up": { "model": "create:block/portable_storage_interface" },
|
||||
"facing=down": { "model": "create:block/portable_storage_interface", "x": 180 },
|
||||
"facing=east": { "model": "create:block/portable_storage_interface", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powering": {
|
||||
"true": { "model": "create:block/repeaters/redstone_latch_powered" },
|
||||
"false": { "model": "create:block/repeaters/redstone_latch" }
|
||||
},
|
||||
"facing": {
|
||||
"north": { "y": 180 },
|
||||
"east": { "y": 270 },
|
||||
"south": { "y": 0 },
|
||||
"west": { "y": 90 }
|
||||
}
|
||||
"powering=true,facing=north": { "model": "create:block/repeaters/redstone_latch_powered", "y": 180 },
|
||||
"powering=true,facing=east": { "model": "create:block/repeaters/redstone_latch_powered", "y": 270 },
|
||||
"powering=true,facing=south": { "model": "create:block/repeaters/redstone_latch_powered", "y": 0 },
|
||||
"powering=true,facing=west": { "model": "create:block/repeaters/redstone_latch_powered", "y": 90 },
|
||||
"powering=false,facing=north": { "model": "create:block/repeaters/redstone_latch", "y": 180 },
|
||||
"powering=false,facing=east": { "model": "create:block/repeaters/redstone_latch", "y": 270 },
|
||||
"powering=false,facing=south": { "model": "create:block/repeaters/redstone_latch", "y": 0 },
|
||||
"powering=false,facing=west": { "model": "create:block/repeaters/redstone_latch", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,12 +1,6 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/pulley/casing"
|
||||
},
|
||||
"variants": {
|
||||
"axis": {
|
||||
"z": { },
|
||||
"x": { "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"axis=z": { "model": "create:block/pulley/casing" },
|
||||
"axis=x": { "model": "create:block/pulley/casing", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,12 +1,6 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/rotation_speed_controller"
|
||||
},
|
||||
"variants": {
|
||||
"axis": {
|
||||
"z": { },
|
||||
"x": { "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"axis=z": { "model": "create:block/rotation_speed_controller" },
|
||||
"axis=x": { "model": "create:block/rotation_speed_controller", "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/scoria_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/scoria_slab" },
|
||||
"double": { "model":"create:block/palettes/scoria" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/scoria_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/scoria_slab" },
|
||||
"type=double": { "model":"create:block/palettes/scoria" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"facing=east,axis_along_first=false": { "model": "create:block/gauge/base_wall", "x": 0, "y": 0 },
|
||||
"facing=west,axis_along_first=false": { "model": "create:block/gauge/base_wall", "x": 0, "y": 180 },
|
||||
|
@ -7,12 +6,12 @@
|
|||
"facing=down,axis_along_first=false": { "model": "create:block/gauge/base", "x": 180, "y": 0 },
|
||||
"facing=south,axis_along_first=false": { "model": "create:block/gauge/base_wall", "x": 90, "y": 90 },
|
||||
"facing=north,axis_along_first=false": { "model": "create:block/gauge/base_wall", "x": 90, "y": 270 },
|
||||
|
||||
"facing=east,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 90, "y": 0 },
|
||||
|
||||
"facing=east,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 90, "y": 0 },
|
||||
"facing=west,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 90, "y": 180 },
|
||||
"facing=up,axis_along_first=true": { "model": "create:block/gauge/base", "x": 0, "y": 90 },
|
||||
"facing=down,axis_along_first=true": { "model": "create:block/gauge/base", "x": 180, "y": 90 },
|
||||
"facing=south,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 0, "y": 90 },
|
||||
"facing=north,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 0, "y": 270 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
"forgemarker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/mechanical_piston_sticky"
|
||||
},
|
||||
"variants": {
|
||||
"axis_along_first=false,state=retracted,facing=south": { "model": "create:block/mechanical_piston_sticky", "x": 90, "y": 180 },
|
||||
"axis_along_first=false,state=retracted,facing=north": { "model": "create:block/mechanical_piston_sticky", "x": 90 },
|
||||
|
@ -10,36 +6,36 @@
|
|||
"axis_along_first=false,state=retracted,facing=up": { "model": "create:block/mechanical_piston_sticky" },
|
||||
"axis_along_first=false,state=retracted,facing=down": { "model": "create:block/mechanical_piston_sticky", "x": 180 },
|
||||
"axis_along_first=false,state=retracted,facing=east": { "model": "create:block/mechanical_piston/rotated_sticky", "x": 90, "y": 90 },
|
||||
|
||||
|
||||
"axis_along_first=false,state=moving,facing=south": { "model": "create:block/mechanical_piston/base", "x": 90, "y": 180 },
|
||||
"axis_along_first=false,state=moving,facing=north": { "model": "create:block/mechanical_piston/base", "x": 90 },
|
||||
"axis_along_first=false,state=moving,facing=west": { "model": "create:block/mechanical_piston/base_rotated", "x": 90, "y": 270 },
|
||||
"axis_along_first=false,state=moving,facing=up": { "model": "create:block/mechanical_piston/base" },
|
||||
"axis_along_first=false,state=moving,facing=down": { "model": "create:block/mechanical_piston/base", "x": 180 },
|
||||
"axis_along_first=false,state=moving,facing=east": { "model": "create:block/mechanical_piston/base_rotated", "x": 90, "y": 90 },
|
||||
|
||||
|
||||
"axis_along_first=false,state=extended,facing=south": { "model": "create:block/mechanical_piston/base_with_extension", "x": 90, "y": 180 },
|
||||
"axis_along_first=false,state=extended,facing=north": { "model": "create:block/mechanical_piston/base_with_extension", "x": 90 },
|
||||
"axis_along_first=false,state=extended,facing=west": { "model": "create:block/mechanical_piston/base_with_extension_rotated", "x": 90, "y": 270 },
|
||||
"axis_along_first=false,state=extended,facing=up": { "model": "create:block/mechanical_piston/base_with_extension" },
|
||||
"axis_along_first=false,state=extended,facing=down": { "model": "create:block/mechanical_piston/base_with_extension", "x": 180 },
|
||||
"axis_along_first=false,state=extended,facing=east": { "model": "create:block/mechanical_piston/base_with_extension_rotated", "x": 90, "y": 90 },
|
||||
|
||||
|
||||
|
||||
|
||||
"axis_along_first=true,state=retracted,facing=south": { "model": "create:block/mechanical_piston/rotated_sticky", "x": 90, "y": 180 },
|
||||
"axis_along_first=true,state=retracted,facing=north": { "model": "create:block/mechanical_piston/rotated_sticky", "x": 90 },
|
||||
"axis_along_first=true,state=retracted,facing=west": { "model": "create:block/mechanical_piston_sticky", "x": 90, "y": 270 },
|
||||
"axis_along_first=true,state=retracted,facing=up": { "model": "create:block/mechanical_piston/rotated_sticky" },
|
||||
"axis_along_first=true,state=retracted,facing=down": { "model": "create:block/mechanical_piston/rotated_sticky", "x": 180 },
|
||||
"axis_along_first=true,state=retracted,facing=east": { "model": "create:block/mechanical_piston_sticky", "x": 90, "y": 90 },
|
||||
|
||||
|
||||
"axis_along_first=true,state=moving,facing=south": { "model": "create:block/mechanical_piston/base_rotated", "x": 90, "y": 180 },
|
||||
"axis_along_first=true,state=moving,facing=north": { "model": "create:block/mechanical_piston/base_rotated", "x": 90 },
|
||||
"axis_along_first=true,state=moving,facing=west": { "model": "create:block/mechanical_piston/base", "x": 90, "y": 270 },
|
||||
"axis_along_first=true,state=moving,facing=up": { "model": "create:block/mechanical_piston/base_rotated" },
|
||||
"axis_along_first=true,state=moving,facing=down": { "model": "create:block/mechanical_piston/base_rotated", "x": 180 },
|
||||
"axis_along_first=true,state=moving,facing=east": { "model": "create:block/mechanical_piston/base", "x": 90, "y": 90 },
|
||||
|
||||
|
||||
"axis_along_first=true,state=extended,facing=south": { "model": "create:block/mechanical_piston/base_with_extension_rotated", "x": 90, "y": 180 },
|
||||
"axis_along_first=true,state=extended,facing=north": { "model": "create:block/mechanical_piston/base_with_extension_rotated", "x": 90 },
|
||||
"axis_along_first=true,state=extended,facing=west": { "model": "create:block/mechanical_piston/base_with_extension", "x": 90, "y": 270 },
|
||||
|
|
|
@ -1,23 +1,32 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/stockpile_switch"
|
||||
},
|
||||
"variants": {
|
||||
"indicator": {
|
||||
"0": { "model": "create:block/stockpile_switch" },
|
||||
"1": { "model": "create:block/stockpile_switch_1" },
|
||||
"2": { "model": "create:block/stockpile_switch_2" },
|
||||
"3": { "model": "create:block/stockpile_switch_3" },
|
||||
"4": { "model": "create:block/stockpile_switch_4" },
|
||||
"5": { "model": "create:block/stockpile_switch_5" },
|
||||
"6": { "model": "create:block/stockpile_switch_6" }
|
||||
},
|
||||
"facing": {
|
||||
"south": { "y": 270 },
|
||||
"east": { "y": 180 },
|
||||
"north": { "y": 90 },
|
||||
"west": { "y": 0 }
|
||||
}
|
||||
"indicator=0,facing=south": { "model": "create:block/stockpile_switch", "y": 270 },
|
||||
"indicator=1,facing=south": { "model": "create:block/stockpile_switch_1", "y": 270 },
|
||||
"indicator=2,facing=south": { "model": "create:block/stockpile_switch_2", "y": 270 },
|
||||
"indicator=3,facing=south": { "model": "create:block/stockpile_switch_3", "y": 270 },
|
||||
"indicator=4,facing=south": { "model": "create:block/stockpile_switch_4", "y": 270 },
|
||||
"indicator=5,facing=south": { "model": "create:block/stockpile_switch_5", "y": 270 },
|
||||
"indicator=6,facing=south": { "model": "create:block/stockpile_switch_6", "y": 270 },
|
||||
"indicator=0,facing=east": { "model": "create:block/stockpile_switch", "y": 180 },
|
||||
"indicator=1,facing=east": { "model": "create:block/stockpile_switch_1", "y": 180 },
|
||||
"indicator=2,facing=east": { "model": "create:block/stockpile_switch_2", "y": 180 },
|
||||
"indicator=3,facing=east": { "model": "create:block/stockpile_switch_3", "y": 180 },
|
||||
"indicator=4,facing=east": { "model": "create:block/stockpile_switch_4", "y": 180 },
|
||||
"indicator=5,facing=east": { "model": "create:block/stockpile_switch_5", "y": 180 },
|
||||
"indicator=6,facing=east": { "model": "create:block/stockpile_switch_6", "y": 180 },
|
||||
"indicator=0,facing=north": { "model": "create:block/stockpile_switch", "y": 90 },
|
||||
"indicator=1,facing=north": { "model": "create:block/stockpile_switch_1", "y": 90 },
|
||||
"indicator=2,facing=north": { "model": "create:block/stockpile_switch_2", "y": 90 },
|
||||
"indicator=3,facing=north": { "model": "create:block/stockpile_switch_3", "y": 90 },
|
||||
"indicator=4,facing=north": { "model": "create:block/stockpile_switch_4", "y": 90 },
|
||||
"indicator=5,facing=north": { "model": "create:block/stockpile_switch_5", "y": 90 },
|
||||
"indicator=6,facing=north": { "model": "create:block/stockpile_switch_6", "y": 90 },
|
||||
"indicator=0,facing=west": { "model": "create:block/stockpile_switch", "y": 0 },
|
||||
"indicator=1,facing=west": { "model": "create:block/stockpile_switch_1", "y": 0 },
|
||||
"indicator=2,facing=west": { "model": "create:block/stockpile_switch_2", "y": 0 },
|
||||
"indicator=3,facing=west": { "model": "create:block/stockpile_switch_3", "y": 0 },
|
||||
"indicator=4,facing=west": { "model": "create:block/stockpile_switch_4", "y": 0 },
|
||||
"indicator=5,facing=west": { "model": "create:block/stockpile_switch_5", "y": 0 },
|
||||
"indicator=6,facing=west": { "model": "create:block/stockpile_switch_6", "y": 0 }
|
||||
}
|
||||
}
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"facing=east,axis_along_first=false": { "model": "create:block/gauge/base_wall", "x": 0, "y": 0 },
|
||||
"facing=west,axis_along_first=false": { "model": "create:block/gauge/base_wall", "x": 0, "y": 180 },
|
||||
|
@ -7,12 +6,12 @@
|
|||
"facing=down,axis_along_first=false": { "model": "create:block/gauge/base", "x": 180, "y": 0 },
|
||||
"facing=south,axis_along_first=false": { "model": "create:block/gauge/base_wall", "x": 90, "y": 90 },
|
||||
"facing=north,axis_along_first=false": { "model": "create:block/gauge/base_wall", "x": 90, "y": 270 },
|
||||
|
||||
"facing=east,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 90, "y": 0 },
|
||||
|
||||
"facing=east,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 90, "y": 0 },
|
||||
"facing=west,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 90, "y": 180 },
|
||||
"facing=up,axis_along_first=true": { "model": "create:block/gauge/base", "x": 0, "y": 90 },
|
||||
"facing=down,axis_along_first=true": { "model": "create:block/gauge/base", "x": 180, "y": 90 },
|
||||
"facing=south,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 0, "y": 90 },
|
||||
"facing=north,axis_along_first=true": { "model": "create:block/gauge/base_wall", "x": 0, "y": 270 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"forgemarker": 1,
|
||||
"variants": {
|
||||
"variants": {
|
||||
"align=xy": { "model": "create:block/symmetry_plane" },
|
||||
"align=yz": { "model": "create:block/symmetry_plane", "y": 90 }
|
||||
"align=yz": { "model": "create:block/symmetry_plane", "y": 90 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"forgemarker": 1,
|
||||
"variants": {
|
||||
"variants": {
|
||||
"": { "model": "create:block/symmetry_tripleplane" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered=false,powering=false,facing=north": { "model": "create:block/repeaters/toggle_latch", "y": 180 },
|
||||
"powered=false,powering=false,facing=east": { "model": "create:block/repeaters/toggle_latch", "y": 270 },
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
|
||||
"sticky_top=false,sticky_bottom=false,axis=x": { "model": "create:block/translation_chassis/regular", "x": 90, "y": 90 },
|
||||
|
@ -17,6 +16,6 @@
|
|||
"sticky_top=true,sticky_bottom=true,axis=x": { "model": "create:block/translation_chassis/regular_both_sticky", "x": 90, "y": 90 },
|
||||
"sticky_top=true,sticky_bottom=true,axis=y": { "model": "create:block/translation_chassis/regular_both_sticky" },
|
||||
"sticky_top=true,sticky_bottom=true,axis=z": { "model": "create:block/translation_chassis/regular_both_sticky", "x": 90, "y": 180 }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
|
||||
"sticky_top=false,sticky_bottom=false,axis=x": { "model": "create:block/translation_chassis/alt", "x": 90, "y": 90 },
|
||||
|
@ -17,6 +16,6 @@
|
|||
"sticky_top=true,sticky_bottom=true,axis=x": { "model": "create:block/translation_chassis/alt_both_sticky", "x": 90, "y": 90 },
|
||||
"sticky_top=true,sticky_bottom=true,axis=y": { "model": "create:block/translation_chassis/alt_both_sticky" },
|
||||
"sticky_top=true,sticky_bottom=true,axis=z": { "model": "create:block/translation_chassis/alt_both_sticky", "x": 90, "y": 180 }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"variants": {
|
||||
"powered": {
|
||||
"true": { "model": "create:block/transposer/default_powered" },
|
||||
"false": { "model": "create:block/transposer/default" }
|
||||
},
|
||||
"facing": {
|
||||
"north": { "y": 0 },
|
||||
"south": { "y": 180 },
|
||||
"west": { "y": 270 },
|
||||
"east": { "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"powered=true,facing=north": { "model": "create:block/transposer/default_powered", "y": 0 },
|
||||
"powered=true,facing=east": { "model": "create:block/transposer/default_powered", "y": 90 },
|
||||
"powered=true,facing=south": { "model": "create:block/transposer/default_powered", "y": 180 },
|
||||
"powered=true,facing=west": { "model": "create:block/transposer/default_powered", "y": 270 },
|
||||
"powered=false,facing=north": { "model": "create:block/transposer/default", "y": 0 },
|
||||
"powered=false,facing=east": { "model": "create:block/transposer/default", "y": 90 },
|
||||
"powered=false,facing=south": { "model": "create:block/transposer/default", "y": 180 },
|
||||
"powered=false,facing=west": { "model": "create:block/transposer/default", "y": 270 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
"forgemarker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/turntable"
|
||||
},
|
||||
"variants": {
|
||||
"": { "model": "create:block/turntable" }
|
||||
}
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/extractor/vertical"
|
||||
},
|
||||
"variants": {
|
||||
|
||||
"powered=true,upward=false,facing=south": { "model": "create:block/extractor/vertical_powered", "y": 180 },
|
||||
|
@ -13,15 +9,15 @@
|
|||
"powered=true,upward=true,facing=east": { "model": "create:block/extractor/vertical_powered", "y": 270, "x": 180 },
|
||||
"powered=true,upward=true,facing=north": { "model": "create:block/extractor/vertical_powered", "y": 180, "x": 180 },
|
||||
"powered=true,upward=true,facing=west": { "model": "create:block/extractor/vertical_powered", "y": 90, "x": 180 },
|
||||
|
||||
"powered=false,upward=false,facing=south": { "y": 180 },
|
||||
"powered=false,upward=false,facing=east": { "y": 90 },
|
||||
"powered=false,upward=false,facing=north": { "y": 0 },
|
||||
"powered=false,upward=false,facing=west": { "y": 270 },
|
||||
"powered=false,upward=true,facing=south": { "y": 0, "x": 180 },
|
||||
"powered=false,upward=true,facing=east": { "y": 270, "x": 180 },
|
||||
"powered=false,upward=true,facing=north": { "y": 180, "x": 180 },
|
||||
"powered=false,upward=true,facing=west": { "y": 90, "x": 180 }
|
||||
|
||||
"powered=false,upward=false,facing=south": { "model": "create:block/extractor/vertical", "y": 180 },
|
||||
"powered=false,upward=false,facing=east": { "model": "create:block/extractor/vertical", "y": 90 },
|
||||
"powered=false,upward=false,facing=north": { "model": "create:block/extractor/vertical", "y": 0 },
|
||||
"powered=false,upward=false,facing=west": { "model": "create:block/extractor/vertical", "y": 270 },
|
||||
"powered=false,upward=true,facing=south": { "model": "create:block/extractor/vertical", "y": 0, "x": 180 },
|
||||
"powered=false,upward=true,facing=east": { "model": "create:block/extractor/vertical", "y": 270, "x": 180 },
|
||||
"powered=false,upward=true,facing=north": { "model": "create:block/extractor/vertical", "y": 180, "x": 180 },
|
||||
"powered=false,upward=true,facing=west": { "model": "create:block/extractor/vertical", "y": 90, "x": 180 }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,12 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/funnel/vertical"
|
||||
},
|
||||
"variants": {
|
||||
"upward=true,facing=south": { "y": 180, "x": 270 },
|
||||
"upward=true,facing=east": { "y": 90, "x": 270 },
|
||||
"upward=true,facing=north": { "y": 0, "x": 270 },
|
||||
"upward=true,facing=west": { "y": 270, "x": 270 },
|
||||
"upward=false,facing=south": { "y": 0, "x": 90 },
|
||||
"upward=false,facing=east": { "y": 270, "x": 90 },
|
||||
"upward=false,facing=north": { "y": 180, "x": 90 },
|
||||
"upward=false,facing=west": { "y": 90, "x": 90 }
|
||||
"upward=true,facing=south": { "model": "create:block/funnel/vertical", "y": 180, "x": 270 },
|
||||
"upward=true,facing=east": { "model": "create:block/funnel/vertical", "y": 90, "x": 270 },
|
||||
"upward=true,facing=north": { "model": "create:block/funnel/vertical", "y": 0, "x": 270 },
|
||||
"upward=true,facing=west": { "model": "create:block/funnel/vertical", "y": 270, "x": 270 },
|
||||
"upward=false,facing=south": { "model": "create:block/funnel/vertical", "y": 0, "x": 90 },
|
||||
"upward=false,facing=east": { "model": "create:block/funnel/vertical", "y": 270, "x": 90 },
|
||||
"upward=false,facing=north": { "model": "create:block/funnel/vertical", "y": 180, "x": 90 },
|
||||
"upward=false,facing=west": { "model": "create:block/funnel/vertical", "y": 90, "x": 90 }
|
||||
}
|
||||
}
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/extractor/vertical_wireless"
|
||||
},
|
||||
"variants": {
|
||||
|
||||
"powered=true,upward=false,facing=south": { "model": "create:block/extractor/vertical_wireless_powered", "y": 180 },
|
||||
|
@ -14,14 +10,14 @@
|
|||
"powered=true,upward=true,facing=north": { "model": "create:block/extractor/vertical_wireless_powered", "y": 180, "x": 180 },
|
||||
"powered=true,upward=true,facing=west": { "model": "create:block/extractor/vertical_wireless_powered", "y": 90, "x": 180 },
|
||||
|
||||
"powered=false,upward=false,facing=south": { "y": 180 },
|
||||
"powered=false,upward=false,facing=east": { "y": 90 },
|
||||
"powered=false,upward=false,facing=north": { "y": 0 },
|
||||
"powered=false,upward=false,facing=west": { "y": 270 },
|
||||
"powered=false,upward=true,facing=south": { "y": 0, "x": 180 },
|
||||
"powered=false,upward=true,facing=east": { "y": 270, "x": 180 },
|
||||
"powered=false,upward=true,facing=north": { "y": 180, "x": 180 },
|
||||
"powered=false,upward=true,facing=west": { "y": 90, "x": 180 }
|
||||
"powered=false,upward=false,facing=south": { "model": "create:block/extractor/vertical_wireless", "y": 180 },
|
||||
"powered=false,upward=false,facing=east": { "model": "create:block/extractor/vertical_wireless", "y": 90 },
|
||||
"powered=false,upward=false,facing=north": { "model": "create:block/extractor/vertical_wireless", "y": 0 },
|
||||
"powered=false,upward=false,facing=west": { "model": "create:block/extractor/vertical_wireless", "y": 270 },
|
||||
"powered=false,upward=true,facing=south": { "model": "create:block/extractor/vertical_wireless", "y": 0, "x": 180 },
|
||||
"powered=false,upward=true,facing=east": { "model": "create:block/extractor/vertical_wireless", "y": 270, "x": 180 },
|
||||
"powered=false,upward=true,facing=north": { "model": "create:block/extractor/vertical_wireless", "y": 180, "x": 180 },
|
||||
"powered=false,upward=true,facing=west": { "model": "create:block/extractor/vertical_wireless", "y": 90, "x": 180 }
|
||||
|
||||
}
|
||||
}
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/transposer/vertical_linked"
|
||||
},
|
||||
"variants": {
|
||||
|
||||
"powered=true,upward=true,facing=south": { "model": "create:block/transposer/vertical_linked_powered", "y": 180, "x": 270 },
|
||||
|
@ -13,15 +9,15 @@
|
|||
"powered=true,upward=false,facing=east": { "model": "create:block/transposer/vertical_linked_powered", "y": 270, "x": 90 },
|
||||
"powered=true,upward=false,facing=north": { "model": "create:block/transposer/vertical_linked_powered", "y": 180, "x": 90 },
|
||||
"powered=true,upward=false,facing=west": { "model": "create:block/transposer/vertical_linked_powered", "y": 90, "x": 90 },
|
||||
|
||||
"powered=false,upward=true,facing=south": { "y": 180, "x": 270 },
|
||||
"powered=false,upward=true,facing=east": { "y": 90, "x": 270 },
|
||||
"powered=false,upward=true,facing=north": { "y": 0, "x": 270 },
|
||||
"powered=false,upward=true,facing=west": { "y": 270, "x": 270 },
|
||||
"powered=false,upward=false,facing=south": { "y": 0, "x": 90 },
|
||||
"powered=false,upward=false,facing=east": { "y": 270, "x": 90 },
|
||||
"powered=false,upward=false,facing=north": { "y": 180, "x": 90 },
|
||||
"powered=false,upward=false,facing=west": { "y": 90, "x": 90 }
|
||||
|
||||
"powered=false,upward=true,facing=south": { "model": "create:block/transposer/vertical_linked", "y": 180, "x": 270 },
|
||||
"powered=false,upward=true,facing=east": { "model": "create:block/transposer/vertical_linked", "y": 90, "x": 270 },
|
||||
"powered=false,upward=true,facing=north": { "model": "create:block/transposer/vertical_linked", "y": 0, "x": 270 },
|
||||
"powered=false,upward=true,facing=west": { "model": "create:block/transposer/vertical_linked", "y": 270, "x": 270 },
|
||||
"powered=false,upward=false,facing=south": { "model": "create:block/transposer/vertical_linked", "y": 0, "x": 90 },
|
||||
"powered=false,upward=false,facing=east": { "model": "create:block/transposer/vertical_linked", "y": 270, "x": 90 },
|
||||
"powered=false,upward=false,facing=north": { "model": "create:block/transposer/vertical_linked", "y": 180, "x": 90 },
|
||||
"powered=false,upward=false,facing=west": { "model": "create:block/transposer/vertical_linked", "y": 90, "x": 90 }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/transposer/default"
|
||||
},
|
||||
"variants": {
|
||||
|
||||
"powered=true,upward=true,facing=south": { "model": "create:block/transposer/default_powered", "y": 180, "x": 270 },
|
||||
|
@ -13,15 +9,15 @@
|
|||
"powered=true,upward=false,facing=east": { "model": "create:block/transposer/default_powered", "y": 270, "x": 90 },
|
||||
"powered=true,upward=false,facing=north": { "model": "create:block/transposer/default_powered", "y": 180, "x": 90 },
|
||||
"powered=true,upward=false,facing=west": { "model": "create:block/transposer/default_powered", "y": 90, "x": 90 },
|
||||
|
||||
"powered=false,upward=true,facing=south": { "y": 180, "x": 270 },
|
||||
"powered=false,upward=true,facing=east": { "y": 90, "x": 270 },
|
||||
"powered=false,upward=true,facing=north": { "y": 0, "x": 270 },
|
||||
"powered=false,upward=true,facing=west": { "y": 270, "x": 270 },
|
||||
"powered=false,upward=false,facing=south": { "y": 0, "x": 90 },
|
||||
"powered=false,upward=false,facing=east": { "y": 270, "x": 90 },
|
||||
"powered=false,upward=false,facing=north": { "y": 180, "x": 90 },
|
||||
"powered=false,upward=false,facing=west": { "y": 90, "x": 90 }
|
||||
|
||||
"powered=false,upward=true,facing=south": { "model": "create:block/transposer/default", "y": 180, "x": 270 },
|
||||
"powered=false,upward=true,facing=east": { "model": "create:block/transposer/default", "y": 90, "x": 270 },
|
||||
"powered=false,upward=true,facing=north": { "model": "create:block/transposer/default", "y": 0, "x": 270 },
|
||||
"powered=false,upward=true,facing=west": { "model": "create:block/transposer/default", "y": 270, "x": 270 },
|
||||
"powered=false,upward=false,facing=south": { "model": "create:block/transposer/default", "y": 0, "x": 90 },
|
||||
"powered=false,upward=false,facing=east": { "model": "create:block/transposer/default", "y": 270, "x": 90 },
|
||||
"powered=false,upward=false,facing=north": { "model": "create:block/transposer/default", "y": 180, "x": 90 },
|
||||
"powered=false,upward=false,facing=west": { "model": "create:block/transposer/default", "y": 90, "x": 90 }
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,8 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "create:block/water_wheel"
|
||||
},
|
||||
"variants": {
|
||||
"facing": {
|
||||
"north": { "x": 90 },
|
||||
"east": { "x": 90, "y": 90 },
|
||||
"south": { "x": 90, "y": 180 },
|
||||
"west": { "x": 90, "y": 270 }
|
||||
}
|
||||
"facing=north": { "model": "create:block/water_wheel", "x": 90 },
|
||||
"facing=east": { "model": "create:block/water_wheel", "x": 90, "y": 90 },
|
||||
"facing=south": { "model": "create:block/water_wheel", "x": 90, "y": 180 },
|
||||
"facing=west": { "model": "create:block/water_wheel", "x": 90, "y": 270 }
|
||||
}
|
||||
}
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/weathered_limestone_bricks_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/weathered_limestone_bricks_slab" },
|
||||
"double": { "model":"create:block/palettes/weathered_limestone_bricks" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/weathered_limestone_bricks_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/weathered_limestone_bricks_slab" },
|
||||
"type=double": { "model":"create:block/palettes/weathered_limestone_bricks" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=z": { "model": "create:block/palettes/weathered_limestone_pillar", "x": 90 },
|
||||
"variants": {
|
||||
"axis=z": { "model": "create:block/palettes/weathered_limestone_pillar", "x": 90 },
|
||||
"axis=y": { "model": "create:block/palettes/weathered_limestone_pillar" },
|
||||
"axis=x": { "model": "create:block/palettes/weathered_limestone_pillar", "x": 90, "y": 90 }
|
||||
"axis=x": { "model": "create:block/palettes/weathered_limestone_pillar", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,13 +1,7 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"uvlock": true
|
||||
},
|
||||
"variants": {
|
||||
"type": {
|
||||
"top": { "model":"create:block/palettes/weathered_limestone_slab_top" },
|
||||
"bottom": { "model":"create:block/palettes/weathered_limestone_slab" },
|
||||
"double": { "model":"create:block/palettes/weathered_limestone" }
|
||||
}
|
||||
}
|
||||
}
|
||||
"variants": {
|
||||
"type=top": { "model":"create:block/palettes/weathered_limestone_slab_top" },
|
||||
"type=bottom": { "model":"create:block/palettes/weathered_limestone_slab" },
|
||||
"type=double": { "model":"create:block/palettes/weathered_limestone" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "forge:mod_loaded",
|
||||
"modid": "biomesoplenty"
|
||||
}
|
||||
],
|
||||
"type": "create:cutting",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "biomesoplenty:ethereal_log"
|
||||
}
|
||||
],
|
||||
"results": [
|
||||
{
|
||||
"item": "biomesoplenty:stripped_ethereal_log",
|
||||
"count": 1
|
||||
}
|
||||
],
|
||||
"processingTime": 50
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"pack": {
|
||||
"description": "create resources",
|
||||
"pack_format": 4
|
||||
"pack_format": 5
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue