From 785e40ce3e5b926bee5739d84fd34e9be38e27ec Mon Sep 17 00:00:00 2001 From: shartte Date: Tue, 16 Aug 2016 15:38:24 +0200 Subject: [PATCH] Implemented quartz fixture model (#34) * Implemented the actual quartz fixture model. * Added a custom texture for the metal bits of the quartz fixture. --- .../appeng/block/misc/BlockQuartzTorch.java | 48 ++++++- .../blockstates/BlockQuartzTorch.json | 16 +++ .../models/block/QuartzTorch.standing.json | 125 ++++++++++++++++++ .../block/QuartzTorch.standing.odd.json | 125 ++++++++++++++++++ .../models/block/QuartzTorch.wall.json | 87 ++++++++++++ .../models/block/QuartzTorch.wall.odd.json | 87 ++++++++++++ .../models/item/BlockQuartzTorch.json | 74 +++++++++++ .../textures/blocks/BlockQuartzTorch.png | Bin 0 -> 824 bytes .../textures/blocks/BlockQuartzTorchMetal.png | Bin 0 -> 622 bytes 9 files changed, 556 insertions(+), 6 deletions(-) create mode 100644 src/main/resources/assets/appliedenergistics2/blockstates/BlockQuartzTorch.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.standing.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.standing.odd.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.wall.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.wall.odd.json create mode 100644 src/main/resources/assets/appliedenergistics2/models/item/BlockQuartzTorch.json create mode 100644 src/main/resources/assets/appliedenergistics2/textures/blocks/BlockQuartzTorch.png create mode 100644 src/main/resources/assets/appliedenergistics2/textures/blocks/BlockQuartzTorchMetal.png diff --git a/src/main/java/appeng/block/misc/BlockQuartzTorch.java b/src/main/java/appeng/block/misc/BlockQuartzTorch.java index 8804cb615..6621efc34 100644 --- a/src/main/java/appeng/block/misc/BlockQuartzTorch.java +++ b/src/main/java/appeng/block/misc/BlockQuartzTorch.java @@ -27,10 +27,12 @@ import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.block.properties.IProperty; +import net.minecraft.block.properties.PropertyBool; import net.minecraft.block.properties.PropertyDirection; import net.minecraft.block.state.IBlockState; import net.minecraft.client.Minecraft; import net.minecraft.entity.Entity; +import net.minecraft.util.BlockRenderLayer; import net.minecraft.util.EnumFacing; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util.math.BlockPos; @@ -52,15 +54,18 @@ import appeng.helpers.MetaRotation; public class BlockQuartzTorch extends AEBaseBlock implements IOrientableBlock, ICustomCollision { - + // Cannot use the vanilla FACING property here because it excludes facing DOWN - public static final PropertyDirection FACING = PropertyDirection.create("facing"); - + public static final PropertyDirection FACING = PropertyDirection.create( "facing" ); + + // Used to alternate between two variants of the torch on adjacent blocks + public static final PropertyBool ODD = PropertyBool.create( "odd" ); + public BlockQuartzTorch() { super( Material.CIRCUITS ); - this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, EnumFacing.UP)); + this.setDefaultState( this.blockState.getBaseState().withProperty( FACING, EnumFacing.UP ).withProperty( ODD, false ) ); this.setFeature( EnumSet.of( AEFeature.DecorativeLights ) ); this.setLightLevel( 0.9375F ); this.setLightOpacity( 0 ); @@ -68,10 +73,22 @@ public class BlockQuartzTorch extends AEBaseBlock implements IOrientableBlock, I this.setOpaque( false ); } + /** + * Sets the "ODD" property of the block state according to the placement of the block. + */ + @Override + public IBlockState getActualState( IBlockState state, IBlockAccess worldIn, BlockPos pos ) + { + boolean oddPlacement = ((pos.getX() + pos.getY() + pos.getZ()) % 2) != 0; + + return super.getActualState( state, worldIn, pos ) + .withProperty( ODD, oddPlacement ); + } + @Override public int getMetaFromState( final IBlockState state ) { - return state.getValue(FACING).ordinal(); + return state.getValue( FACING ).ordinal(); } @Override @@ -84,7 +101,7 @@ public class BlockQuartzTorch extends AEBaseBlock implements IOrientableBlock, I @Override protected IProperty[] getAEStates() { - return new IProperty[] { FACING }; + return new IProperty[] { FACING, ODD }; } @Override @@ -188,4 +205,23 @@ public class BlockQuartzTorch extends AEBaseBlock implements IOrientableBlock, I { return new MetaRotation( w, pos, FACING ); } + + @Override + public boolean isOpaque() + { + return false; + } + + @Override + public boolean isFullCube( IBlockState state ) + { + return false; + } + + @SideOnly(Side.CLIENT) + public BlockRenderLayer getBlockLayer() + { + return BlockRenderLayer.CUTOUT; + } + } diff --git a/src/main/resources/assets/appliedenergistics2/blockstates/BlockQuartzTorch.json b/src/main/resources/assets/appliedenergistics2/blockstates/BlockQuartzTorch.json new file mode 100644 index 000000000..97ed478d5 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/blockstates/BlockQuartzTorch.json @@ -0,0 +1,16 @@ +{ + "variants": { + "facing=up,odd=false": { "model": "appliedenergistics2:QuartzTorch.standing" }, + "facing=down,odd=false": { "model": "appliedenergistics2:QuartzTorch.standing", "x": 180 }, + "facing=north,odd=false": { "model": "appliedenergistics2:QuartzTorch.wall" }, + "facing=south,odd=false": { "model": "appliedenergistics2:QuartzTorch.wall", "y": 180 }, + "facing=east,odd=false": { "model": "appliedenergistics2:QuartzTorch.wall", "y": 90 }, + "facing=west,odd=false": { "model": "appliedenergistics2:QuartzTorch.wall", "y": 270 }, + "facing=up,odd=true": { "model": "appliedenergistics2:QuartzTorch.standing.odd" }, + "facing=down,odd=true": { "model": "appliedenergistics2:QuartzTorch.standing.odd", "x": 180 }, + "facing=north,odd=true": { "model": "appliedenergistics2:QuartzTorch.wall.odd" }, + "facing=south,odd=true": { "model": "appliedenergistics2:QuartzTorch.wall.odd", "y": 180 }, + "facing=east,odd=true": { "model": "appliedenergistics2:QuartzTorch.wall.odd", "y": 90 }, + "facing=west,odd=true": { "model": "appliedenergistics2:QuartzTorch.wall.odd", "y": 270 } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.standing.json b/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.standing.json new file mode 100644 index 000000000..a7e1712ea --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.standing.json @@ -0,0 +1,125 @@ +{ + "textures": { + "quartz": "appliedenergistics2:blocks/BlockQuartzTorch", + "metal": "appliedenergistics2:blocks/BlockQuartzTorchMetal" + }, + "elements": [ + { + "name": "Middle Plate", + "from": [ 6.0, 3.0, 6.0 ], + "to": [ 10.0, 4.0, 10.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "Lower Quartz Block", + "from": [ 7.0, 1.0, 7.0 ], + "to": [ 9.0, 3.0, 9.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Lower Quartz Tip", + "from": [ 7.0, 0.0, 7.0 ], + "to": [ 8.0, 1.0, 8.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Block", + "from": [ 7.0, 4.0, 7.0 ], + "to": [ 9.0, 6.0, 9.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Tip", + "from": [ 8.0, 6.0, 8.0 ], + "to": [ 9.0, 7.0, 9.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "NW Feet", + "from": [ 6.0, 0.0, 6.0 ], + "to": [ 7.0, 3.0, 7.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "NE Feet", + "from": [ 6.0, 0.0, 9.0 ], + "to": [ 7.0, 3.0, 10.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "SW Feet", + "from": [ 9.0, 0.0, 6.0 ], + "to": [ 10.0, 3.0, 7.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "SE Feet", + "from": [ 9.0, 0.0, 9.0 ], + "to": [ 10.0, 3.0, 10.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.standing.odd.json b/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.standing.odd.json new file mode 100644 index 000000000..acba5e709 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.standing.odd.json @@ -0,0 +1,125 @@ +{ + "textures": { + "quartz": "appliedenergistics2:blocks/BlockQuartzTorch", + "metal": "appliedenergistics2:blocks/BlockQuartzTorchMetal" + }, + "elements": [ + { + "name": "Middle Plate", + "from": [ 6.0, 3.0, 6.0 ], + "to": [ 10.0, 4.0, 10.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "Lower Quartz Block", + "from": [ 7.0, 1.0, 7.0 ], + "to": [ 9.0, 3.0, 9.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Lower Quartz Tip", + "from": [ 8.0, 0.0, 8.0 ], + "to": [ 9.0, 1.0, 9.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Block", + "from": [ 7.0, 4.0, 7.0 ], + "to": [ 9.0, 6.0, 9.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Tip", + "from": [ 7.0, 6.0, 7.0 ], + "to": [ 8.0, 7.0, 8.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "NW Feet", + "from": [ 6.0, 0.0, 6.0 ], + "to": [ 7.0, 3.0, 7.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "NE Feet", + "from": [ 6.0, 0.0, 9.0 ], + "to": [ 7.0, 3.0, 10.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "SW Feet", + "from": [ 9.0, 0.0, 6.0 ], + "to": [ 10.0, 3.0, 7.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "SE Feet", + "from": [ 9.0, 0.0, 9.0 ], + "to": [ 10.0, 3.0, 10.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.wall.json b/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.wall.json new file mode 100644 index 000000000..6d6f23208 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.wall.json @@ -0,0 +1,87 @@ +{ + "ambientocclusion": false, + "textures": { + "quartz": "appliedenergistics2:blocks/BlockQuartzTorch", + "metal": "appliedenergistics2:blocks/BlockQuartzTorchMetal" + }, + "elements": [ + { + "name": "Connecting Strut", + "from": [ 7.0, 7.0, 14.0 ], + "to": [ 8.0, 8.0, 16.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "Middle Plate", + "from": [ 6.0, 7.0, 10.0 ], + "to": [ 10.0, 8.0, 14.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "Lower Quartz Block", + "from": [ 7.0, 5.0, 11.0 ], + "to": [ 9.0, 7.0, 13.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Lower Quartz Tip", + "from": [ 7.0, 4.0, 11.0 ], + "to": [ 8.0, 5.0, 12.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Block", + "from": [ 7.0, 8.0, 11.0 ], + "to": [ 9.0, 10.0, 13.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Tip", + "from": [ 8.0, 10.0, 12.0 ], + "to": [ 9.0, 11.0, 13.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.wall.odd.json b/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.wall.odd.json new file mode 100644 index 000000000..ebfb61501 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/block/QuartzTorch.wall.odd.json @@ -0,0 +1,87 @@ +{ + "ambientocclusion": false, + "textures": { + "quartz": "appliedenergistics2:blocks/BlockQuartzTorch", + "metal": "appliedenergistics2:blocks/BlockQuartzTorchMetal" + }, + "elements": [ + { + "name": "Connecting Strut", + "from": [ 7.0, 7.0, 14.0 ], + "to": [ 8.0, 8.0, 16.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "Middle Plate", + "from": [ 6.0, 7.0, 10.0 ], + "to": [ 10.0, 8.0, 14.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "Lower Quartz Block", + "from": [ 7.0, 5.0, 11.0 ], + "to": [ 9.0, 7.0, 13.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Lower Quartz Tip", + "from": [ 8.0, 4.0, 12.0 ], + "to": [ 9.0, 5.0, 13.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Block", + "from": [ 7.0, 8.0, 11.0 ], + "to": [ 9.0, 10.0, 13.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Tip", + "from": [ 7.0, 10.0, 11.0 ], + "to": [ 8.0, 11.0, 12.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/models/item/BlockQuartzTorch.json b/src/main/resources/assets/appliedenergistics2/models/item/BlockQuartzTorch.json new file mode 100644 index 000000000..89acf7756 --- /dev/null +++ b/src/main/resources/assets/appliedenergistics2/models/item/BlockQuartzTorch.json @@ -0,0 +1,74 @@ +{ + "parent": "block/block", + "textures": { + "quartz": "appliedenergistics2:blocks/BlockQuartzTorch", + "metal": "appliedenergistics2:blocks/BlockQuartzTorchMetal" + }, + "elements": [ + { + "name": "Middle Plate", + "from": [ 6.0, 8.0, 6.0 ], + "to": [ 10.0, 9.0, 10.0 ], + "faces": { + "north": { "texture": "#metal" }, + "east": { "texture": "#metal" }, + "south": { "texture": "#metal" }, + "west": { "texture": "#metal" }, + "up": { "texture": "#metal" }, + "down": { "texture": "#metal" } + } + }, + { + "name": "Lower Quartz Block", + "from": [ 7.0, 6.0, 7.0 ], + "to": [ 9.0, 8.0, 9.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Lower Quartz Tip", + "from": [ 8.0, 5.0, 7.0 ], + "to": [ 9.0, 6.0, 8.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Block", + "from": [ 7.0, 9.0, 7.0 ], + "to": [ 9.0, 11.0, 9.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + }, + { + "name": "Upper Quartz Tip", + "from": [ 7.0, 11.0, 8.0 ], + "to": [ 8.0, 12.0, 9.0 ], + "faces": { + "north": { "texture": "#quartz" }, + "east": { "texture": "#quartz" }, + "south": { "texture": "#quartz" }, + "west": { "texture": "#quartz" }, + "up": { "texture": "#quartz" }, + "down": { "texture": "#quartz" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/appliedenergistics2/textures/blocks/BlockQuartzTorch.png b/src/main/resources/assets/appliedenergistics2/textures/blocks/BlockQuartzTorch.png new file mode 100644 index 0000000000000000000000000000000000000000..4c61b6ddbbc7909a33a16cfa2bd0f460ca29eeac GIT binary patch literal 824 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4mJh`2Kmqb6B!s7SkfJR9T^xl_H+M9WMyDr z;4JWnEM{QfTL!|6?RQq@GcYhnmAFQf1m~xflqVLYG6W=M=9TFAxrQi|8S9zq85+8O zb~0yRVA|s8;uvD#uR8g3zEGgZvFHCk)f?#b6uv*VX&d%p`&wroGUh~F&rOC8Ub2#7hyg%aLRavaM z+k0*@>$}iDH#J1=X}*(+4!`o!9YHKPvvUnMP2`#o-Vx7vZtaq zpnR!I^*Z4{ph((CU@%nvPY;M+7X|OZ4ki zwJ*l6X2{;OFW^$+&ABJ#azu{TKRL4{eBQ}~qA5i;*mX4h*Tq{J*J3nZOzJeB>O5`P6u$Ru8h7WMmMSRZ)GA-uFY@|Mw8j-4&dj*7 zuv0=Y3ky}7cJJ{Od(e6FJWtBi!W70hhlE$J3%(mNe^Ja7zT&X+MD%w*DZv~U-^KQ9 zvXRGQoJ=m}F&~RGhO(WA8eD+Rns4~BDUgEXD zwqCAlN()ZEY&2A5tvz;P$~`gns;Tczt(r9L@M6#0jHZB%cXtLgNZ&czXHheKgUOTS zdwcsf#^x`ZK69RqJkxY3b?;1`&OjgIbvBEQ@2izg-xPC>M+)~TIThNqnmS)i z_h0kdqMW_GWbxb^0oD(v+1*aw+wr4HDC=e5f`!K!>{P67E&pr(;>YqU4$&*K_j3NO hl3kHy9dNP!?~b)R87WUK85kHCJYD@<);T3K0RY<+cAWqK literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/appliedenergistics2/textures/blocks/BlockQuartzTorchMetal.png b/src/main/resources/assets/appliedenergistics2/textures/blocks/BlockQuartzTorchMetal.png new file mode 100644 index 0000000000000000000000000000000000000000..c2ef666288dac77cca39892ff04eca898b8d8273 GIT binary patch literal 622 zcmeAS@N?(olHy`uVBq!ia0y~yU=RRd4kiW$h6xih%orFLBuiW)N`mv#O3D+9QW+dm z@{>{(JaZG%Q-e|yQz{EjrrIztFbR0NIEGZ*k_oz->l`?J%_Jd4JCSb6(qI&E6H+SS1CL= zx%M%G%(4r```9u0eQ?AEnu!ZJ#MiYHXvCf>U0b++>3VYOL;PY%ha28fDf{#g_- zPkvs|T5tQn>ub+!65BgRzb7(9&m!m^pWul(TRt9q9<#eF^yIbIzOA7iEC$9vtA{uS+9#B|K#tRz!l zVbhc6bDDN?)k$pbIIpxxo`2FamM@Pl2ggo1@Z!_Q!k`{~?kSN9eB1j@PK*EgfxF3n z`TiRMP7XW2>dLWp{5&8xue0IM*WxIqS(1{s48C06BJlcgLwLx_M}ZCYvlPqkyf^&( j`g6RdgTe~DWM4fFnTNs literal 0 HcmV?d00001