├── .github └── workflows │ └── build_artifacts.yml ├── .gitignore ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── phpscript ├── build.bat ├── upload_maven.bat ├── upload_maven.php └── xampp-control.exe.lnk ├── python └── mpl2_to_mpl3.py ├── settings.gradle └── src └── main ├── java └── net │ └── pitan76 │ └── itemalchemy │ ├── EMCManager.java │ ├── FabricMain.java │ ├── ItemAlchemy.java │ ├── ItemAlchemyClient.java │ ├── api │ ├── EMCStorageUtil.java │ ├── EMCUtil.java │ ├── PlayerRegisteredItemUtil.java │ └── TeamUtil.java │ ├── block │ ├── AEGUBlock.java │ ├── AlchemyChest.java │ ├── AlchemyTable.java │ ├── Blocks.java │ ├── EMCBattery.java │ ├── EMCCable.java │ ├── EMCCollector.java │ ├── EMCCondenser.java │ ├── EMCCondenserMK2.java │ ├── EMCExporter.java │ ├── EMCImporter.java │ ├── EMCRepeater.java │ └── IUseableWrench.java │ ├── client │ ├── renderer │ │ └── BlockRenderer.java │ └── screen │ │ ├── AlchemyChestScreen.java │ │ ├── AlchemyTableScreen.java │ │ ├── EMCBatteryScreen.java │ │ ├── EMCCollectorScreen.java │ │ ├── EMCCondenserMK2Screen.java │ │ ├── EMCCondenserScreen.java │ │ ├── EMCExporterScreen.java │ │ └── EMCImporterScreen.java │ ├── command │ ├── ItemAlchemyCommand.java │ ├── OpenTableCommand.java │ ├── RankingCommand.java │ ├── ReloadCommand.java │ ├── ResetEMCCommand.java │ ├── SetEMCCommand.java │ └── TeamCommand.java │ ├── config │ └── ItemAlchemyConfig.java │ ├── data │ ├── ClientState.java │ ├── ModState.java │ ├── PlayerState.java │ ├── ServerState.java │ └── TeamState.java │ ├── emc │ ├── EMCDef.java │ ├── itemalchemy │ │ └── ItemAlchemyEMCDef.java │ └── vanilla │ │ └── VanillaEMCDef.java │ ├── gui │ ├── AlchemyTableScreenHandlerFactory.java │ ├── inventory │ │ ├── ExtractInventory.java │ │ └── RegisterInventory.java │ ├── screen │ │ ├── AlchemyChestScreenHandler.java │ │ ├── AlchemyTableScreenHandler.java │ │ ├── EMCBatteryScreenHandler.java │ │ ├── EMCCollectorScreenHandler.java │ │ ├── EMCCondenserMK2ScreenHandler.java │ │ ├── EMCCondenserScreenHandler.java │ │ ├── EMCExporterScreenHandler.java │ │ ├── EMCImporterScreenHandler.java │ │ └── ScreenHandlers.java │ └── slot │ │ ├── CondenserMK2InputSlot.java │ │ ├── CondenserMK2OutputSlot.java │ │ ├── CondenserStorageSlot.java │ │ ├── ExtractSlot.java │ │ ├── FilterSlot.java │ │ ├── RegisterSlot.java │ │ ├── RemoveSlot.java │ │ └── TargetSlot.java │ ├── item │ ├── AlchemicalAxe.java │ ├── AlchemicalHoe.java │ ├── AlchemicalPickaxe.java │ ├── AlchemicalShovel.java │ ├── AlchemicalSword.java │ ├── AlchemicalToolMaterials.java │ ├── AlchemyPad.java │ ├── DiviningRod.java │ ├── ILearnableItem.java │ ├── ItemGroups.java │ ├── Items.java │ ├── PhilosopherStone.java │ ├── PickupRing.java │ ├── Ring.java │ ├── TomeOfKnowledge.java │ └── Wrench.java │ ├── network │ └── ServerNetworks.java │ ├── recipe │ └── AlchemicalRecipeManager.java │ ├── sound │ └── Sounds.java │ ├── tile │ ├── AEGUTile.java │ ├── AlchemyChestTile.java │ ├── EMCBatteryTile.java │ ├── EMCCollectorTile.java │ ├── EMCCondenserMK2Tile.java │ ├── EMCCondenserTile.java │ ├── EMCExporterTile.java │ ├── EMCImporterTile.java │ ├── Tiles.java │ └── base │ │ ├── EMCStorageBlockEntity.java │ │ └── OwnedBlockEntity.java │ └── util │ ├── ChargeItemSettings.java │ ├── ItemCharge.java │ ├── ItemUtils.java │ ├── VersionUtils.java │ └── WorldUtils.java └── resources ├── assets └── itemalchemy │ ├── blockstates │ ├── advanced_aegu.json │ ├── aegu.json │ ├── alchemy_chest.json │ ├── alchemy_table.json │ ├── dark_matter_block.json │ ├── emc_battery.json │ ├── emc_cable.json │ ├── emc_collector_mk1.json │ ├── emc_collector_mk2.json │ ├── emc_collector_mk3.json │ ├── emc_collector_mk4.json │ ├── emc_collector_mk5.json │ ├── emc_condenser.json │ ├── emc_condenser_mk2.json │ ├── emc_exporter.json │ ├── emc_importer.json │ ├── emc_repeater.json │ ├── red_matter_block.json │ └── ultimate_aegu.json │ ├── items │ ├── advanced_aegu.json │ ├── aegu.json │ ├── aeternalis_fuel.json │ ├── alchemical_fuel.json │ ├── alchemy_chest.json │ ├── alchemy_pad.json │ ├── alchemy_table.json │ ├── dark_matter.json │ ├── dark_matter_axe.json │ ├── dark_matter_block.json │ ├── dark_matter_hoe.json │ ├── dark_matter_pickaxe.json │ ├── dark_matter_shovel.json │ ├── dark_matter_sword.json │ ├── divining_rod_lv1.json │ ├── divining_rod_lv2.json │ ├── divining_rod_lv3.json │ ├── emc_battery.json │ ├── emc_cable.json │ ├── emc_collector_mk1.json │ ├── emc_collector_mk2.json │ ├── emc_collector_mk3.json │ ├── emc_collector_mk4.json │ ├── emc_collector_mk5.json │ ├── emc_condenser.json │ ├── emc_condenser_mk2.json │ ├── emc_exporter.json │ ├── emc_importer.json │ ├── emc_repeater.json │ ├── gen.php │ ├── high_covalence_dust.json │ ├── low_covalence_dust.json │ ├── middle_covalence_dust.json │ ├── mobius_fuel.json │ ├── philosopher_stone.json │ ├── pickup_ring.json │ ├── red_matter.json │ ├── red_matter_axe.json │ ├── red_matter_block.json │ ├── red_matter_hoe.json │ ├── red_matter_pickaxe.json │ ├── red_matter_shovel.json │ ├── red_matter_sword.json │ ├── ring.json │ ├── tome_of_knowledge.json │ ├── ultimate_aegu.json │ └── wrench.json │ ├── lang │ ├── authors.txt │ ├── en_us.json │ ├── ja_jp.json │ └── zh_cn.json │ ├── logo.png │ ├── models │ ├── block │ │ ├── advanced_aegu.json │ │ ├── aegu.json │ │ ├── alchemy_chest.json │ │ ├── alchemy_table.json │ │ ├── connected_advanced_aegu.json │ │ ├── connected_aegu.json │ │ ├── connected_ultimate_aegu.json │ │ ├── dark_matter_block.json │ │ ├── emc_battery.json │ │ ├── emc_cable.json │ │ ├── emc_cable_both.json │ │ ├── emc_cable_both_ud.json │ │ ├── emc_cable_conner.json │ │ ├── emc_cable_conner_ud.json │ │ ├── emc_cable_cross.json │ │ ├── emc_cable_left.json │ │ ├── emc_cable_left_ud.json │ │ ├── emc_cable_right.json │ │ ├── emc_cable_tchar.json │ │ ├── emc_collector_mk1.json │ │ ├── emc_collector_mk2.json │ │ ├── emc_collector_mk3.json │ │ ├── emc_collector_mk4.json │ │ ├── emc_collector_mk5.json │ │ ├── emc_condenser.json │ │ ├── emc_condenser_mk2.json │ │ ├── emc_exporter.json │ │ ├── emc_importer.json │ │ ├── emc_repeater.json │ │ ├── red_matter_block.json │ │ └── ultimate_aegu.json │ └── item │ │ ├── advanced_aegu.json │ │ ├── aegu.json │ │ ├── aeternalis_fuel.json │ │ ├── alchemical_fuel.json │ │ ├── alchemy_chest.json │ │ ├── alchemy_pad.json │ │ ├── alchemy_table.json │ │ ├── dark_matter.json │ │ ├── dark_matter_axe.json │ │ ├── dark_matter_block.json │ │ ├── dark_matter_hoe.json │ │ ├── dark_matter_pickaxe.json │ │ ├── dark_matter_shovel.json │ │ ├── dark_matter_sword.json │ │ ├── divining_rod_lv1.json │ │ ├── divining_rod_lv2.json │ │ ├── divining_rod_lv3.json │ │ ├── emc_battery.json │ │ ├── emc_cable.json │ │ ├── emc_collector_mk1.json │ │ ├── emc_collector_mk2.json │ │ ├── emc_collector_mk3.json │ │ ├── emc_collector_mk4.json │ │ ├── emc_collector_mk5.json │ │ ├── emc_condenser.json │ │ ├── emc_condenser_mk2.json │ │ ├── emc_exporter.json │ │ ├── emc_importer.json │ │ ├── emc_repeater.json │ │ ├── high_covalence_dust.json │ │ ├── low_covalence_dust.json │ │ ├── middle_covalence_dust.json │ │ ├── mobius_fuel.json │ │ ├── philosopher_stone.json │ │ ├── pickup_ring.json │ │ ├── red_matter.json │ │ ├── red_matter_axe.json │ │ ├── red_matter_block.json │ │ ├── red_matter_hoe.json │ │ ├── red_matter_pickaxe.json │ │ ├── red_matter_shovel.json │ │ ├── red_matter_sword.json │ │ ├── ring.json │ │ ├── tome_of_knowledge.json │ │ ├── ultimate_aegu.json │ │ └── wrench.json │ ├── sounds.json │ ├── sounds │ ├── charge.ogg │ ├── exchange.ogg │ └── uncharge.ogg │ └── textures │ ├── authors.txt │ ├── block │ ├── aeternalis_fuel_block.png │ ├── alchemical_coal_block.png │ ├── alchemy_chest.png │ ├── alchemy_chest │ │ ├── bottom.png │ │ ├── front.png │ │ ├── side.png │ │ └── top.png │ ├── alchemy_table │ │ ├── bottom.png │ │ ├── side.png │ │ └── top.png │ ├── dark_matter_block.png │ ├── emc_battery │ │ ├── bottom.png │ │ ├── front.png │ │ ├── side.png │ │ ├── top_mk1.png │ │ ├── top_mk2.png │ │ └── top_mk3.png │ ├── emc_cable │ │ ├── bottom.png │ │ ├── bottom_conner.png │ │ ├── left.png │ │ ├── right.png │ │ ├── side.png │ │ ├── side2.png │ │ ├── top.png │ │ └── top_conner.png │ ├── emc_collector │ │ ├── bottom.png │ │ ├── front.png │ │ ├── side.png │ │ ├── top_mk1.png │ │ ├── top_mk2.png │ │ ├── top_mk3.png │ │ ├── top_mk4.png │ │ ├── top_mk5.png │ │ └── top_mk6.png │ ├── emc_condenser.png │ ├── emc_condenser │ │ ├── bottom.png │ │ ├── front.png │ │ ├── side.png │ │ └── top.png │ ├── emc_condenser_mk2 │ │ ├── bottom.png │ │ ├── front.png │ │ ├── side.png │ │ └── top.png │ ├── emc_link │ │ ├── exporter.png │ │ └── importer.png │ ├── emc_repeater │ │ ├── bottom.png │ │ ├── side.png │ │ └── top.png │ ├── old │ │ ├── emc_collector │ │ │ ├── bottom.png │ │ │ ├── front.png │ │ │ ├── side.png │ │ │ ├── top_mk1.png │ │ │ ├── top_mk2.png │ │ │ ├── top_mk3.png │ │ │ ├── top_mk4.png │ │ │ ├── top_mk5.png │ │ │ └── top_mk6.png │ │ └── emc_repeater │ │ │ ├── bottom.png │ │ │ ├── side.png │ │ │ └── top.png │ └── red_matter_block.png │ ├── gui │ ├── 3x3.png │ ├── alchemy_chest.png │ ├── alchemy_table.mdp │ ├── alchemy_table.png │ ├── emc_battery.mdp │ ├── emc_battery.png │ ├── emc_collector.mdp │ ├── emc_collector.png │ ├── emc_condenser.mdp │ ├── emc_condenser.png │ ├── emc_condenser_mk2.mdp │ ├── emc_condenser_mk2.png │ └── emc_importer.mdp │ ├── item │ ├── _alchemy_pad.png │ ├── _philosopher_stone.png │ ├── aeternalis_fuel.png │ ├── alchemical_fuel.png │ ├── alchemy_pad.png │ ├── dark_matter.png │ ├── divining_rod_lv1.png │ ├── divining_rod_lv2.png │ ├── divining_rod_lv3.png │ ├── high_covalence_dust.png │ ├── low_covalence_dust.png │ ├── magenta_alchemy_bag.png │ ├── middle_covalence_dust.png │ ├── mobius_fuel.png │ ├── orange_alchemy_bag.png │ ├── philosopher_stone.png │ ├── red_alchemy_bag.png │ ├── red_matter.png │ ├── ring │ │ ├── pickup_ring.png │ │ └── ring.png │ ├── tome_of_knowledge.png │ ├── tools │ │ ├── dark_matter_axe.png │ │ ├── dark_matter_hammer.png │ │ ├── dark_matter_hoe.png │ │ ├── dark_matter_pickaxe.png │ │ ├── dark_matter_shovel.png │ │ ├── dark_matter_sword.png │ │ ├── red_matter_axe.png │ │ ├── red_matter_hammer.png │ │ ├── red_matter_hoe.png │ │ ├── red_matter_pickaxe.png │ │ ├── red_matter_shovel.png │ │ └── red_matter_sword.png │ ├── white_alchemy_bag.png │ └── wrench.png │ └── models │ └── armor │ ├── Dark Matter Armour.java │ ├── Red Matter Armour.java │ ├── dark_matter_armor.png │ └── red_matter_armor.png ├── data ├── itemalchemy │ ├── alchemical_craft │ │ └── alchemy.json │ ├── default_emcs │ │ ├── itemalchemy.json │ │ ├── minecraft.json │ │ ├── tags.json │ │ └── techreborn.json │ ├── loot_tables │ │ └── blocks │ │ │ ├── advanced_aegu.json │ │ │ ├── aegu.json │ │ │ ├── alchemy_chest.json │ │ │ ├── alchemy_table.json │ │ │ ├── dark_matter_block.json │ │ │ ├── emc_battery.json │ │ │ ├── emc_cable.json │ │ │ ├── emc_collector_mk1.json │ │ │ ├── emc_collector_mk2.json │ │ │ ├── emc_collector_mk3.json │ │ │ ├── emc_collector_mk4.json │ │ │ ├── emc_collector_mk5.json │ │ │ ├── emc_condenser.json │ │ │ ├── emc_condenser_mk2.json │ │ │ ├── emc_exporter.json │ │ │ ├── emc_importer.json │ │ │ ├── emc_repeater.json │ │ │ ├── red_matter_block.json │ │ │ └── ultimate_aegu.json │ └── recipes │ │ ├── advanced_aegu.json │ │ ├── aegu.json │ │ ├── aeternalis_fuel.json │ │ ├── aeternalis_fuel_from_mobius_fuel.json │ │ ├── alchemical_fuel.json │ │ ├── alchemical_fuel_from_coal.json │ │ ├── alchemy_chest.json │ │ ├── alchemy_pad.json │ │ ├── alchemy_table.json │ │ ├── dark_matter.json │ │ ├── dark_matter_axe.json │ │ ├── dark_matter_block.json │ │ ├── dark_matter_from_block.json │ │ ├── dark_matter_hoe.json │ │ ├── dark_matter_pickaxe.json │ │ ├── dark_matter_shovel.json │ │ ├── dark_matter_sword.json │ │ ├── emc_battery.json │ │ ├── emc_cable.json │ │ ├── emc_collector_mk1.json │ │ ├── emc_collector_mk2.json │ │ ├── emc_collector_mk3.json │ │ ├── emc_collector_mk4.json │ │ ├── emc_collector_mk5.json │ │ ├── emc_condenser.json │ │ ├── emc_condenser_mk2.json │ │ ├── emc_exporter.json │ │ ├── emc_importer.json │ │ ├── emc_repeater.json │ │ ├── emc_repeater_from_cable.json │ │ ├── high_covalence_dust.json │ │ ├── low_covalence_dust.json │ │ ├── middle_covalence_dust.json │ │ ├── mobius_fuel.json │ │ ├── mobius_fuel_from_alchemical_fuel.json │ │ ├── philosopher_stone.json │ │ ├── philosopher_stone2.json │ │ ├── red_matter.json │ │ ├── red_matter_axe.json │ │ ├── red_matter_block.json │ │ ├── red_matter_from_block.json │ │ ├── red_matter_hoe.json │ │ ├── red_matter_pickaxe.json │ │ ├── red_matter_shovel.json │ │ ├── red_matter_sword.json │ │ ├── ring.json │ │ ├── ultimate_aegu.json │ │ └── wrench.json └── minecraft │ └── tags │ └── blocks │ └── mineable │ └── pickaxe.json ├── fabric.mod.json ├── itemalchemy.mixins.json └── unused └── pickup_ring.json /.github/workflows/build_artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/.github/workflows/build_artifacts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/gradlew.bat -------------------------------------------------------------------------------- /phpscript/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/phpscript/build.bat -------------------------------------------------------------------------------- /phpscript/upload_maven.bat: -------------------------------------------------------------------------------- 1 | php upload_maven.php 2 | pause -------------------------------------------------------------------------------- /phpscript/upload_maven.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/phpscript/upload_maven.php -------------------------------------------------------------------------------- /phpscript/xampp-control.exe.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/phpscript/xampp-control.exe.lnk -------------------------------------------------------------------------------- /python/mpl2_to_mpl3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/python/mpl2_to_mpl3.py -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/EMCManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/EMCManager.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/FabricMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/FabricMain.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/ItemAlchemy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/ItemAlchemy.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/ItemAlchemyClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/ItemAlchemyClient.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/api/EMCStorageUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/api/EMCStorageUtil.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/api/EMCUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/api/EMCUtil.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/api/PlayerRegisteredItemUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/api/PlayerRegisteredItemUtil.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/api/TeamUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/api/TeamUtil.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/AEGUBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/AEGUBlock.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/AlchemyChest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/AlchemyChest.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/AlchemyTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/AlchemyTable.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/Blocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/Blocks.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/EMCBattery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/EMCBattery.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/EMCCable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/EMCCable.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/EMCCollector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/EMCCollector.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/EMCCondenser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/EMCCondenser.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/EMCCondenserMK2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/EMCCondenserMK2.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/EMCExporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/EMCExporter.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/EMCImporter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/EMCImporter.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/EMCRepeater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/block/EMCRepeater.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/block/IUseableWrench.java: -------------------------------------------------------------------------------- 1 | package net.pitan76.itemalchemy.block; 2 | 3 | public interface IUseableWrench { 4 | } 5 | -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/client/renderer/BlockRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/client/renderer/BlockRenderer.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/client/screen/AlchemyChestScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/client/screen/AlchemyChestScreen.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/client/screen/AlchemyTableScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/client/screen/AlchemyTableScreen.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/client/screen/EMCBatteryScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/client/screen/EMCBatteryScreen.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/client/screen/EMCCollectorScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/client/screen/EMCCollectorScreen.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/client/screen/EMCCondenserMK2Screen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/client/screen/EMCCondenserMK2Screen.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/client/screen/EMCCondenserScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/client/screen/EMCCondenserScreen.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/client/screen/EMCExporterScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/client/screen/EMCExporterScreen.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/client/screen/EMCImporterScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/client/screen/EMCImporterScreen.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/command/ItemAlchemyCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/command/ItemAlchemyCommand.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/command/OpenTableCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/command/OpenTableCommand.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/command/RankingCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/command/RankingCommand.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/command/ReloadCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/command/ReloadCommand.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/command/ResetEMCCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/command/ResetEMCCommand.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/command/SetEMCCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/command/SetEMCCommand.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/command/TeamCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/command/TeamCommand.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/config/ItemAlchemyConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/config/ItemAlchemyConfig.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/data/ClientState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/data/ClientState.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/data/ModState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/data/ModState.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/data/PlayerState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/data/PlayerState.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/data/ServerState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/data/ServerState.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/data/TeamState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/data/TeamState.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/emc/EMCDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/emc/EMCDef.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/emc/itemalchemy/ItemAlchemyEMCDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/emc/itemalchemy/ItemAlchemyEMCDef.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/emc/vanilla/VanillaEMCDef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/emc/vanilla/VanillaEMCDef.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/AlchemyTableScreenHandlerFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/AlchemyTableScreenHandlerFactory.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/inventory/ExtractInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/inventory/ExtractInventory.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/inventory/RegisterInventory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/inventory/RegisterInventory.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/screen/AlchemyChestScreenHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/screen/AlchemyChestScreenHandler.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/screen/AlchemyTableScreenHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/screen/AlchemyTableScreenHandler.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/screen/EMCBatteryScreenHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/screen/EMCBatteryScreenHandler.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/screen/EMCCollectorScreenHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/screen/EMCCollectorScreenHandler.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/screen/EMCCondenserMK2ScreenHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/screen/EMCCondenserMK2ScreenHandler.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/screen/EMCCondenserScreenHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/screen/EMCCondenserScreenHandler.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/screen/EMCExporterScreenHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/screen/EMCExporterScreenHandler.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/screen/EMCImporterScreenHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/screen/EMCImporterScreenHandler.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/screen/ScreenHandlers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/screen/ScreenHandlers.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/slot/CondenserMK2InputSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/slot/CondenserMK2InputSlot.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/slot/CondenserMK2OutputSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/slot/CondenserMK2OutputSlot.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/slot/CondenserStorageSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/slot/CondenserStorageSlot.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/slot/ExtractSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/slot/ExtractSlot.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/slot/FilterSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/slot/FilterSlot.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/slot/RegisterSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/slot/RegisterSlot.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/slot/RemoveSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/slot/RemoveSlot.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/gui/slot/TargetSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/gui/slot/TargetSlot.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/AlchemicalAxe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/AlchemicalAxe.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/AlchemicalHoe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/AlchemicalHoe.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/AlchemicalPickaxe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/AlchemicalPickaxe.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/AlchemicalShovel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/AlchemicalShovel.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/AlchemicalSword.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/AlchemicalSword.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/AlchemicalToolMaterials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/AlchemicalToolMaterials.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/AlchemyPad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/AlchemyPad.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/DiviningRod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/DiviningRod.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/ILearnableItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/ILearnableItem.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/ItemGroups.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/ItemGroups.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/Items.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/Items.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/PhilosopherStone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/PhilosopherStone.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/PickupRing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/PickupRing.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/Ring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/Ring.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/TomeOfKnowledge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/TomeOfKnowledge.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/item/Wrench.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/item/Wrench.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/network/ServerNetworks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/network/ServerNetworks.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/recipe/AlchemicalRecipeManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/recipe/AlchemicalRecipeManager.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/sound/Sounds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/sound/Sounds.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/AEGUTile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/AEGUTile.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/AlchemyChestTile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/AlchemyChestTile.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/EMCBatteryTile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/EMCBatteryTile.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/EMCCollectorTile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/EMCCollectorTile.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/EMCCondenserMK2Tile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/EMCCondenserMK2Tile.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/EMCCondenserTile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/EMCCondenserTile.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/EMCExporterTile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/EMCExporterTile.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/EMCImporterTile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/EMCImporterTile.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/Tiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/Tiles.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/base/EMCStorageBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/base/EMCStorageBlockEntity.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/tile/base/OwnedBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/tile/base/OwnedBlockEntity.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/util/ChargeItemSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/util/ChargeItemSettings.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/util/ItemCharge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/util/ItemCharge.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/util/ItemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/util/ItemUtils.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/util/VersionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/util/VersionUtils.java -------------------------------------------------------------------------------- /src/main/java/net/pitan76/itemalchemy/util/WorldUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/java/net/pitan76/itemalchemy/util/WorldUtils.java -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/advanced_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/advanced_aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/alchemy_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/alchemy_chest.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/alchemy_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/alchemy_table.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/dark_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/dark_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_battery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_battery.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_cable.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk1.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk2.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk3.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk4.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_collector_mk5.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_condenser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_condenser.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_condenser_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_condenser_mk2.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_exporter.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_importer.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/emc_repeater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/emc_repeater.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/red_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/red_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/blockstates/ultimate_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/blockstates/ultimate_aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/advanced_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/advanced_aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/aeternalis_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/aeternalis_fuel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/alchemical_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/alchemical_fuel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/alchemy_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/alchemy_chest.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/alchemy_pad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/alchemy_pad.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/alchemy_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/alchemy_table.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/dark_matter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/dark_matter.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/dark_matter_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/dark_matter_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/dark_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/dark_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/dark_matter_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/dark_matter_hoe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/dark_matter_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/dark_matter_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/dark_matter_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/dark_matter_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/dark_matter_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/dark_matter_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/divining_rod_lv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/divining_rod_lv1.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/divining_rod_lv2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/divining_rod_lv2.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/divining_rod_lv3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/divining_rod_lv3.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_battery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_battery.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_cable.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_collector_mk1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_collector_mk1.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_collector_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_collector_mk2.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_collector_mk3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_collector_mk3.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_collector_mk4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_collector_mk4.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_collector_mk5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_collector_mk5.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_condenser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_condenser.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_condenser_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_condenser_mk2.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_exporter.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_importer.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/emc_repeater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/emc_repeater.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/gen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/gen.php -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/high_covalence_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/high_covalence_dust.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/low_covalence_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/low_covalence_dust.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/middle_covalence_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/middle_covalence_dust.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/mobius_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/mobius_fuel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/philosopher_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/philosopher_stone.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/pickup_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/pickup_ring.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/red_matter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/red_matter.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/red_matter_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/red_matter_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/red_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/red_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/red_matter_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/red_matter_hoe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/red_matter_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/red_matter_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/red_matter_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/red_matter_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/red_matter_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/red_matter_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/ring.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/tome_of_knowledge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/tome_of_knowledge.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/ultimate_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/ultimate_aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/items/wrench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/items/wrench.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/lang/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/lang/authors.txt -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/lang/ja_jp.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/lang/zh_cn.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/logo.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/advanced_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/advanced_aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/alchemy_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/alchemy_chest.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/alchemy_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/alchemy_table.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/connected_advanced_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/connected_advanced_aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/connected_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/connected_aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/connected_ultimate_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/connected_ultimate_aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/dark_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/dark_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_battery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_battery.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable_both.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable_both.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable_both_ud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable_both_ud.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable_conner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable_conner.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable_conner_ud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable_conner_ud.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable_cross.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable_cross.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable_left.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable_left.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable_left_ud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable_left_ud.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable_right.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable_right.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_cable_tchar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_cable_tchar.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_collector_mk1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_collector_mk1.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_collector_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_collector_mk2.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_collector_mk3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_collector_mk3.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_collector_mk4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_collector_mk4.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_collector_mk5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_collector_mk5.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_condenser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_condenser.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_condenser_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_condenser_mk2.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_exporter.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_importer.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/emc_repeater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/emc_repeater.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/red_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/red_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/block/ultimate_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/block/ultimate_aegu.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/advanced_aegu.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/advanced_aegu" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/aegu.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/aegu" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/aeternalis_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/aeternalis_fuel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/alchemical_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/alchemical_fuel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/alchemy_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/alchemy_chest.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/alchemy_pad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/alchemy_pad.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/alchemy_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/alchemy_table.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/dark_matter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/dark_matter.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/dark_matter_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/dark_matter_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/dark_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/dark_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/dark_matter_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/dark_matter_hoe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/dark_matter_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/dark_matter_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/dark_matter_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/dark_matter_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/dark_matter_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/dark_matter_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/divining_rod_lv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/divining_rod_lv1.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/divining_rod_lv2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/divining_rod_lv2.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/divining_rod_lv3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/divining_rod_lv3.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_battery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_battery" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_cable.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_cable_left" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_collector_mk1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_collector_mk1" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_collector_mk2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_collector_mk2" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_collector_mk3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_collector_mk3" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_collector_mk4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_collector_mk4" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_collector_mk5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_collector_mk5" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_condenser.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_condenser" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_condenser_mk2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_condenser_mk2" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_exporter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_exporter" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_importer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_importer" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/emc_repeater.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/emc_repeater" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/high_covalence_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/high_covalence_dust.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/low_covalence_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/low_covalence_dust.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/middle_covalence_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/middle_covalence_dust.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/mobius_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/mobius_fuel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/philosopher_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/philosopher_stone.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/pickup_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/pickup_ring.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/red_matter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/red_matter.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/red_matter_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/red_matter_axe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/red_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/red_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/red_matter_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/red_matter_hoe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/red_matter_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/red_matter_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/red_matter_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/red_matter_shovel.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/red_matter_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/red_matter_sword.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/ring.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/tome_of_knowledge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/tome_of_knowledge.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/ultimate_aegu.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "itemalchemy:block/ultimate_aegu" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/models/item/wrench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/models/item/wrench.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/sounds.json -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/sounds/charge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/sounds/charge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/sounds/exchange.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/sounds/exchange.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/sounds/uncharge.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/sounds/uncharge.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/authors.txt -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/aeternalis_fuel_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/aeternalis_fuel_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/alchemical_coal_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/alchemical_coal_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/alchemy_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/alchemy_chest.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/alchemy_chest/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/alchemy_chest/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/alchemy_chest/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/alchemy_chest/front.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/alchemy_chest/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/alchemy_chest/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/alchemy_chest/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/alchemy_chest/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/alchemy_table/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/alchemy_table/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/alchemy_table/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/alchemy_table/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/alchemy_table/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/alchemy_table/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/dark_matter_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/dark_matter_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_battery/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_battery/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_battery/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_battery/front.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_battery/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_battery/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_battery/top_mk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_battery/top_mk1.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_battery/top_mk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_battery/top_mk2.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_battery/top_mk3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_battery/top_mk3.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_cable/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_cable/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_cable/bottom_conner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_cable/bottom_conner.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_cable/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_cable/left.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_cable/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_cable/right.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_cable/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_cable/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_cable/side2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_cable/side2.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_cable/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_cable/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_cable/top_conner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_cable/top_conner.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_collector/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_collector/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_collector/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_collector/front.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_collector/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_collector/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk1.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk2.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk3.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk4.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk5.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_collector/top_mk6.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_condenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_condenser.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_condenser/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_condenser/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_condenser/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_condenser/front.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_condenser/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_condenser/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_condenser/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_condenser/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_condenser_mk2/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_condenser_mk2/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_condenser_mk2/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_condenser_mk2/front.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_condenser_mk2/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_condenser_mk2/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_condenser_mk2/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_condenser_mk2/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_link/exporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_link/exporter.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_link/importer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_link/importer.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_repeater/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_repeater/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_repeater/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_repeater/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/emc_repeater/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/emc_repeater/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/front.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk1.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk2.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk3.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk4.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk5.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_collector/top_mk6.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_repeater/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_repeater/bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_repeater/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_repeater/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/old/emc_repeater/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/old/emc_repeater/top.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/block/red_matter_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/block/red_matter_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/3x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/3x3.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/alchemy_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/alchemy_chest.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/alchemy_table.mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/alchemy_table.mdp -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/alchemy_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/alchemy_table.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/emc_battery.mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/emc_battery.mdp -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/emc_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/emc_battery.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/emc_collector.mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/emc_collector.mdp -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/emc_collector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/emc_collector.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/emc_condenser.mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/emc_condenser.mdp -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/emc_condenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/emc_condenser.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/emc_condenser_mk2.mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/emc_condenser_mk2.mdp -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/emc_condenser_mk2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/emc_condenser_mk2.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/gui/emc_importer.mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/gui/emc_importer.mdp -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/_alchemy_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/_alchemy_pad.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/_philosopher_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/_philosopher_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/aeternalis_fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/aeternalis_fuel.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/alchemical_fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/alchemical_fuel.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/alchemy_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/alchemy_pad.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/dark_matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/dark_matter.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/divining_rod_lv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/divining_rod_lv1.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/divining_rod_lv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/divining_rod_lv2.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/divining_rod_lv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/divining_rod_lv3.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/high_covalence_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/high_covalence_dust.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/low_covalence_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/low_covalence_dust.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/magenta_alchemy_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/magenta_alchemy_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/middle_covalence_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/middle_covalence_dust.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/mobius_fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/mobius_fuel.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/orange_alchemy_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/orange_alchemy_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/philosopher_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/philosopher_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/red_alchemy_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/red_alchemy_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/red_matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/red_matter.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/ring/pickup_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/ring/pickup_ring.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/ring/ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/ring/ring.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tome_of_knowledge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tome_of_knowledge.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_axe.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_hammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_hoe.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_pickaxe.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/dark_matter_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_axe.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_hammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_hoe.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_pickaxe.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/tools/red_matter_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/white_alchemy_bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/white_alchemy_bag.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/item/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/item/wrench.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/models/armor/Dark Matter Armour.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/models/armor/Dark Matter Armour.java -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/models/armor/Red Matter Armour.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/models/armor/Red Matter Armour.java -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/models/armor/dark_matter_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/models/armor/dark_matter_armor.png -------------------------------------------------------------------------------- /src/main/resources/assets/itemalchemy/textures/models/armor/red_matter_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/assets/itemalchemy/textures/models/armor/red_matter_armor.png -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/alchemical_craft/alchemy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/alchemical_craft/alchemy.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/default_emcs/itemalchemy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/default_emcs/itemalchemy.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/default_emcs/minecraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/default_emcs/minecraft.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/default_emcs/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/default_emcs/tags.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/default_emcs/techreborn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/default_emcs/techreborn.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/advanced_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/advanced_aegu.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/aegu.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/alchemy_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/alchemy_chest.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/alchemy_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/alchemy_table.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/dark_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/dark_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_battery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_battery.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_cable.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk1.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk2.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk3.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk4.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_collector_mk5.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_condenser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_condenser.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_condenser_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_condenser_mk2.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_exporter.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_importer.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/emc_repeater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/emc_repeater.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/red_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/red_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/loot_tables/blocks/ultimate_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/loot_tables/blocks/ultimate_aegu.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/advanced_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/advanced_aegu.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/aegu.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/aeternalis_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/aeternalis_fuel.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/aeternalis_fuel_from_mobius_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/aeternalis_fuel_from_mobius_fuel.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/alchemical_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/alchemical_fuel.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/alchemical_fuel_from_coal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/alchemical_fuel_from_coal.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/alchemy_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/alchemy_chest.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/alchemy_pad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/alchemy_pad.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/alchemy_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/alchemy_table.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/dark_matter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/dark_matter.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/dark_matter_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/dark_matter_axe.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/dark_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/dark_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/dark_matter_from_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/dark_matter_from_block.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/dark_matter_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/dark_matter_hoe.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/dark_matter_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/dark_matter_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/dark_matter_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/dark_matter_shovel.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/dark_matter_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/dark_matter_sword.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_battery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_battery.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_cable.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_collector_mk1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_collector_mk1.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_collector_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_collector_mk2.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_collector_mk3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_collector_mk3.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_collector_mk4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_collector_mk4.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_collector_mk5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_collector_mk5.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_condenser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_condenser.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_condenser_mk2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_condenser_mk2.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_exporter.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_importer.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_repeater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_repeater.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/emc_repeater_from_cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/emc_repeater_from_cable.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/high_covalence_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/high_covalence_dust.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/low_covalence_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/low_covalence_dust.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/middle_covalence_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/middle_covalence_dust.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/mobius_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/mobius_fuel.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/mobius_fuel_from_alchemical_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/mobius_fuel_from_alchemical_fuel.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/philosopher_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/philosopher_stone.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/philosopher_stone2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/philosopher_stone2.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/red_matter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/red_matter.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/red_matter_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/red_matter_axe.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/red_matter_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/red_matter_block.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/red_matter_from_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/red_matter_from_block.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/red_matter_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/red_matter_hoe.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/red_matter_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/red_matter_pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/red_matter_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/red_matter_shovel.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/red_matter_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/red_matter_sword.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/ring.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/ultimate_aegu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/ultimate_aegu.json -------------------------------------------------------------------------------- /src/main/resources/data/itemalchemy/recipes/wrench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/itemalchemy/recipes/wrench.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/itemalchemy.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/itemalchemy.mixins.json -------------------------------------------------------------------------------- /src/main/resources/unused/pickup_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pitan76/item-alchemy/HEAD/src/main/resources/unused/pickup_ring.json --------------------------------------------------------------------------------