Skip to content

Commit

Permalink
Added alchemical chest and energy condenser textures
Browse files Browse the repository at this point in the history
  • Loading branch information
kill05 committed Jun 27, 2024
1 parent d299fce commit 0c3c6a7
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/github/kill05/equivalentexchange/EEBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,23 @@ public final class EEBlocks {
.build(new TransmutationTableBlock(EEConfig.BLOCK_ID++));

public static final Block ALCHEMICAL_CHEST = new BlockBuilder(EquivalentExchange.MOD_ID)
.setTopTexture(EquivalentExchange.MOD_ID + ":block/chest/top")
.setSideTextures(EquivalentExchange.MOD_ID + ":block/chest/side")
.setNorthTexture(EquivalentExchange.MOD_ID + ":block/chest/front")
.setBottomTexture(EquivalentExchange.MOD_ID + ":block/chest/bottom")
.setBlockModel(BlockModelHorizontalRotation::new)
.setHardness(2.5f)
.setResistance(10f)
.setBlockSound(BlockSounds.STONE)
.setTags(BlockTags.MINEABLE_BY_PICKAXE)
.build(new AlchemicalChestBlock(EEConfig.BLOCK_ID++));

public static final Block ENERGY_CONDENSER = new BlockBuilder(EquivalentExchange.MOD_ID)
.setTopTexture(EquivalentExchange.MOD_ID + ":block/condenser/top")
.setSideTextures(EquivalentExchange.MOD_ID + ":block/condenser/side")
.setNorthTexture(EquivalentExchange.MOD_ID + ":block/condenser/front")
.setBottomTexture(EquivalentExchange.MOD_ID + ":block/condenser/bottom")
.setBlockModel(BlockModelHorizontalRotation::new)
.setHardness(2.5f)
.setResistance(10f)
.setBlockSound(BlockSounds.STONE)
Expand Down
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0c3c6a7

Please sign in to comment.