├── .gitignore ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── server.properties ├── src └── main │ ├── java │ └── cjminecraft │ │ └── bitofeverything │ │ ├── BitOfEverything.java │ │ ├── Reference.java │ │ ├── blocks │ │ ├── BlockBreaker.java │ │ ├── BlockCanvas.java │ │ ├── BlockCotton.java │ │ ├── BlockDoubleFurnace.java │ │ ├── BlockEnergyCell.java │ │ ├── BlockFurnaceGenerator.java │ │ ├── BlockGamemodeDetector.java │ │ ├── BlockMachine.java │ │ ├── BlockMachineFrame.java │ │ ├── BlockTinBlock.java │ │ ├── BlockTinButton.java │ │ ├── BlockTinDoor.java │ │ ├── BlockTinFence.java │ │ ├── BlockTinFenceGate.java │ │ ├── BlockTinOre.java │ │ ├── BlockTinPressurePlate.java │ │ ├── BlockTinSlab.java │ │ ├── BlockTinSlabDouble.java │ │ ├── BlockTinSlabHalf.java │ │ ├── BlockTinStairs.java │ │ └── item │ │ │ ├── IMetaBlockName.java │ │ │ ├── ItemBlockBreaker.java │ │ │ ├── ItemBlockDoor.java │ │ │ ├── ItemBlockMachine.java │ │ │ └── ItemBlockMeta.java │ │ ├── capabilties │ │ ├── IWork.java │ │ └── Worker.java │ │ ├── client │ │ └── gui │ │ │ ├── GuiBlockBreaker.java │ │ │ ├── GuiDoubleFurnace.java │ │ │ ├── GuiEnergyCell.java │ │ │ ├── GuiFurnaceGenerator.java │ │ │ ├── GuiHandler.java │ │ │ └── ProgressBar.java │ │ ├── config │ │ ├── BoeConfig.java │ │ └── BoeConfigGuiFactory.java │ │ ├── container │ │ ├── ContainerBlockBreaker.java │ │ ├── ContainerDoubleFurnace.java │ │ ├── ContainerEnergyCell.java │ │ ├── ContainerFurnaceGenerator.java │ │ └── slots │ │ │ ├── SlotEnchantedBook.java │ │ │ ├── SlotEnergyItem.java │ │ │ ├── SlotFurnaceFuel.java │ │ │ └── SlotFurnaceOutput.java │ │ ├── creativetabs │ │ ├── TabBOEBlocks.java │ │ └── TabBOEItems.java │ │ ├── events │ │ ├── PlayerEvents.java │ │ ├── SoulStealerEvents.java │ │ └── TooltipEvents.java │ │ ├── handlers │ │ ├── AchievementHandler.java │ │ ├── BoeSoundHandler.java │ │ ├── EnumHandler.java │ │ ├── EventHandler.java │ │ ├── FuelHandler.java │ │ ├── OreDictionaryHandler.java │ │ └── RecipeHandler.java │ │ ├── init │ │ ├── ModArmour.java │ │ ├── ModBlocks.java │ │ ├── ModCapabilities.java │ │ ├── ModItems.java │ │ └── ModTools.java │ │ ├── items │ │ ├── ItemChip.java │ │ ├── ItemHeart.java │ │ ├── ItemModArmour.java │ │ ├── ItemModAxe.java │ │ ├── ItemModFood.java │ │ ├── ItemModHoe.java │ │ ├── ItemModPickaxe.java │ │ ├── ItemModShovel.java │ │ ├── ItemModSword.java │ │ ├── ItemPaintBrush.java │ │ ├── ItemSoulStealer.java │ │ └── ItemTinIngot.java │ │ ├── network │ │ ├── PacketGetEnergyDifference.java │ │ ├── PacketGetWorker.java │ │ ├── PacketHandler.java │ │ ├── PacketReturnEnergyDifference.java │ │ └── PacketReturnWorker.java │ │ ├── proxy │ │ ├── ClientProxy.java │ │ ├── CommonProxy.java │ │ └── ServerProxy.java │ │ ├── tileentity │ │ ├── TileEntityBlockBreaker.java │ │ ├── TileEntityCanvas.java │ │ ├── TileEntityDoubleFurnace.java │ │ ├── TileEntityEnergyCell.java │ │ ├── TileEntityFurnaceGenerator.java │ │ └── TileEntitySidedInventory.java │ │ ├── util │ │ ├── DummyBlockProperty.java │ │ ├── Lang.java │ │ ├── RecipeClearColour.java │ │ ├── RecipeItemColour.java │ │ └── Utils.java │ │ └── worldgen │ │ ├── EndGenPredicate.java │ │ ├── NetherGenPredicate.java │ │ ├── OreGen.java │ │ ├── StructureGen.java │ │ └── StructureGenerator.java │ └── resources │ ├── assets │ └── boe │ │ ├── blockstates │ │ ├── block_breaker.json │ │ ├── canvas.json │ │ ├── cotton.json │ │ ├── double_furnace.json │ │ ├── energy_cell.json │ │ ├── furnace_generator.json │ │ ├── gamemode_detector.json │ │ ├── machine_frame.json │ │ ├── tin_block.json │ │ ├── tin_button.json │ │ ├── tin_door.json │ │ ├── tin_fence.json │ │ ├── tin_fence_gate.json │ │ ├── tin_ore.json │ │ ├── tin_pressure_plate.json │ │ ├── tin_slab_double.json │ │ ├── tin_slab_half.json │ │ └── tin_stairs.json │ │ ├── lang │ │ ├── en_US.lang │ │ ├── fr_FR.lang │ │ └── sv_SE.lang │ │ ├── models │ │ ├── block │ │ │ ├── block_breaker_advanced.json │ │ │ ├── block_breaker_advanced_activated.json │ │ │ ├── block_breaker_basic.json │ │ │ ├── block_breaker_basic_activated.json │ │ │ ├── canvas.json │ │ │ ├── cotton_stage0.json │ │ │ ├── cotton_stage1.json │ │ │ ├── cotton_stage2.json │ │ │ ├── cotton_stage3.json │ │ │ ├── cotton_stage4.json │ │ │ ├── cotton_stage5.json │ │ │ ├── cotton_stage6.json │ │ │ ├── cotton_stage7.json │ │ │ ├── ctm │ │ │ │ ├── canvas.cf │ │ │ │ ├── machine_advanced.cf │ │ │ │ └── machine_basic.cf │ │ │ ├── double_furnace.json │ │ │ ├── double_furnace_activated.json │ │ │ ├── energy_cell_centre_advanced.json │ │ │ ├── energy_cell_centre_basic.json │ │ │ ├── energy_cell_connection_in_advanced.json │ │ │ ├── energy_cell_connection_in_basic.json │ │ │ ├── energy_cell_connection_normal_advanced.json │ │ │ ├── energy_cell_connection_normal_basic.json │ │ │ ├── energy_cell_connection_out_advanced.json │ │ │ ├── energy_cell_connection_out_basic.json │ │ │ ├── furnace_generator_advanced.json │ │ │ ├── furnace_generator_advanced_activated.json │ │ │ ├── furnace_generator_basic.json │ │ │ ├── furnace_generator_basic_activated.json │ │ │ ├── gamemode_detector.json │ │ │ ├── machine.json │ │ │ ├── machine_frame_advanced.json │ │ │ ├── machine_frame_basic.json │ │ │ ├── tin_block.json │ │ │ ├── tin_button.json │ │ │ ├── tin_button_inventory.json │ │ │ ├── tin_button_pressed.json │ │ │ ├── tin_door_bottom.json │ │ │ ├── tin_door_bottom_rh.json │ │ │ ├── tin_door_top.json │ │ │ ├── tin_door_top_rh.json │ │ │ ├── tin_fence_gate_closed.json │ │ │ ├── tin_fence_gate_open.json │ │ │ ├── tin_fence_post.json │ │ │ ├── tin_fence_side.json │ │ │ ├── tin_inner_stairs.json │ │ │ ├── tin_ore.json │ │ │ ├── tin_ore_end.json │ │ │ ├── tin_ore_nether.json │ │ │ ├── tin_ore_overworld.json │ │ │ ├── tin_outer_stairs.json │ │ │ ├── tin_pressure_plate_down.json │ │ │ ├── tin_pressure_plate_up.json │ │ │ ├── tin_slab_bottom.json │ │ │ ├── tin_slab_top.json │ │ │ ├── tin_stairs.json │ │ │ ├── tin_wall_gate_closed.json │ │ │ └── tin_wall_gate_open.json │ │ └── item │ │ │ ├── block_breaker_advanced.json │ │ │ ├── block_breaker_basic.json │ │ │ ├── canvas.json │ │ │ ├── chip_advanced.json │ │ │ ├── chip_basic.json │ │ │ ├── cotton.json │ │ │ ├── double_furnace.json │ │ │ ├── energy_cell_advanced.json │ │ │ ├── energy_cell_basic.json │ │ │ ├── fabric.json │ │ │ ├── furnace_generator_advanced.json │ │ │ ├── furnace_generator_basic.json │ │ │ ├── gamemode_detector.json │ │ │ ├── heart.json │ │ │ ├── infinity_flame.json │ │ │ ├── machine_frame_advanced.json │ │ │ ├── machine_frame_basic.json │ │ │ ├── nice_biscuit.json │ │ │ ├── paint_brush.json │ │ │ ├── soul_stealer.json │ │ │ ├── tin_apple.json │ │ │ ├── tin_axe.json │ │ │ ├── tin_block.json │ │ │ ├── tin_boots.json │ │ │ ├── tin_button.json │ │ │ ├── tin_chestplate.json │ │ │ ├── tin_door.json │ │ │ ├── tin_fence.json │ │ │ ├── tin_fence_gate.json │ │ │ ├── tin_helmet.json │ │ │ ├── tin_hoe.json │ │ │ ├── tin_ingot.json │ │ │ ├── tin_leggings.json │ │ │ ├── tin_nugget.json │ │ │ ├── tin_ore.json │ │ │ ├── tin_ore_end.json │ │ │ ├── tin_ore_nether.json │ │ │ ├── tin_ore_overworld.json │ │ │ ├── tin_pickaxe.json │ │ │ ├── tin_pressure_plate.json │ │ │ ├── tin_shovel.json │ │ │ ├── tin_slab_half.json │ │ │ ├── tin_stairs.json │ │ │ ├── tin_stick.json │ │ │ └── tin_sword.json │ │ ├── sounds.json │ │ ├── sounds │ │ └── block │ │ │ ├── tin_button │ │ │ ├── click_off.ogg │ │ │ └── click_on.ogg │ │ │ └── tin_fence_gate │ │ │ ├── close.ogg │ │ │ └── open.ogg │ │ ├── structures │ │ └── cabin.nbt │ │ └── textures │ │ ├── blocks │ │ ├── block_breaker_advanced.png │ │ ├── block_breaker_advanced_front.png │ │ ├── block_breaker_advanced_front_activated.png │ │ ├── block_breaker_advanced_front_activated.png.mcmeta │ │ ├── block_breaker_basic.png │ │ ├── block_breaker_basic_front.png │ │ ├── block_breaker_basic_front_activated.png │ │ ├── block_breaker_basic_front_activated.png.mcmeta │ │ ├── block_breaker_front_advanced.png │ │ ├── block_breaker_front_advanced_activated.png │ │ ├── block_breaker_front_advanced_activated.png.mcmeta │ │ ├── block_breaker_front_basic.png │ │ ├── block_breaker_front_basic_activated.png │ │ ├── block_breaker_front_basic_activated.png.mcmeta │ │ ├── block_breaker_side_advanced.png │ │ ├── block_breaker_side_basic.png │ │ ├── block_placer_side_advanced.png │ │ ├── block_placer_side_basic.png │ │ ├── canvas.png │ │ ├── canvas_core.png │ │ ├── cotton_stage_0.png │ │ ├── cotton_stage_1.png │ │ ├── cotton_stage_2.png │ │ ├── cotton_stage_3.png │ │ ├── cotton_stage_4.png │ │ ├── cotton_stage_5.png │ │ ├── cotton_stage_6.png │ │ ├── cotton_stage_7.png │ │ ├── ctm │ │ │ ├── canvas.ctx │ │ │ ├── canvas.png │ │ │ ├── machine_advanced.ctx │ │ │ ├── machine_advanced.png │ │ │ ├── machine_basic.ctx │ │ │ └── machine_basic.png │ │ ├── door_tin_lower.png │ │ ├── door_tin_upper.png │ │ ├── double_furnace_front_off.png │ │ ├── double_furnace_front_on.png │ │ ├── energy_cell.png │ │ ├── energy_cell.png.mcmeta │ │ ├── energy_cell_centre_advanced.png │ │ ├── energy_cell_centre_advanced.png.mcmeta │ │ ├── energy_cell_centre_basic.png │ │ ├── energy_cell_centre_basic.png.mcmeta │ │ ├── energy_cell_strip_in.png │ │ ├── energy_cell_strip_in.png.mcmeta │ │ ├── energy_cell_strip_normal.png │ │ ├── energy_cell_strip_out.png │ │ ├── energy_cell_strip_out.png.mcmeta │ │ ├── furnace_generator_front_advanced.png │ │ ├── furnace_generator_front_advanced_activated.png │ │ ├── furnace_generator_front_basic.png │ │ ├── furnace_generator_front_basic_activated.png │ │ ├── gamemode_detector.png │ │ ├── machine_advanced.png │ │ ├── machine_basic.png │ │ ├── tin_block.png │ │ ├── tin_ore.png │ │ ├── tin_ore_end.png │ │ └── tin_ore_nether.png │ │ ├── gui │ │ └── container │ │ │ ├── block_breaker.png │ │ │ ├── double_furnace.png │ │ │ ├── energy_cell.png │ │ │ └── furnace_generator.png │ │ ├── items │ │ ├── chip_advanced.png │ │ ├── chip_basic.png │ │ ├── cotton.png │ │ ├── door_tin.png │ │ ├── fabric.png │ │ ├── heart.png │ │ ├── infinity_flame.png │ │ ├── nice_biscuit.png │ │ ├── paint_brush_0.png │ │ ├── paint_brush_1.png │ │ ├── soul_stealer.png │ │ ├── tin_apple.png │ │ ├── tin_axe.png │ │ ├── tin_boots.png │ │ ├── tin_chestplate.png │ │ ├── tin_helmet.png │ │ ├── tin_hoe.png │ │ ├── tin_ingot.png │ │ ├── tin_leggings.png │ │ ├── tin_nugget.png │ │ ├── tin_pickaxe.png │ │ ├── tin_shovel.png │ │ ├── tin_stick.png │ │ └── tin_sword.png │ │ └── models │ │ └── armor │ │ ├── tin_layer_1.png │ │ └── tin_layer_2.png │ └── mcmod.info └── update.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/gradlew.bat -------------------------------------------------------------------------------- /server.properties: -------------------------------------------------------------------------------- 1 | #Minecraft server properties 2 | #Sat Jul 01 12:21:20 BST 2017 3 | -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/BitOfEverything.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/BitOfEverything.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/Reference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/Reference.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockBreaker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockBreaker.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockCanvas.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockCotton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockCotton.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockDoubleFurnace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockDoubleFurnace.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockEnergyCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockEnergyCell.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockFurnaceGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockFurnaceGenerator.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockGamemodeDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockGamemodeDetector.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockMachine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockMachine.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockMachineFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockMachineFrame.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinBlock.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinButton.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinDoor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinDoor.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinFence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinFence.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinFenceGate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinFenceGate.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinOre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinOre.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinPressurePlate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinPressurePlate.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinSlab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinSlab.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinSlabDouble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinSlabDouble.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinSlabHalf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinSlabHalf.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/BlockTinStairs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/BlockTinStairs.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/item/IMetaBlockName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/item/IMetaBlockName.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/item/ItemBlockBreaker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/item/ItemBlockBreaker.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/item/ItemBlockDoor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/item/ItemBlockDoor.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/item/ItemBlockMachine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/item/ItemBlockMachine.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/blocks/item/ItemBlockMeta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/blocks/item/ItemBlockMeta.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/capabilties/IWork.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/capabilties/IWork.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/capabilties/Worker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/capabilties/Worker.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/client/gui/GuiBlockBreaker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/client/gui/GuiBlockBreaker.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/client/gui/GuiDoubleFurnace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/client/gui/GuiDoubleFurnace.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/client/gui/GuiEnergyCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/client/gui/GuiEnergyCell.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/client/gui/GuiFurnaceGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/client/gui/GuiFurnaceGenerator.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/client/gui/GuiHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/client/gui/GuiHandler.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/client/gui/ProgressBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/client/gui/ProgressBar.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/config/BoeConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/config/BoeConfig.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/config/BoeConfigGuiFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/config/BoeConfigGuiFactory.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/container/ContainerBlockBreaker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/container/ContainerBlockBreaker.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/container/ContainerDoubleFurnace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/container/ContainerDoubleFurnace.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/container/ContainerEnergyCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/container/ContainerEnergyCell.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/container/ContainerFurnaceGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/container/ContainerFurnaceGenerator.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/container/slots/SlotEnchantedBook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/container/slots/SlotEnchantedBook.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/container/slots/SlotEnergyItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/container/slots/SlotEnergyItem.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/container/slots/SlotFurnaceFuel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/container/slots/SlotFurnaceFuel.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/container/slots/SlotFurnaceOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/container/slots/SlotFurnaceOutput.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/creativetabs/TabBOEBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/creativetabs/TabBOEBlocks.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/creativetabs/TabBOEItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/creativetabs/TabBOEItems.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/events/PlayerEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/events/PlayerEvents.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/events/SoulStealerEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/events/SoulStealerEvents.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/events/TooltipEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/events/TooltipEvents.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/handlers/AchievementHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/handlers/AchievementHandler.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/handlers/BoeSoundHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/handlers/BoeSoundHandler.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/handlers/EnumHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/handlers/EnumHandler.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/handlers/EventHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/handlers/EventHandler.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/handlers/FuelHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/handlers/FuelHandler.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/handlers/OreDictionaryHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/handlers/OreDictionaryHandler.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/handlers/RecipeHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/handlers/RecipeHandler.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/init/ModArmour.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/init/ModArmour.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/init/ModBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/init/ModBlocks.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/init/ModCapabilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/init/ModCapabilities.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/init/ModItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/init/ModItems.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/init/ModTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/init/ModTools.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemChip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemChip.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemHeart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemHeart.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemModArmour.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemModArmour.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemModAxe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemModAxe.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemModFood.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemModFood.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemModHoe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemModHoe.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemModPickaxe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemModPickaxe.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemModShovel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemModShovel.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemModSword.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemModSword.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemPaintBrush.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemPaintBrush.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemSoulStealer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemSoulStealer.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/items/ItemTinIngot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/items/ItemTinIngot.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/network/PacketGetEnergyDifference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/network/PacketGetEnergyDifference.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/network/PacketGetWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/network/PacketGetWorker.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/network/PacketHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/network/PacketHandler.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/network/PacketReturnEnergyDifference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/network/PacketReturnEnergyDifference.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/network/PacketReturnWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/network/PacketReturnWorker.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/proxy/ClientProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/proxy/ClientProxy.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/proxy/CommonProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/proxy/CommonProxy.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/proxy/ServerProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/proxy/ServerProxy.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityBlockBreaker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityBlockBreaker.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityCanvas.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityDoubleFurnace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityDoubleFurnace.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityEnergyCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityEnergyCell.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityFurnaceGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/tileentity/TileEntityFurnaceGenerator.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/tileentity/TileEntitySidedInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/tileentity/TileEntitySidedInventory.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/util/DummyBlockProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/util/DummyBlockProperty.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/util/Lang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/util/Lang.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/util/RecipeClearColour.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/util/RecipeClearColour.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/util/RecipeItemColour.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/util/RecipeItemColour.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/util/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/util/Utils.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/worldgen/EndGenPredicate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/worldgen/EndGenPredicate.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/worldgen/NetherGenPredicate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/worldgen/NetherGenPredicate.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/worldgen/OreGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/worldgen/OreGen.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/worldgen/StructureGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/worldgen/StructureGen.java -------------------------------------------------------------------------------- /src/main/java/cjminecraft/bitofeverything/worldgen/StructureGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/java/cjminecraft/bitofeverything/worldgen/StructureGenerator.java -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/block_breaker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/block_breaker.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/canvas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/canvas.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/cotton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/cotton.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/double_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/double_furnace.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/energy_cell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/energy_cell.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/furnace_generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/furnace_generator.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/gamemode_detector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/gamemode_detector.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/machine_frame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/machine_frame.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_ore.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_slab_double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_slab_double.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_slab_half.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_slab_half.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/blockstates/tin_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/blockstates/tin_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/lang/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/lang/en_US.lang -------------------------------------------------------------------------------- /src/main/resources/assets/boe/lang/fr_FR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/lang/fr_FR.lang -------------------------------------------------------------------------------- /src/main/resources/assets/boe/lang/sv_SE.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/lang/sv_SE.lang -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/block_breaker_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/block_breaker_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/block_breaker_advanced_activated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/block_breaker_advanced_activated.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/block_breaker_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/block_breaker_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/block_breaker_basic_activated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/block_breaker_basic_activated.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/canvas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/canvas.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/cotton_stage0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/cotton_stage0.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/cotton_stage1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/cotton_stage1.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/cotton_stage2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/cotton_stage2.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/cotton_stage3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/cotton_stage3.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/cotton_stage4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/cotton_stage4.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/cotton_stage5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/cotton_stage5.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/cotton_stage6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/cotton_stage6.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/cotton_stage7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/cotton_stage7.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/ctm/canvas.cf: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "boe:ctm/canvas.ctx" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/ctm/machine_advanced.cf: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "boe:ctm/machine_advanced.ctx" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/ctm/machine_basic.cf: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "boe:ctm/machine_basic.ctx" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/double_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/double_furnace.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/double_furnace_activated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/double_furnace_activated.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/energy_cell_centre_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/energy_cell_centre_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/energy_cell_centre_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/energy_cell_centre_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/energy_cell_connection_in_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/energy_cell_connection_in_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/energy_cell_connection_in_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/energy_cell_connection_in_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/energy_cell_connection_normal_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/energy_cell_connection_normal_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/energy_cell_connection_normal_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/energy_cell_connection_normal_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/energy_cell_connection_out_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/energy_cell_connection_out_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/energy_cell_connection_out_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/energy_cell_connection_out_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/furnace_generator_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/furnace_generator_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/furnace_generator_advanced_activated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/furnace_generator_advanced_activated.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/furnace_generator_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/furnace_generator_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/furnace_generator_basic_activated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/furnace_generator_basic_activated.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/gamemode_detector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/gamemode_detector.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/machine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/machine.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/machine_frame_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/machine_frame_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/machine_frame_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/machine_frame_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_button_inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_button_inventory.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_button_pressed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_button_pressed.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_door_bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_door_bottom.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_door_bottom_rh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_door_bottom_rh.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_door_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_door_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_door_top_rh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_door_top_rh.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_fence_gate_closed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_fence_gate_closed.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_fence_gate_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_fence_gate_open.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_fence_post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_fence_post.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_fence_side.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_fence_side.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_inner_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_inner_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_ore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_ore.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_ore_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_ore_end.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_ore_nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_ore_nether.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_ore_overworld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_ore_overworld.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_outer_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_outer_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_pressure_plate_down.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_pressure_plate_down.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_pressure_plate_up.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_pressure_plate_up.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_slab_bottom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_slab_bottom.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_slab_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_wall_gate_closed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_wall_gate_closed.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/block/tin_wall_gate_open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/block/tin_wall_gate_open.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/block_breaker_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/block_breaker_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/block_breaker_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/block_breaker_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/canvas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/canvas.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/chip_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/chip_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/chip_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/chip_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/cotton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/cotton.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/double_furnace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/double_furnace" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/energy_cell_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/energy_cell_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/energy_cell_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/energy_cell_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/fabric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/fabric.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/furnace_generator_advanced.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/furnace_generator_advanced" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/furnace_generator_basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/furnace_generator_basic" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/gamemode_detector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/gamemode_detector" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/infinity_flame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/infinity_flame.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/machine_frame_advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/machine_frame_advanced.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/machine_frame_basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/machine_frame_basic.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/nice_biscuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/nice_biscuit.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/paint_brush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/paint_brush.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/soul_stealer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/soul_stealer.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_apple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_apple.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_boots.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_chestplate.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/tin_fence_gate_closed" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_helmet.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_hoe.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_ingot.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_leggings.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_nugget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_nugget.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/tin_ore" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_ore_end.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/tin_ore_end" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_ore_nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/tin_ore_nether" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_ore_overworld.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/tin_ore_overworld" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "boe:block/tin_pressure_plate_up" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_slab_half.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_slab_half.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_stick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_stick.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/models/item/tin_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/models/item/tin_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/sounds.json -------------------------------------------------------------------------------- /src/main/resources/assets/boe/sounds/block/tin_button/click_off.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/sounds/block/tin_button/click_off.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/boe/sounds/block/tin_button/click_on.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/sounds/block/tin_button/click_on.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/boe/sounds/block/tin_fence_gate/close.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/sounds/block/tin_fence_gate/close.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/boe/sounds/block/tin_fence_gate/open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/sounds/block/tin_fence_gate/open.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/boe/structures/cabin.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/structures/cabin.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_advanced_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_advanced_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_advanced_front_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_advanced_front_activated.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_advanced_front_activated.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 12 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_basic_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_basic_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_basic_front_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_basic_front_activated.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_basic_front_activated.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 12 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_front_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_front_advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_front_advanced_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_front_advanced_activated.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_front_advanced_activated.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 12 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_front_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_front_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_front_basic_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_front_basic_activated.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_front_basic_activated.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 12 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_side_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_side_advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_breaker_side_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_breaker_side_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_placer_side_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_placer_side_advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/block_placer_side_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/block_placer_side_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/canvas.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/canvas_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/canvas_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/cotton_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/cotton_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/cotton_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/cotton_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/cotton_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/cotton_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/cotton_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/cotton_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/cotton_stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/cotton_stage_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/cotton_stage_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/cotton_stage_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/cotton_stage_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/cotton_stage_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/cotton_stage_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/cotton_stage_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/ctm/canvas.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/ctm/canvas.ctx -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/ctm/canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/ctm/canvas.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/ctm/machine_advanced.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/ctm/machine_advanced.ctx -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/ctm/machine_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/ctm/machine_advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/ctm/machine_basic.ctx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/ctm/machine_basic.ctx -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/ctm/machine_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/ctm/machine_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/door_tin_lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/door_tin_lower.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/door_tin_upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/door_tin_upper.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/double_furnace_front_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/double_furnace_front_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/double_furnace_front_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/double_furnace_front_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell_centre_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell_centre_advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell_centre_advanced.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell_centre_advanced.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell_centre_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell_centre_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell_centre_basic.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell_centre_basic.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell_strip_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell_strip_in.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell_strip_in.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell_strip_in.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell_strip_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell_strip_normal.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell_strip_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell_strip_out.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/energy_cell_strip_out.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/energy_cell_strip_out.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/furnace_generator_front_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/furnace_generator_front_advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/furnace_generator_front_advanced_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/furnace_generator_front_advanced_activated.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/furnace_generator_front_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/furnace_generator_front_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/furnace_generator_front_basic_activated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/furnace_generator_front_basic_activated.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/gamemode_detector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/gamemode_detector.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/machine_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/machine_advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/machine_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/machine_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/tin_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/tin_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/tin_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/tin_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/tin_ore_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/tin_ore_end.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/blocks/tin_ore_nether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/blocks/tin_ore_nether.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/gui/container/block_breaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/gui/container/block_breaker.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/gui/container/double_furnace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/gui/container/double_furnace.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/gui/container/energy_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/gui/container/energy_cell.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/gui/container/furnace_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/gui/container/furnace_generator.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/chip_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/chip_advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/chip_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/chip_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/cotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/cotton.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/door_tin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/door_tin.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/fabric.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/infinity_flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/infinity_flame.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/nice_biscuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/nice_biscuit.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/paint_brush_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/paint_brush_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/paint_brush_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/paint_brush_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/soul_stealer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/soul_stealer.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_apple.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_axe.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_boots.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_chestplate.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_helmet.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_hoe.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_leggings.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_pickaxe.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/items/tin_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/items/tin_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/models/armor/tin_layer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/models/armor/tin_layer_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/boe/textures/models/armor/tin_layer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/assets/boe/textures/models/armor/tin_layer_2.png -------------------------------------------------------------------------------- /src/main/resources/mcmod.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/src/main/resources/mcmod.info -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CJMinecraft01/BitOfEverything/HEAD/update.json --------------------------------------------------------------------------------