final touches
This commit is contained in:
@@ -54,7 +54,7 @@ import static net.minecraft.world.level.block.HorizontalDirectionalBlock.FACING;
|
||||
|
||||
public class DieselEngineBlockEntity extends SmartBlockEntity implements IHaveGoggleInformation {
|
||||
|
||||
protected ScrollOptionBehaviour<WindmillBearingBlockEntity.RotationDirection> movementDirection;
|
||||
//protected ScrollOptionBehaviour<WindmillBearingBlockEntity.RotationDirection> movementDirection;
|
||||
|
||||
public WeakReference<PoweredShaftBlockEntity> target;
|
||||
///////////
|
||||
@@ -66,6 +66,8 @@ public class DieselEngineBlockEntity extends SmartBlockEntity implements IHaveGo
|
||||
|
||||
private int consumptionTimer=0;
|
||||
public float engineStrength = 0;
|
||||
|
||||
|
||||
private Couple<FluidTank> tanks;
|
||||
|
||||
public BlockPos expansionPos;
|
||||
@@ -103,14 +105,14 @@ public class DieselEngineBlockEntity extends SmartBlockEntity implements IHaveGo
|
||||
public void addBehaviours(List<BlockEntityBehaviour> behaviours) {
|
||||
//movementDirection = new ScrollOptionBehaviour<>(WindmillBearingBlockEntity.RotationDirection.class,
|
||||
// Lang.translateDirect("contraptions.windmill.rotation_direction"), this, new DieselEngineValueBox());
|
||||
movementDirection = new ScrollOptionBehaviour<>(WindmillBearingBlockEntity.RotationDirection.class,
|
||||
Lang.translateDirect("contraptions.windmill.rotation_direction"), this, new SteamEngineValueBox());
|
||||
movementDirection.onlyActiveWhen(() -> {
|
||||
PoweredShaftBlockEntity shaft = getShaft();
|
||||
return shaft == null || !shaft.hasSource();
|
||||
});
|
||||
movementDirection.withCallback($ -> onDirectionChanged());
|
||||
behaviours.add(movementDirection);
|
||||
//movementDirection = new ScrollOptionBehaviour<>(WindmillBearingBlockEntity.RotationDirection.class,
|
||||
// Lang.translateDirect("contraptions.windmill.rotation_direction"), this, new SteamEngineValueBox());
|
||||
//movementDirection.onlyActiveWhen(() -> {
|
||||
// PoweredShaftBlockEntity shaft = getShaft();
|
||||
// return shaft == null || !shaft.hasSource();
|
||||
//});
|
||||
//movementDirection.withCallback($ -> onDirectionChanged());
|
||||
//behaviours.add(movementDirection);
|
||||
////////////////////////////////////////////
|
||||
behaviours.add(new DirectBeltInputBehaviour(this));
|
||||
|
||||
@@ -124,7 +126,13 @@ public class DieselEngineBlockEntity extends SmartBlockEntity implements IHaveGo
|
||||
super.tick();
|
||||
Direction direction;
|
||||
|
||||
DistExecutor.unsafeRunWhenOn(Dist.CLIENT, () -> this::makeSound);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if(getBlockState().getValue(FACE)==AttachFace.WALL)
|
||||
expansionPos = this.getBlockPos().relative(getBlockState().getValue(FACING).getOpposite());
|
||||
@@ -184,33 +192,68 @@ public class DieselEngineBlockEntity extends SmartBlockEntity implements IHaveGo
|
||||
if(!level.isClientSide)
|
||||
if(getShaft() != null)
|
||||
engineProcess(targetAxis,verticalTarget);
|
||||
//DistExecutor.unsafeRunWhenOn(Dist.CLIENT, () -> this::makeSound);
|
||||
makeSound(targetAxis,verticalTarget);
|
||||
|
||||
int conveyedSpeedLevel =
|
||||
engineStrength == 0 ? 1 : verticalTarget ? 1 : (int) GeneratingKineticBlockEntity.convertToDirection(1, facing)*2;
|
||||
if (targetAxis == Axis.Z)
|
||||
conveyedSpeedLevel *= -1;
|
||||
if (movementDirection.get() == WindmillBearingBlockEntity.RotationDirection.COUNTER_CLOCKWISE)
|
||||
conveyedSpeedLevel *= -1;
|
||||
//if (movementDirection.get() == WindmillBearingBlockEntity.RotationDirection.COUNTER_CLOCKWISE)
|
||||
// conveyedSpeedLevel *= -1;
|
||||
|
||||
float shaftSpeed = shaft.getTheoreticalSpeed();
|
||||
if (shaft.hasSource() && shaftSpeed != 0 && conveyedSpeedLevel != 0
|
||||
&& (shaftSpeed > 0) != (conveyedSpeedLevel > 0)) {
|
||||
movementDirection.setValue(1 - movementDirection.get()
|
||||
.ordinal());
|
||||
//movementDirection.setValue(1 - movementDirection.get()
|
||||
// .ordinal());
|
||||
conveyedSpeedLevel *= -1;
|
||||
}
|
||||
|
||||
shaft.update(worldPosition, conveyedSpeedLevel, engineStrength);
|
||||
//shaft.update(worldPosition, conveyedSpeedLevel, engineStrength);
|
||||
|
||||
//shaft.update(worldPosition, conveyedSpeedLevel, 40);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@OnlyIn(Dist.CLIENT)
|
||||
private void makeSound(){
|
||||
private void makeSound(Axis targetAxis, boolean verticalTarget){
|
||||
Float targetAngle = getTargetAngle();
|
||||
PoweredShaftBlockEntity ste = target.get();
|
||||
if (ste == null)
|
||||
return;
|
||||
//if (engineStrength == 0)
|
||||
// return;
|
||||
PoweredShaftBlockEntity shaft = getShaft();
|
||||
|
||||
if(tanks.get(true).isEmpty()||tanks.get(true).isEmpty()) {
|
||||
engineStrength=0;
|
||||
|
||||
shaft.update(worldPosition, getConveyedSpeedLevel(engineStrength,targetAxis,verticalTarget), engineStrength);
|
||||
return;
|
||||
}
|
||||
|
||||
if(expansionBE != null){
|
||||
if(airTank.isEmpty()&&expansionBE.airTank.isEmpty()){
|
||||
engineStrength = 0;
|
||||
shaft.update(worldPosition, getConveyedSpeedLevel(engineStrength,targetAxis,verticalTarget), engineStrength);
|
||||
return;
|
||||
}
|
||||
}else
|
||||
if(airTank.isEmpty()){
|
||||
engineStrength = 0;
|
||||
shaft.update(worldPosition, getConveyedSpeedLevel(engineStrength,targetAxis,verticalTarget), engineStrength);
|
||||
return;
|
||||
}
|
||||
|
||||
if(tanks.get(false).getFluidAmount()+5>1000) {
|
||||
engineStrength = 0;
|
||||
shaft.update(worldPosition, getConveyedSpeedLevel(engineStrength,targetAxis,verticalTarget), engineStrength);
|
||||
return;
|
||||
}
|
||||
|
||||
if (targetAngle == null)
|
||||
return;
|
||||
|
||||
@@ -218,7 +261,7 @@ public class DieselEngineBlockEntity extends SmartBlockEntity implements IHaveGo
|
||||
angle += (angle < 0) ? -180 + 75 : 360 - 75;
|
||||
angle %= 360;
|
||||
|
||||
PoweredShaftBlockEntity shaft = getShaft();
|
||||
|
||||
if (shaft == null || shaft.getSpeed() == 0)
|
||||
return;
|
||||
|
||||
@@ -232,7 +275,7 @@ public class DieselEngineBlockEntity extends SmartBlockEntity implements IHaveGo
|
||||
return;
|
||||
}
|
||||
|
||||
TFMGSoundEvents.ENGINE.playAt(level, worldPosition, 1.0f, 1f, false);
|
||||
TFMGSoundEvents.DIESEL_ENGINE.playAt(level, worldPosition, 0.4f, 1f, false);
|
||||
|
||||
prevAngle = angle;
|
||||
}
|
||||
@@ -244,15 +287,15 @@ public class DieselEngineBlockEntity extends SmartBlockEntity implements IHaveGo
|
||||
engineStrength == 0 ? 1 : verticalTarget ? 1 : (int) GeneratingKineticBlockEntity.convertToDirection(1, facing)*2;
|
||||
if (targetAxis == Axis.Z)
|
||||
conveyedSpeedLevel *= -1;
|
||||
if (movementDirection.get() == WindmillBearingBlockEntity.RotationDirection.COUNTER_CLOCKWISE)
|
||||
conveyedSpeedLevel *= -1;
|
||||
//if (movementDirection.get() == WindmillBearingBlockEntity.RotationDirection.COUNTER_CLOCKWISE)
|
||||
// conveyedSpeedLevel *= -1;
|
||||
|
||||
|
||||
float shaftSpeed = shaft.getTheoreticalSpeed();
|
||||
if (shaft.hasSource() && shaftSpeed != 0 && conveyedSpeedLevel != 0
|
||||
&& (shaftSpeed > 0) != (conveyedSpeedLevel > 0)) {
|
||||
movementDirection.setValue(1 - movementDirection.get()
|
||||
.ordinal());
|
||||
//movementDirection.setValue(1 - movementDirection.get()
|
||||
// .ordinal());
|
||||
conveyedSpeedLevel *= -1;
|
||||
}
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@ public class AirIntakeBlockEntity extends KineticBlockEntity implements IWrencha
|
||||
super.tick();
|
||||
|
||||
//if(!level.isClientSide) {
|
||||
int production = ((int) maxShaftSpeed * ((diameter * diameter))) / 40;
|
||||
int production = ((int) maxShaftSpeed * ((diameter * diameter))) / 10;
|
||||
if (tankInventory.getFluidAmount() + production <= tankInventory.getCapacity()) {
|
||||
//tankInventory.fill(new FluidStack(TFMGFluids.AIR.getSource(), production), IFluidHandler.FluidAction.EXECUTE);
|
||||
tankInventory.setFluid(new FluidStack(TFMGFluids.AIR.getSource(), production + tankInventory.getFluidAmount()));
|
||||
|
||||
@@ -542,11 +542,11 @@ public void write(CompoundTag compound, boolean clientPacket) {
|
||||
private void makeSound(){
|
||||
soundTimer=0;
|
||||
if(this instanceof TurbineEngineTileEntity){
|
||||
TFMGSoundEvents.ENGINE.playAt(level, worldPosition, 0.4f, 1.5f, false);
|
||||
TFMGSoundEvents.ENGINE.playAt(level, worldPosition, 0.2f, 1.5f, false);
|
||||
}
|
||||
else
|
||||
|
||||
TFMGSoundEvents.ENGINE.playAt(level, worldPosition, 0.6f, 1f, false);
|
||||
TFMGSoundEvents.ENGINE.playAt(level, worldPosition, 0.3f, 1f, false);
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -169,9 +169,8 @@ public class ExhaustBlockEntity extends SmartBlockEntity implements IHaveGoggleI
|
||||
smokeTimer = 100;
|
||||
spawnsSmoke = true;
|
||||
|
||||
int random = Create.RANDOM.nextInt(5);
|
||||
if(random==0)
|
||||
tankInventory.drain(35, IFluidHandler.FluidAction.EXECUTE);
|
||||
|
||||
tankInventory.drain(20, IFluidHandler.FluidAction.EXECUTE);
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -222,10 +222,17 @@ public class BlastFurnaceOutputBlockEntity extends TFMGMachineBlockEntity implem
|
||||
if (timer>0&&type == BlastFurnaceType.SMALL) {
|
||||
posToSpawn = this.getBlockPos().relative(outputFacing.getOpposite()).above();
|
||||
|
||||
level.setBlock(posToSpawn, TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
|
||||
if(!level.getBlockState(posToSpawn).is(TFMGBlocks.MOLTEN_METAL.get())) {
|
||||
level.setBlock(posToSpawn, TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
level.setBlock(posToSpawn.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
|
||||
}else {
|
||||
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn)).discardTimer = 40;
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn.above())).discardTimer = 40;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
//////
|
||||
@@ -235,15 +242,33 @@ public class BlastFurnaceOutputBlockEntity extends TFMGMachineBlockEntity implem
|
||||
posToSpawn2 = this.getBlockPos().relative(outputFacing.getOpposite()).above().relative(outputFacing.getCounterClockWise());
|
||||
posToSpawn3 = this.getBlockPos().relative(outputFacing.getOpposite(),2).above().relative(outputFacing.getCounterClockWise());
|
||||
|
||||
level.setBlock(posToSpawn, TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn1, TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn2, TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn3, TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
|
||||
level.setBlock(posToSpawn.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn1.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn2.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn3.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
|
||||
if(!level.getBlockState(posToSpawn).is(TFMGBlocks.MOLTEN_METAL.get())) {
|
||||
level.setBlock(posToSpawn, TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
level.setBlock(posToSpawn1, TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
level.setBlock(posToSpawn2, TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
level.setBlock(posToSpawn3, TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
|
||||
level.setBlock(posToSpawn.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
level.setBlock(posToSpawn1.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
level.setBlock(posToSpawn2.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
level.setBlock(posToSpawn3.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(), 3);
|
||||
|
||||
}else {
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn)).discardTimer = 40;
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn.above())).discardTimer = 40;
|
||||
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn1)).discardTimer = 40;
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn1.above())).discardTimer = 40;
|
||||
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn2)).discardTimer = 40;
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn2.above())).discardTimer = 40;
|
||||
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn3)).discardTimer = 40;
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn3.above())).discardTimer = 40;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -254,6 +279,9 @@ public class BlastFurnaceOutputBlockEntity extends TFMGMachineBlockEntity implem
|
||||
posToSpawn2 = this.getBlockPos().relative(outputFacing.getOpposite()).above().relative(outputFacing.getClockWise());
|
||||
posToSpawn3 = this.getBlockPos().relative(outputFacing.getOpposite(),2).above().relative(outputFacing.getClockWise());
|
||||
|
||||
|
||||
|
||||
if(!level.getBlockState(posToSpawn).is(TFMGBlocks.MOLTEN_METAL.get())) {
|
||||
level.setBlock(posToSpawn, TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn1, TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn2, TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
@@ -263,7 +291,20 @@ public class BlastFurnaceOutputBlockEntity extends TFMGMachineBlockEntity implem
|
||||
level.setBlock(posToSpawn1.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn2.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
level.setBlock(posToSpawn3.above(), TFMGBlocks.MOLTEN_METAL.getDefaultState(),3);
|
||||
}else {
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn)).discardTimer = 40;
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn.above())).discardTimer = 40;
|
||||
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn1)).discardTimer = 40;
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn1.above())).discardTimer = 40;
|
||||
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn2)).discardTimer = 40;
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn2.above())).discardTimer = 40;
|
||||
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn3)).discardTimer = 40;
|
||||
((MoltenMetalBlockEntity) level.getBlockEntity(posToSpawn3.above())).discardTimer = 40;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@ public class MoltenMetalBlockEntity extends SmartBlockEntity {
|
||||
|
||||
public MoltenMetalBlockEntity(BlockEntityType<?> type, BlockPos pos, BlockState state) {
|
||||
super(type, pos, state);
|
||||
discardTimer=20;
|
||||
discardTimer=40;
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -588,6 +588,7 @@ public static final BlockEntry<DistillationOutputBlock> STEEL_DISTILLATION_OUTPU
|
||||
.tag(BlockTags.WALLS)
|
||||
.blockstate((c, p) -> TFMGVanillaBlockStates.generateWallBlockState(c, p, "fireproof_brick_reinforcement"))
|
||||
.item()
|
||||
.transform(b -> TFMGVanillaBlockStates.transformWallItem(b, "fireproof_brick_reinforcement"))
|
||||
.build()
|
||||
.lang("Fireproof Brick Reinforcement")
|
||||
.register();
|
||||
@@ -595,9 +596,11 @@ public static final BlockEntry<DistillationOutputBlock> STEEL_DISTILLATION_OUTPU
|
||||
.initialProperties(() -> Blocks.BRICKS)
|
||||
.properties(p -> p.color(MaterialColor.COLOR_RED))
|
||||
.properties(p -> p.requiresCorrectToolForDrops())
|
||||
.blockstate((c, p) -> p.horizontalBlock(c.get(), p.models()
|
||||
.getExistingFile(p.modLoc("block/blast_furnace_output/block"))))
|
||||
.transform(pickaxeOnly())
|
||||
.item()
|
||||
.build()
|
||||
.transform(customItemModel())
|
||||
.lang("Blast Furnace Output")
|
||||
.register();
|
||||
public static final BlockEntry<MoltenMetalBlock> MOLTEN_METAL =
|
||||
|
||||
@@ -52,7 +52,7 @@ public class TFMGItems {
|
||||
HEAVY_PLATE = REGISTRATE.item("heavy_plate", Item::new).register(),
|
||||
ENGINE_CHAMBER = REGISTRATE.item("engine_chamber", Item::new).register(),
|
||||
ENGINE_BASE = REGISTRATE.item("engine_base", Item::new)
|
||||
.model((c, p) -> p.withExistingParent(c.getName(), CreateTFMG.asResource("item/engine_base")))
|
||||
.model((c, p) -> p.withExistingParent(c.getName(), CreateTFMG.asResource("item/unfinished_engine")))
|
||||
.register(),
|
||||
TURBINE_BLADE = REGISTRATE.item("turbine_blade", Item::new).register(),
|
||||
THERMITE_POWDER = REGISTRATE.item("thermite_powder", Item::new).register(),
|
||||
|
||||
@@ -41,11 +41,17 @@ public class TFMGSoundEvents {
|
||||
public static final TFMGSoundEvents.SoundEntry
|
||||
|
||||
|
||||
ENGINE = create("diesel_engine")
|
||||
.subtitle("idk how to call this :3")
|
||||
ENGINE = create("engine")
|
||||
.subtitle("Engine Sounds")
|
||||
.category(SoundSource.BLOCKS)
|
||||
.attenuationDistance(10)
|
||||
.build();
|
||||
.build(),
|
||||
|
||||
DIESEL_ENGINE = create("diesel_engine")
|
||||
.subtitle("Diese Engine Sounds")
|
||||
.category(SoundSource.BLOCKS)
|
||||
.attenuationDistance(10)
|
||||
.build();
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
package com.drmangotea.createindustry.registry;
|
||||
|
||||
public class TFMGSounds {
|
||||
}
|
||||
@@ -64,5 +64,8 @@
|
||||
"create.recipe.advanced_distillation": "Advanced Distillation",
|
||||
"create.recipe.industrial_blasting": "Industrial Blasting",
|
||||
"create.recipe.casting": "Casting",
|
||||
"create.recipe.coking": "Coking"
|
||||
"create.recipe.coking": "Coking",
|
||||
|
||||
"createindustry.subtitle.engine_sounds": "Engine Sounds",
|
||||
"createindustry.subtitle.diesel_engine_sounds": "Diesel Engine Sounds"
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"4": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/aluminum_fluid_valve",
|
||||
"4": "createindustry:block/aluminum_pipes",
|
||||
"particle": "createindustry:block/aluminum_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"4": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/aluminum_fluid_valve",
|
||||
"4": "createindustry:block/aluminum_pipes",
|
||||
"particle": "createindustry:block/aluminum_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"3": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/aluminum_fluid_valve",
|
||||
"3": "createindustry:block/aluminum_pipes",
|
||||
"particle": "createindustry:block/aluminum_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"3": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/aluminum_fluid_valve",
|
||||
"3": "createindustry:block/aluminum_pipes",
|
||||
"particle": "createindustry:block/aluminum_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"3": "create:block/pipes",
|
||||
"2": "createindustry:block/aluminum_fluid_valve",
|
||||
"3": "createindustry:block/aluminum_pipes",
|
||||
"4": "create:block/pump",
|
||||
"1_1": "create:block/axis_top",
|
||||
"1_0": "create:block/axis",
|
||||
"particle": "create:block/copper_plating"
|
||||
"particle": "createindustry:block/aluminum_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"2": "createindustry:block/aluminum_fluid_valve",
|
||||
"4": "create:block/pump",
|
||||
"particle": "create:block/copper_plating"
|
||||
"particle": "createindustry:block/aluminum_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "create:block/block",
|
||||
"textures": {
|
||||
"2": "create:block/pipes",
|
||||
"4": "create:block/pump",
|
||||
"particle": "create:block/pump"
|
||||
"2": "createindustry:block/aluminum_pipes",
|
||||
"4": "createindustry:block/aluminum_pump",
|
||||
"particle": "createindustry:block/aluminum_pump"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "create:block/block",
|
||||
"textures": {
|
||||
"2": "create:block/pipes",
|
||||
"4": "create:block/pump",
|
||||
"2": "createindustry:block/aluminum_pipes",
|
||||
"4": "createindustry:block/aluminum_pump",
|
||||
"5": "create:block/millstone",
|
||||
"particle": "create:block/pump"
|
||||
"particle": "createindustry:block/aluminum_pump"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"2": "create:block/smart_pipe_1",
|
||||
"3": "create:block/smart_pipe_2",
|
||||
"particle": "create:block/smart_pipe_2"
|
||||
"2": "createindustry:block/aluminum_smart_pipe_1",
|
||||
"3": "createindustry:block/aluminum_smart_pipe_2",
|
||||
"particle": "createindustry:block/aluminum_smart_pipe_2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "create:block/pipes",
|
||||
"2": "create:block/smart_pipe_1",
|
||||
"3": "create:block/smart_pipe_2"
|
||||
"1": "createindustry:block/aluminum_pipes",
|
||||
"2": "createindustry:block/aluminum_smart_pipe_1",
|
||||
"3": "createindustry:block/aluminum_smart_pipe_2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "createindustry:block/blast_furnace_output",
|
||||
"1": "createindustry:block/fireproof_bricks",
|
||||
"particle": "createindustry:block/blast_furnace_output"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#0"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "minecraft:block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/blast_furnace_output",
|
||||
"1": "createindustry:block/fireproof_bricks",
|
||||
"particle": "createindustry:block/blast_furnace_output"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "minecraft:block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/blast_furnace_output",
|
||||
"1": "createindustry:block/fireproof_bricks",
|
||||
"particle": "createindustry:block/blast_furnace_output"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, -1],
|
||||
"to": [16, 16, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#0"},
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,74 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [16, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 15],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,154 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [4, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [12, 4, 15],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 12],
|
||||
"to": [1, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "west"},
|
||||
"east": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 4, 0.95],
|
||||
"to": [12, 16, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 4],
|
||||
"to": [15.05, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 4, 15.05],
|
||||
"to": [12, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 4],
|
||||
"to": [0.95, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [12, 4, 0],
|
||||
"to": [16, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"west": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 4, 12],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"east": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 15],
|
||||
"to": [4, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"east": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"south": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 5, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 4, 0.95],
|
||||
"to": [4, 16, 0.95],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#3"},
|
||||
"south": {"uv": [4, 4, 8, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 12],
|
||||
"to": [15.05, 16, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 8, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 4, 4, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [4, 4, 0],
|
||||
"to": [16, 16, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [11, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-23, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [12, 16, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"east": {"uv": [4, 0, 5, 12], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 12],
|
||||
"to": [0.95, 16, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 8, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 4, 4, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 4, 0.95],
|
||||
"to": [16, 16, 0.95],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 8, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 4, 4, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 39]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [4, 4, 15],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 5, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 0],
|
||||
"to": [15.05, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 4, 16], "texture": "#3"},
|
||||
"west": {"uv": [4, 4, 8, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 4, 15.05],
|
||||
"to": [4, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#3"},
|
||||
"south": {"uv": [4, 4, 8, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 4, 4],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 12, 12], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 16, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 4],
|
||||
"to": [1, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 5, 12], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 16, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 4, 15.05],
|
||||
"to": [16, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 8, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 4, 4, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 0],
|
||||
"to": [0.95, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 4, 16], "texture": "#3"},
|
||||
"west": {"uv": [4, 4, 8, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 15],
|
||||
"to": [12, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"east": {"uv": [11, 0, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [39, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 15],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/fluid_tank_window",
|
||||
"particle": "createindustry:block/fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [4, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [12, 0, 15],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 12],
|
||||
"to": [1, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "west"},
|
||||
"east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 0, 0.95],
|
||||
"to": [12, 16, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "north"},
|
||||
"south": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 4],
|
||||
"to": [15.05, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "east"},
|
||||
"west": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 0, 15.05],
|
||||
"to": [12, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "south"},
|
||||
"south": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 4],
|
||||
"to": [0.95, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "west"},
|
||||
"west": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [12, 0, 0],
|
||||
"to": [16, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"west": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 0, 12],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 15],
|
||||
"to": [4, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"east": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"south": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 5, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 0, 0.95],
|
||||
"to": [4, 16, 0.95],
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 12, 16], "texture": "#3"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 12],
|
||||
"to": [15.05, 16, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [8, 0, 12, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [4, 0, 0],
|
||||
"to": [16, 16, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [11, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [12, 16, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [4, 0, 5, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 12],
|
||||
"to": [0.95, 16, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [8, 0, 12, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 0, 0.95],
|
||||
"to": [16, 16, 0.95],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 16], "texture": "#3"},
|
||||
"south": {"uv": [8, 0, 12, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [4, 0, 15],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 5, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 0],
|
||||
"to": [15.05, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [8, 0, 12, 16], "texture": "#3"},
|
||||
"west": {"uv": [12, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 0, 15.05],
|
||||
"to": [4, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 12, 16], "texture": "#3"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 0, 4],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 12, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 4],
|
||||
"to": [1, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 5, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 0, 15.05],
|
||||
"to": [16, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 16], "texture": "#3"},
|
||||
"south": {"uv": [8, 0, 12, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 0],
|
||||
"to": [0.95, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [8, 0, 12, 16], "texture": "#3"},
|
||||
"west": {"uv": [12, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 15],
|
||||
"to": [12, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [11, 0, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,127 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 15],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"name": "block_middle",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "block_top",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [4, 5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,168 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"5": "createindustry:block/brass_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [4, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 12, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [12, 4, 15],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 12],
|
||||
"to": [1, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "west"},
|
||||
"east": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 4, 0.95],
|
||||
"to": [12, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 4],
|
||||
"to": [15.05, 12, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 4, 15.05],
|
||||
"to": [12, 12, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 4],
|
||||
"to": [0.95, 12, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [12, 4, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"west": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 4, 12],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "east"},
|
||||
"east": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 15],
|
||||
"to": [4, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"east": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 12, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"south": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"5": "createindustry:block/brass_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 12, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 5, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 4, 0.95],
|
||||
"to": [4, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 8], "texture": "#5"},
|
||||
"south": {"uv": [4, 0, 8, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 12],
|
||||
"to": [15.05, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 4, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [4, 4, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [11, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-23, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-23, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom_centered_window",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"5": "createindustry:block/brass_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [12, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"east": {"uv": [4, 4, 5, 12], "texture": "#1"},
|
||||
"south": {"uv": [0, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 12],
|
||||
"to": [0.95, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 4, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 4, 0.95],
|
||||
"to": [16, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 8, 8], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 4, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 12, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"south": {"uv": [11, 4, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 39]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 39]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom_centered_window",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"5": "createindustry:block/brass_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [4, 4, 15],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 5, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 0],
|
||||
"to": [15.05, 12, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 4, 8], "texture": "#5"},
|
||||
"west": {"uv": [4, 0, 8, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 4, 15.05],
|
||||
"to": [4, 12, 15.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 8], "texture": "#5"},
|
||||
"south": {"uv": [4, 0, 8, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 4, 4],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 4, 12, 12], "texture": "#1"},
|
||||
"east": {"uv": [0, 4, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 16, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom_centered_window",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"5": "createindustry:block/brass_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 4],
|
||||
"to": [1, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 5, 12], "texture": "#1"},
|
||||
"east": {"uv": [0, 4, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 16, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 4, 15.05],
|
||||
"to": [16, 12, 15.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 8, 8], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 4, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 0],
|
||||
"to": [0.95, 12, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 4, 8], "texture": "#5"},
|
||||
"west": {"uv": [4, 0, 8, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 15],
|
||||
"to": [12, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"east": {"uv": [11, 4, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [0, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [39, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [39, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom_centered_window",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,71 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 15],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 12, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,154 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [4, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 12, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [12, 0, 15],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 12],
|
||||
"to": [1, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "west"},
|
||||
"east": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 0, 0.95],
|
||||
"to": [12, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 4],
|
||||
"to": [15.05, 12, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 0, 15.05],
|
||||
"to": [12, 12, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 4],
|
||||
"to": [0.95, 12, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [12, 0, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"west": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 0, 12],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"east": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 15],
|
||||
"to": [4, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"east": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 12, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"south": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 12, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 5, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 0, 0.95],
|
||||
"to": [4, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 12], "texture": "#3"},
|
||||
"south": {"uv": [4, 0, 8, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 12],
|
||||
"to": [15.05, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 8, 12], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 4, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [4, 0, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [11, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-23, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [12, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [4, 4, 5, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 12],
|
||||
"to": [0.95, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 8, 12], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 4, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 0, 0.95],
|
||||
"to": [16, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 8, 12], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 4, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 12, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [11, 4, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 39]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [4, 0, 15],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 5, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 0],
|
||||
"to": [15.05, 12, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 4, 12], "texture": "#3"},
|
||||
"west": {"uv": [4, 0, 8, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 0, 15.05],
|
||||
"to": [4, 12, 15.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 12], "texture": "#3"},
|
||||
"south": {"uv": [4, 0, 8, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 0, 4],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 4, 12, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 4, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 16, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/brass_fluid_tank_top",
|
||||
"1": "createindustry:block/brass_fluid_tank",
|
||||
"3": "createindustry:block/brass_fluid_tank_window",
|
||||
"4": "createindustry:block/brass_fluid_tank_inner",
|
||||
"particle": "createindustry:block/brass_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 4],
|
||||
"to": [1, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 5, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 4, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 16, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 0, 15.05],
|
||||
"to": [16, 12, 15.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 8, 12], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 4, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 0],
|
||||
"to": [0.95, 12, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 4, 12], "texture": "#3"},
|
||||
"west": {"uv": [4, 0, 8, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 15],
|
||||
"to": [12, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [11, 4, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [39, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"4": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/brass_fluid_valve",
|
||||
"4": "createindustry:block/brass_pipes",
|
||||
"particle": "create:block/brass_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"4": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/brass_fluid_valve",
|
||||
"4": "createindustry:block/brass_pipes",
|
||||
"particle": "create:block/brass_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"3": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/brass_fluid_valve",
|
||||
"3": "createindustry:block/brass_pipes",
|
||||
"particle": "create:block/brass_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"3": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/brass_fluid_valve",
|
||||
"3": "createindustry:block/brass_pipes",
|
||||
"particle": "create:block/brass_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"3": "create:block/pipes",
|
||||
"2": "createindustry:block/brass_fluid_valve",
|
||||
"3": "createindustry:block/brass_pipes",
|
||||
"4": "create:block/pump",
|
||||
"1_1": "create:block/axis_top",
|
||||
"1_0": "create:block/axis",
|
||||
"particle": "create:block/copper_plating"
|
||||
"particle": "create:block/brass_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"2": "createindustry:block/brass_fluid_valve",
|
||||
"4": "create:block/pump",
|
||||
"particle": "create:block/copper_plating"
|
||||
"particle": "create:block/brass_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "create:block/block",
|
||||
"textures": {
|
||||
"2": "create:block/pipes",
|
||||
"4": "create:block/pump",
|
||||
"particle": "create:block/pump"
|
||||
"2": "createindustry:block/brass_pipes",
|
||||
"4": "createindustry:block/brass_pump",
|
||||
"particle": "createindustry:block/brass_pump"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "create:block/block",
|
||||
"textures": {
|
||||
"2": "create:block/pipes",
|
||||
"4": "create:block/pump",
|
||||
"2": "createindustry:block/brass_pipes",
|
||||
"4": "createindustry:block/brass_pump",
|
||||
"5": "create:block/millstone",
|
||||
"particle": "create:block/pump"
|
||||
"particle": "createindustry:block/brass_pump"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"2": "create:block/smart_pipe_1",
|
||||
"3": "create:block/smart_pipe_2",
|
||||
"particle": "create:block/smart_pipe_2"
|
||||
"2": "createindustry:block/brass_smart_pipe_1",
|
||||
"3": "createindustry:block/brass_smart_pipe_2",
|
||||
"particle": "createindustry:block/brass_smart_pipe_2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "create:block/pipes",
|
||||
"2": "create:block/smart_pipe_1",
|
||||
"3": "create:block/smart_pipe_2"
|
||||
"1": "createindustry:block/brass_pipes",
|
||||
"2": "createindustry:block/brass_smart_pipe_1",
|
||||
"3": "createindustry:block/brass_smart_pipe_2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,74 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [16, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 15],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 16, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,154 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [4, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [12, 4, 15],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 12],
|
||||
"to": [1, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 1, 12], "texture": "#1", "cullface": "west"},
|
||||
"east": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 4, 0.95],
|
||||
"to": [12, 16, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 4],
|
||||
"to": [15.05, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 4, 15.05],
|
||||
"to": [12, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 4],
|
||||
"to": [0.95, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 8, 16], "texture": "#3", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [12, 4, 0],
|
||||
"to": [16, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"west": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 4, 12],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"east": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 15],
|
||||
"to": [4, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"east": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"south": {"uv": [15, 0, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 4, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 5, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 4, 0.95],
|
||||
"to": [4, 16, 0.95],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#3"},
|
||||
"south": {"uv": [4, 4, 8, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 12],
|
||||
"to": [15.05, 16, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 8, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 4, 4, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [4, 4, 0],
|
||||
"to": [16, 16, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [11, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-23, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [12, 16, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"east": {"uv": [4, 0, 5, 12], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 12],
|
||||
"to": [0.95, 16, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 8, 16], "texture": "#3"},
|
||||
"west": {"uv": [0, 4, 4, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 4, 0.95],
|
||||
"to": [16, 16, 0.95],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 8, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 4, 4, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 39]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [4, 4, 15],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 5, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 0],
|
||||
"to": [15.05, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 4, 16], "texture": "#3"},
|
||||
"west": {"uv": [4, 4, 8, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 4, 15.05],
|
||||
"to": [4, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#3"},
|
||||
"south": {"uv": [4, 4, 8, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 4, 4],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 12, 12], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 16, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 4],
|
||||
"to": [1, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 5, 12], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 16, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 4, 15.05],
|
||||
"to": [16, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 8, 16], "texture": "#3"},
|
||||
"south": {"uv": [0, 4, 4, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 0],
|
||||
"to": [0.95, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 4, 16], "texture": "#3"},
|
||||
"west": {"uv": [4, 4, 8, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 15],
|
||||
"to": [12, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 16, 12], "texture": "#1"},
|
||||
"east": {"uv": [11, 0, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [39, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 15],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,138 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/fluid_tank_window",
|
||||
"particle": "createindustry:block/fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [4, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [12, 0, 15],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 12],
|
||||
"to": [1, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "west"},
|
||||
"east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 0, 0.95],
|
||||
"to": [12, 16, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "north"},
|
||||
"south": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 4],
|
||||
"to": [15.05, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "east"},
|
||||
"west": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 0, 15.05],
|
||||
"to": [12, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "south"},
|
||||
"south": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 4],
|
||||
"to": [0.95, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "west"},
|
||||
"west": {"uv": [8, 0, 16, 16], "texture": "#3", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [12, 0, 0],
|
||||
"to": [16, 16, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"west": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 0, 12],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 15],
|
||||
"to": [4, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"east": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"south": {"uv": [15, 0, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 5, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 0, 0.95],
|
||||
"to": [4, 16, 0.95],
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 12, 16], "texture": "#3"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 12],
|
||||
"to": [15.05, 16, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [8, 0, 12, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [4, 0, 0],
|
||||
"to": [16, 16, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [11, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [12, 16, 1],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [4, 0, 5, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 12],
|
||||
"to": [0.95, 16, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 0, 16, 16], "texture": "#3"},
|
||||
"west": {"uv": [8, 0, 12, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 0, 0.95],
|
||||
"to": [16, 16, 0.95],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 16], "texture": "#3"},
|
||||
"south": {"uv": [8, 0, 12, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 16, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [11, 0, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [4, 0, 15],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 5, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 0],
|
||||
"to": [15.05, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [8, 0, 12, 16], "texture": "#3"},
|
||||
"west": {"uv": [12, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 0, 15.05],
|
||||
"to": [4, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [8, 0, 12, 16], "texture": "#3"},
|
||||
"south": {"uv": [12, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 0, 4],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [11, 0, 12, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 4],
|
||||
"to": [1, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 5, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 0, 16, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 0, 15.05],
|
||||
"to": [16, 16, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 0, 16, 16], "texture": "#3"},
|
||||
"south": {"uv": [8, 0, 12, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 0],
|
||||
"to": [0.95, 16, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [8, 0, 12, 16], "texture": "#3"},
|
||||
"west": {"uv": [12, 0, 16, 16], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 15],
|
||||
"to": [12, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [11, 0, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 12, 16], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,127 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 15],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 12, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"name": "block_middle",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "block_top",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [4, 5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,168 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"5": "createindustry:block/cast_iron_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [4, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 12, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [12, 4, 15],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 12],
|
||||
"to": [1, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [8, 4, 9, 12], "texture": "#1", "cullface": "west"},
|
||||
"east": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 4, 0.95],
|
||||
"to": [12, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 4],
|
||||
"to": [15.05, 12, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 4, 15.05],
|
||||
"to": [12, 12, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 4],
|
||||
"to": [0.95, 12, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 8, 8], "texture": "#5", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [12, 4, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "north"},
|
||||
"west": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 4, 12],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "east"},
|
||||
"east": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 15],
|
||||
"to": [4, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "south"},
|
||||
"east": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 12, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 4, 16, 12], "texture": "#1", "cullface": "west"},
|
||||
"south": {"uv": [7, 4, 8, 12], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 4, 12], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"5": "createindustry:block/cast_iron_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 4, 0],
|
||||
"to": [16, 12, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 5, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 4, 0.95],
|
||||
"to": [4, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 8], "texture": "#5"},
|
||||
"south": {"uv": [4, 0, 8, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 12],
|
||||
"to": [15.05, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 4, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [4, 4, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [11, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-23, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-23, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom_centered_window",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"5": "createindustry:block/cast_iron_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 0],
|
||||
"to": [12, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"east": {"uv": [4, 4, 5, 12], "texture": "#1"},
|
||||
"south": {"uv": [0, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 12],
|
||||
"to": [0.95, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 8, 8], "texture": "#5"},
|
||||
"west": {"uv": [0, 0, 4, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 4, 0.95],
|
||||
"to": [16, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 8, 8], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 4, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 0],
|
||||
"to": [1, 12, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"south": {"uv": [11, 4, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [0, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 39]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 39]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom_centered_window",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"5": "createindustry:block/cast_iron_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [4, 4, 15],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 5, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 4, 0],
|
||||
"to": [15.05, 12, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 4, 8], "texture": "#5"},
|
||||
"west": {"uv": [4, 0, 8, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 4, 15.05],
|
||||
"to": [4, 12, 15.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 8], "texture": "#5"},
|
||||
"south": {"uv": [4, 0, 8, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 4, 4],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 4, 12, 12], "texture": "#1"},
|
||||
"east": {"uv": [0, 4, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 16, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom_centered_window",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"5": "createindustry:block/cast_iron_fluid_tank_window_single",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 4, 4],
|
||||
"to": [1, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 5, 12], "texture": "#1"},
|
||||
"east": {"uv": [0, 4, 12, 12], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 16, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 4, 15.05],
|
||||
"to": [16, 12, 15.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 8, 8], "texture": "#5"},
|
||||
"south": {"uv": [0, 0, 4, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 4, 0],
|
||||
"to": [0.95, 12, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 4, 8], "texture": "#5"},
|
||||
"west": {"uv": [4, 0, 8, 8], "texture": "#5"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 4, 15],
|
||||
"to": [12, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 16, 12], "texture": "#1"},
|
||||
"east": {"uv": [11, 4, 12, 12], "texture": "#1"},
|
||||
"south": {"uv": [0, 4, 12, 12], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [39, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 4, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [39, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 12, 16, 16], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#4"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
},
|
||||
{
|
||||
"name": "block_bottom_centered_window",
|
||||
"origin": [8, 8, 8],
|
||||
"color": 0,
|
||||
"children": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [5]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,71 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 15],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 12, 16],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 16, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,154 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Lid",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "west"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [4, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"east": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 12, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"south": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [12, 0, 15],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"west": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 12],
|
||||
"to": [1, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 1, 16], "texture": "#1", "cullface": "west"},
|
||||
"east": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 0, 0.95],
|
||||
"to": [12, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "north"},
|
||||
"south": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 4],
|
||||
"to": [15.05, 12, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "east"},
|
||||
"west": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [4, 0, 15.05],
|
||||
"to": [12, 12, 15.05],
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "south"},
|
||||
"south": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 4],
|
||||
"to": [0.95, 12, 12],
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "west"},
|
||||
"west": {"uv": [0, 0, 8, 12], "texture": "#3", "cullface": "west"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [12, 0, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "north"},
|
||||
"south": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "north"},
|
||||
"west": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "north"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 0, 12],
|
||||
"to": [16, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "east"},
|
||||
"east": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "east"},
|
||||
"west": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "east"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 15],
|
||||
"to": [4, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"east": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "south"},
|
||||
"south": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "south"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 12, 4],
|
||||
"faces": {
|
||||
"east": {"uv": [12, 4, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"south": {"uv": [15, 4, 16, 16], "texture": "#1", "cullface": "west"},
|
||||
"west": {"uv": [0, 4, 4, 16], "texture": "#1", "cullface": "west"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [15, 0, 0],
|
||||
"to": [16, 12, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 5, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 0, 0.95],
|
||||
"to": [4, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 12], "texture": "#3"},
|
||||
"south": {"uv": [4, 0, 8, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 12],
|
||||
"to": [15.05, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 8, 12], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 4, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [4, 0, 0],
|
||||
"to": [16, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [11, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [-23, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 0],
|
||||
"to": [12, 12, 1],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [4, 4, 5, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 12],
|
||||
"to": [0.95, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 0, 8, 12], "texture": "#3"},
|
||||
"west": {"uv": [0, 0, 4, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 0, 0.95],
|
||||
"to": [16, 12, 0.95],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 8, 12], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 4, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 0],
|
||||
"to": [1, 12, 12],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"south": {"uv": [11, 4, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [0, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 39]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [4, 0, 15],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 4, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 5, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [15.05, 0, 0],
|
||||
"to": [15.05, 12, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 4, 12], "texture": "#3"},
|
||||
"west": {"uv": [4, 0, 8, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0, 0, 15.05],
|
||||
"to": [4, 12, 15.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 4, 12], "texture": "#3"},
|
||||
"south": {"uv": [4, 0, 8, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [15, 0, 4],
|
||||
"to": [16, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [11, 4, 12, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 4, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 16, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 8, -23]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"0": "createindustry:block/cast_iron_fluid_tank_top",
|
||||
"1": "createindustry:block/cast_iron_fluid_tank",
|
||||
"3": "createindustry:block/cast_iron_fluid_tank_window",
|
||||
"4": "createindustry:block/cast_iron_fluid_tank_inner",
|
||||
"particle": "createindustry:block/cast_iron_fluid_tank"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "SideRight",
|
||||
"from": [0, 0, 4],
|
||||
"to": [1, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 5, 16], "texture": "#1"},
|
||||
"east": {"uv": [0, 4, 12, 16], "texture": "#1"},
|
||||
"west": {"uv": [4, 4, 16, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [12, 0, 15.05],
|
||||
"to": [16, 12, 15.05],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 0, 8, 12], "texture": "#3"},
|
||||
"south": {"uv": [0, 0, 4, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Window",
|
||||
"from": [0.95, 0, 0],
|
||||
"to": [0.95, 12, 4],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"east": {"uv": [0, 0, 4, 12], "texture": "#3"},
|
||||
"west": {"uv": [4, 0, 8, 12], "texture": "#3"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "SideLeft",
|
||||
"from": [0, 0, 15],
|
||||
"to": [12, 12, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [8, 4, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [4, 4, 16, 16], "texture": "#1"},
|
||||
"east": {"uv": [11, 4, 12, 16], "texture": "#1"},
|
||||
"south": {"uv": [0, 4, 12, 16], "texture": "#1"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Bottom",
|
||||
"from": [0, 12, 0],
|
||||
"to": [16, 16, 16],
|
||||
"rotation": {"angle": 0, "axis": "y", "origin": [39, 8, 8]},
|
||||
"faces": {
|
||||
"north": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"south": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"},
|
||||
"down": {"uv": [0, 0, 16, 16], "texture": "#4"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"groups": [
|
||||
{
|
||||
"name": "tank",
|
||||
"origin": [8, 8, -23],
|
||||
"color": 0,
|
||||
"children": [0, 1, 2, 3, 4]
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"4": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/cast_iron_fluid_valve",
|
||||
"4": "createindustry:block/cast_iron_pipes",
|
||||
"particle": "createindustry:block/cast_iron_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"4": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/cast_iron_fluid_valve",
|
||||
"4": "createindustry:block/cast_iron_pipes",
|
||||
"particle": "createindustry:block/cast_iron_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"3": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/cast_iron_fluid_valve",
|
||||
"3": "createindustry:block/cast_iron_pipes",
|
||||
"particle": "createindustry:block/cast_iron_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"3": "create:block/pipes",
|
||||
"particle": "create:block/copper_plating"
|
||||
"2": "createindustry:block/cast_iron_fluid_valve",
|
||||
"3": "createindustry:block/cast_iron_pipes",
|
||||
"particle": "createindustry:block/cast_iron_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"3": "create:block/pipes",
|
||||
"2": "createindustry:block/cast_iron_fluid_valve",
|
||||
"3": "createindustry:block/cast_iron_pipes",
|
||||
"4": "create:block/pump",
|
||||
"1_1": "create:block/axis_top",
|
||||
"1_0": "create:block/axis",
|
||||
"particle": "create:block/copper_plating"
|
||||
"particle": "createindustry:block/cast_iron_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"2": "create:block/fluid_valve",
|
||||
"2": "createindustry:block/cast_iron_fluid_valve",
|
||||
"4": "create:block/pump",
|
||||
"particle": "create:block/copper_plating"
|
||||
"particle": "createindustry:block/cast_iron_block"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "create:block/block",
|
||||
"textures": {
|
||||
"2": "create:block/pipes",
|
||||
"4": "create:block/pump",
|
||||
"particle": "create:block/pump"
|
||||
"2": "createindustry:block/cast_iron_pipes",
|
||||
"4": "createindustry:block/cast_iron_pump",
|
||||
"particle": "createindustry:block/cast_iron_pump"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "create:block/block",
|
||||
"textures": {
|
||||
"2": "create:block/pipes",
|
||||
"4": "create:block/pump",
|
||||
"2": "createindustry:block/cast_iron_pipes",
|
||||
"4": "createindustry:block/cast_iron_pump",
|
||||
"5": "create:block/millstone",
|
||||
"particle": "create:block/pump"
|
||||
"particle": "createindustry:block/cast_iron_pump"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"2": "create:block/smart_pipe_1",
|
||||
"3": "create:block/smart_pipe_2",
|
||||
"particle": "create:block/smart_pipe_2"
|
||||
"2": "createindustry:block/cast_iron_smart_pipe_1",
|
||||
"3": "createindustry:block/cast_iron_smart_pipe_2",
|
||||
"particle": "createindustry:block/cast_iron_smart_pipe_2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"1": "create:block/pipes",
|
||||
"2": "create:block/smart_pipe_1",
|
||||
"3": "create:block/smart_pipe_2"
|
||||
"1": "createindustry:block/cast_iron_pipes",
|
||||
"2": "createindustry:block/cast_iron_smart_pipe_1",
|
||||
"3": "createindustry:block/cast_iron_smart_pipe_2"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -78,5 +78,12 @@
|
||||
"down": {"uv": [13.5, 0, 15.5, 2], "texture": "#1"}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [23, 45, 0],
|
||||
"translation": [0, 1.5, 0],
|
||||
"scale": [0.6, 0.6, 0.6]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "createindustry:block/copper_encased_steel_pipe",
|
||||
"particle": "createindustry:block/copper_encased_steel_pipe"
|
||||
"0": "createindustry:block/copper_encased_aluminum_pipe",
|
||||
"particle": "createindustry:block/copper_encased_aluminum_pipe"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "createindustry:block/copper_encased_steel_pipe",
|
||||
"particle": "createindustry:block/copper_encased_steel_pipe"
|
||||
"0": "createindustry:block/copper_encased_brass_pipe",
|
||||
"particle": "createindustry:block/copper_encased_brass_pipe"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "createindustry:block/copper_encased_steel_pipe",
|
||||
"particle": "createindustry:block/copper_encased_steel_pipe"
|
||||
"0": "createindustry:block/copper_encased_cast_iron_pipe",
|
||||
"particle": "createindustry:block/copper_encased_cast_iron_pipe"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"textures": {
|
||||
"0": "createindustry:block/copper_encased_steel_pipe",
|
||||
"particle": "createindustry:block/copper_encased_steel_pipe"
|
||||
"0": "createindustry:block/copper_encased_plastic_pipe",
|
||||
"particle": "createindustry:block/copper_encased_plastic_pipe"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"parent": "minecraft:block/block",
|
||||
"textures": {
|
||||
"2": "createindustry:block/engines/gasoline",
|
||||
"particle": "createindustry:block/engines/gasoline"
|
||||
"particle": "block/anvil"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"1": "create:block/axis",
|
||||
"2": "createindustry:block/engines/gasoline",
|
||||
"3": "create:block/axis_top",
|
||||
"particle": "createindustry:block/engines/gasoline"
|
||||
"particle": "block/anvil"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
|
||||
@@ -1,105 +1,106 @@
|
||||
{
|
||||
"credit": "Made with Blockbench",
|
||||
"parent": "minecraft:block/block",
|
||||
"texture_size": [128, 128],
|
||||
"textures": {
|
||||
"1": "createindustry:block/gasoline_engine",
|
||||
"particle": "minecraft:block/anvil"
|
||||
"0": "createindustry:block/engines/lpg",
|
||||
"particle": "block/anvil"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [2, 3, 2],
|
||||
"to": [14, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [3.125, 0.375, 4.625, 1.5], "texture": "#1"},
|
||||
"east": {"uv": [13.625, 4.5, 11.875, 5.625], "texture": "#1"},
|
||||
"south": {"uv": [2.25, 2.125, 3.75, 3.25], "texture": "#1"},
|
||||
"west": {"uv": [11.875, 4.5, 13.625, 5.625], "texture": "#1"},
|
||||
"up": {"uv": [5.375, 5.7, 6.875, 7.5], "rotation": 180, "texture": "#1"},
|
||||
"down": {"uv": [11.875, 0.625, 13.125, 1.5], "texture": "#1"}
|
||||
"north": {"uv": [0.5, 0, 2, 1.125], "texture": "#0"},
|
||||
"east": {"uv": [0.25, 6.125, 2, 7.25], "texture": "#0"},
|
||||
"south": {"uv": [2.75, 0, 4.25, 1.125], "texture": "#0"},
|
||||
"west": {"uv": [2, 6.125, 3.75, 7.25], "texture": "#0"},
|
||||
"up": {"uv": [2, 5.25, 0.5, 3.5], "texture": "#0"},
|
||||
"down": {"uv": [4.25, 1.75, 2.75, 3.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 0, 2],
|
||||
"to": [16, 3, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [2.875, 1.5, 4.875, 1.875], "texture": "#1"},
|
||||
"east": {"uv": [11.875, 9.625, 13.625, 9.25], "rotation": 180, "texture": "#1"},
|
||||
"south": {"uv": [2, 3.25, 4, 3.625], "texture": "#1"},
|
||||
"west": {"uv": [11.875, 9.25, 13.625, 9.625], "texture": "#1"},
|
||||
"up": {"uv": [0, 0, 16, 14], "texture": "#1"},
|
||||
"down": {"uv": [5.125, 3.75, 7.125, 5.5], "rotation": 180, "texture": "#1"}
|
||||
"north": {"uv": [0.25, 1.125, 2.25, 1.5], "texture": "#0"},
|
||||
"east": {"uv": [0.25, 7.375, 2, 7.75], "texture": "#0"},
|
||||
"south": {"uv": [2.5, 1.125, 4.5, 1.5], "texture": "#0"},
|
||||
"west": {"uv": [2, 7.375, 3.75, 7.75], "texture": "#0"},
|
||||
"up": {"uv": [2, 1.75, 0, 0], "texture": "#0"},
|
||||
"down": {"uv": [4.5, 1.75, 2.5, 3.5], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 6, 11],
|
||||
"to": [7, 15, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"east": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"south": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"west": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"up": {"uv": [15.5, 1.375, 16, 1.875], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 4, 4], "texture": "#1"}
|
||||
"north": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"east": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"south": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"west": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"up": {"uv": [6.875, 1.625, 6.375, 1.125], "texture": "#0"},
|
||||
"down": {"uv": [6.875, 1.125, 6.375, 1.625], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 6, 11],
|
||||
"to": [13, 15, 15],
|
||||
"faces": {
|
||||
"north": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"east": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"south": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"west": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"up": {"uv": [15.5, 1.375, 16, 1.875], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 4, 4], "texture": "#1"}
|
||||
"north": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"east": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"south": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"west": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"up": {"uv": [6.875, 1.625, 6.375, 1.125], "texture": "#0"},
|
||||
"down": {"uv": [6.875, 1.125, 6.375, 1.625], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [9, 6, 5],
|
||||
"to": [13, 15, 9],
|
||||
"faces": {
|
||||
"north": {"uv": [16, 0, 15.5, 1.25], "texture": "#1"},
|
||||
"east": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"south": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"west": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"up": {"uv": [15.5, 1.375, 16, 1.875], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 4, 4], "texture": "#1"}
|
||||
"north": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"east": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"south": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"west": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"up": {"uv": [6.875, 1.625, 6.375, 1.125], "texture": "#0"},
|
||||
"down": {"uv": [6.875, 1.125, 6.375, 1.625], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [3, 6, 5],
|
||||
"to": [7, 15, 9],
|
||||
"faces": {
|
||||
"north": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"east": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"south": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"west": {"uv": [15.5, 0, 16, 1.25], "texture": "#1"},
|
||||
"up": {"uv": [15.5, 1.375, 16, 1.875], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 4, 4], "texture": "#1"}
|
||||
"north": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"east": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"south": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"west": {"uv": [6.375, 0, 6.875, 1.125], "texture": "#0"},
|
||||
"up": {"uv": [6.875, 1.625, 6.375, 1.125], "texture": "#0"},
|
||||
"down": {"uv": [6.875, 1.125, 6.375, 1.625], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [0, 3, 2],
|
||||
"to": [2, 7, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4.625, 1, 4.875, 1.5], "texture": "#1"},
|
||||
"east": {"uv": [0, 0, 14, 4], "texture": "#1"},
|
||||
"south": {"uv": [2, 2.75, 2.25, 3.25], "texture": "#1"},
|
||||
"west": {"uv": [11.875, 8.75, 13.625, 9.25], "texture": "#1"},
|
||||
"up": {"uv": [8.75, 3.75, 9, 5.5], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 2, 14], "texture": "#1"}
|
||||
"north": {"uv": [2, 0.625, 2.25, 1.125], "texture": "#0"},
|
||||
"east": {"uv": [3.5, 2.25, 5.25, 2.75], "texture": "#0"},
|
||||
"south": {"uv": [2.5, 0.625, 2.75, 1.125], "texture": "#0"},
|
||||
"west": {"uv": [2, 6.875, 3.75, 7.375], "texture": "#0"},
|
||||
"up": {"uv": [2.375, 3.5, 2.125, 1.75], "texture": "#0"},
|
||||
"down": {"uv": [5.75, 5.125, 5.5, 6.875], "texture": "#0"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": [14, 3, 2],
|
||||
"to": [16, 7, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [2.875, 1, 3.125, 1.5], "texture": "#1"},
|
||||
"east": {"uv": [13.625, 8.75, 11.875, 9.25], "texture": "#1"},
|
||||
"south": {"uv": [3.75, 2.75, 4, 3.25], "texture": "#1"},
|
||||
"west": {"uv": [0, 0, 14, 4], "texture": "#1"},
|
||||
"up": {"uv": [8.875, 3.75, 8.625, 5.5], "texture": "#1"},
|
||||
"down": {"uv": [0, 0, 2, 14], "texture": "#1"}
|
||||
"north": {"uv": [0.25, 0.625, 0.5, 1.125], "texture": "#0"},
|
||||
"east": {"uv": [0.25, 6.875, 2, 7.375], "texture": "#0"},
|
||||
"south": {"uv": [4.25, 0.625, 4.5, 1.125], "texture": "#0"},
|
||||
"west": {"uv": [3.875, 5.5, 5.625, 6], "texture": "#0"},
|
||||
"up": {"uv": [0.375, 3.5, 0.125, 1.75], "texture": "#0"},
|
||||
"down": {"uv": [6, 5.125, 5.75, 6.875], "texture": "#0"}
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user