├── .gitattributes ├── .gitignore ├── .travis.yml ├── README.md ├── TODO.txt ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src └── main ├── java ├── fathzer │ └── javaluator │ │ ├── AbstractEvaluator.java │ │ ├── AbstractVariableSet.java │ │ ├── BracketPair.java │ │ ├── Constant.java │ │ ├── DoubleEvaluator.java │ │ ├── Function.java │ │ ├── Operator.java │ │ ├── Parameters.java │ │ ├── StaticVariableSet.java │ │ ├── Token.java │ │ ├── Tokenizer.java │ │ └── package-info.java └── shukaro │ └── artifice │ ├── ArtificeBlocks.java │ ├── ArtificeConfig.java │ ├── ArtificeCore.java │ ├── ArtificeEnchants.java │ ├── ArtificeFluids.java │ ├── ArtificeItems.java │ ├── ArtificeRegistry.java │ ├── ArtificeTiles.java │ ├── ArtificeTooltips.java │ ├── ArtificeWorld.java │ ├── block │ ├── BlockArtifice.java │ ├── ItemBlockArtifice.java │ ├── decorative │ │ ├── BlockColoredTorch.java │ │ ├── BlockLamp.java │ │ ├── BlockRockSlab.java │ │ ├── BlockStairsArtifice.java │ │ ├── BlockSteel.java │ │ └── ItemBlockSlabArtifice.java │ ├── fluid │ │ ├── BlockFluidBitumen.java │ │ ├── BlockFluidCreosote.java │ │ ├── BlockFluidFuel.java │ │ └── BlockFluidOil.java │ ├── frame │ │ ├── BlockFrame.java │ │ ├── BlockFrameBase.java │ │ ├── BlockFrameBlastWall.java │ │ ├── BlockFrameDetector.java │ │ ├── BlockFrameGlassWall.java │ │ ├── BlockFrameScaffold.java │ │ └── ItemBlockFrame.java │ ├── functional │ │ ├── BlockAttunedRedstone.java │ │ ├── BlockHeatingCoil.java │ │ ├── BlockLogicRedstone.java │ │ ├── BlockNuclearBattery.java │ │ └── ItemBlockAttunedRedstone.java │ └── world │ │ ├── BlockBasicOre.java │ │ ├── BlockCharredLog.java │ │ ├── BlockEnderOre.java │ │ ├── BlockFlora.java │ │ ├── BlockGlowSand.java │ │ ├── BlockLotus.java │ │ ├── BlockNiter.java │ │ ├── BlockOre.java │ │ ├── BlockRock.java │ │ ├── BlockSulfur.java │ │ ├── BlockTephra.java │ │ ├── ItemBlockBasicOre.java │ │ ├── ItemBlockFlora.java │ │ ├── ItemBlockLotus.java │ │ ├── ItemBlockNiter.java │ │ ├── ItemBlockOre.java │ │ ├── ItemBlockRock.java │ │ ├── ItemBlockSulfur.java │ │ └── ItemBlockTephra.java │ ├── command │ └── CommandCalc.java │ ├── compat │ ├── AE2.java │ ├── Buildcraft.java │ ├── CarpentersBlocks.java │ ├── EE3.java │ ├── FMP.java │ ├── Forestry.java │ ├── ICompat.java │ ├── IMC.java │ ├── MFR.java │ └── Vanilla.java │ ├── enchant │ ├── EnchantmentInvisible.java │ ├── EnchantmentResistance.java │ └── EnchantmentSoulstealing.java │ ├── event │ ├── ArtificeClientEventHandler.java │ ├── ArtificeClientTickHandler.java │ ├── ArtificeEventHandler.java │ ├── ArtificeTickHandler.java │ └── Tracking.java │ ├── gui │ ├── ArtificeCreativeTab.java │ ├── ContainerCraftkit.java │ ├── GuiCraftKit.java │ └── GuiHandlerArtifice.java │ ├── item │ ├── DispenserBehaviorBox.java │ ├── DispenserBehaviorSledge.java │ ├── ItemArtifice.java │ ├── ItemBox.java │ ├── ItemBucket.java │ ├── ItemCoin.java │ ├── ItemCraftKit.java │ ├── ItemDye.java │ ├── ItemNugget.java │ ├── ItemResource.java │ ├── ItemSickle.java │ ├── ItemSledge.java │ ├── ItemSteel.java │ └── ItemUpgrade.java │ ├── net │ ├── ArtificeMessageToMessageCodec.java │ ├── ClientProxy.java │ ├── CommonProxy.java │ ├── PacketDispatcher.java │ ├── handlers │ │ └── SneakMessageHandler.java │ └── packets │ │ ├── ArtificePacket.java │ │ └── ArtificePacketSneak.java │ ├── recipe │ ├── ArtificeRecipes.java │ ├── BoxCraftingHandler.java │ ├── EnumUpgrades.java │ ├── RecipeBox.java │ └── RecipeUpgrade.java │ ├── render │ ├── EntityColoredFlameFX.java │ ├── FrameRenderer.java │ ├── LotusRenderer.java │ ├── OreRenderer.java │ ├── RenderBlocksInverted.java │ ├── TextureHandler.java │ └── connectedtexture │ │ ├── CTM.java │ │ ├── CTMRenderer.java │ │ ├── ConnectedTexture.java │ │ ├── RenderBlocksCTM.java │ │ ├── TextureSubmap.java │ │ └── TextureVirtual.java │ ├── tile │ ├── HeatStorage.java │ ├── IHeatProvider.java │ ├── IHeatReceiver.java │ ├── TileEntityAttuned.java │ ├── TileEntityHeatingCoil.java │ ├── TileEntityLogic.java │ ├── TileEntityNuclearBattery.java │ └── TileFurnaceWrapper.java │ ├── util │ ├── BlockCoord.java │ ├── ChunkCoord.java │ ├── ComparableItemStack.java │ ├── ComparableItemStackNBT.java │ ├── Drawing.java │ ├── FormatCodes.java │ ├── MinecraftColors.java │ ├── MiscUtils.java │ ├── NameMetaPair.java │ ├── RomanUtil.java │ └── XSRandom.java │ └── world │ ├── IDelayedGen.java │ ├── ISuspendableGen.java │ ├── VolcanoHelper.java │ ├── WorldGenCave.java │ ├── WorldGenCluster.java │ ├── WorldGenDesert.java │ ├── WorldGenFlowers.java │ ├── WorldGenLake.java │ ├── WorldGenLayer.java │ ├── WorldGenLily.java │ ├── WorldGenSulfur.java │ └── WorldGenVolcano.java └── resources ├── assets └── artifice │ ├── lang │ ├── en_US.lang │ ├── pt_BR.lang │ ├── ru_RU.lang │ └── zh_CN.lang │ └── textures │ ├── blocks │ ├── attuned │ │ ├── poweredreceiver.png │ │ ├── poweredtransmitter.png │ │ ├── unpoweredreceiver.png │ │ └── unpoweredtransmitter.png │ ├── basalt │ │ ├── antipaver-ctm.png │ │ ├── antipaver.png │ │ ├── basalt.png │ │ ├── bricks.png │ │ ├── chiseled.png │ │ ├── cobblestone.png │ │ ├── paver-ctm.png │ │ ├── paver.png │ │ └── paverside.png │ ├── blastwall │ │ ├── advanced-ctm.png │ │ ├── advanced.png │ │ ├── basic-ctm.png │ │ ├── basic.png │ │ ├── industrial-ctm.png │ │ ├── industrial.png │ │ ├── reinforced-ctm.png │ │ └── reinforced.png │ ├── coil │ │ ├── powered-ctm.png │ │ ├── powered-ctm.png.mcmeta │ │ ├── powered.png │ │ ├── powered.png.mcmeta │ │ ├── unpowered-ctm.png │ │ └── unpowered.png │ ├── flora │ │ ├── bluebell.png │ │ ├── iris.png │ │ ├── lotus.png │ │ ├── lotusclosed.png │ │ ├── orchid.png │ │ ├── waterlotus.png │ │ └── waterlotusclosed.png │ ├── fluid │ │ ├── Fluid_Bitumen_Flow.png │ │ ├── Fluid_Bitumen_Flow.png.mcmeta │ │ ├── Fluid_Bitumen_Still.png │ │ ├── Fluid_Bitumen_Still.png.mcmeta │ │ ├── Fluid_Creosote_Flow.png │ │ ├── Fluid_Creosote_Flow.png.mcmeta │ │ ├── Fluid_Creosote_Still.png │ │ ├── Fluid_Creosote_Still.png.mcmeta │ │ ├── Fluid_Fuel_Flow.png │ │ ├── Fluid_Fuel_Flow.png.mcmeta │ │ ├── Fluid_Fuel_Still.png │ │ ├── Fluid_Fuel_Still.png.mcmeta │ │ ├── Fluid_Oil_Flow.png │ │ ├── Fluid_Oil_Flow.png.mcmeta │ │ ├── Fluid_Oil_Still.png │ │ └── Fluid_Oil_Still.png.mcmeta │ ├── frame │ │ ├── advanced.png │ │ ├── basic.png │ │ ├── industrial.png │ │ └── reinforced.png │ ├── glasswall │ │ ├── advanced-ctm.png │ │ ├── advanced.png │ │ ├── basic-ctm.png │ │ ├── basic.png │ │ ├── industrial-ctm.png │ │ ├── industrial.png │ │ ├── reinforced-ctm.png │ │ └── reinforced.png │ ├── lamp │ │ ├── lamp-ctm.png │ │ ├── lamp.png │ │ ├── lampinverted-ctm.png │ │ └── lampinverted.png │ ├── limestone │ │ ├── antipaver-ctm.png │ │ ├── antipaver.png │ │ ├── bricks.png │ │ ├── chiseled.png │ │ ├── cobblestone.png │ │ ├── limestone.png │ │ ├── paver-ctm.png │ │ ├── paver.png │ │ └── paverside.png │ ├── logic │ │ ├── disabled.png │ │ ├── negative.png │ │ ├── output.png │ │ └── positive.png │ ├── marble │ │ ├── antipaver-ctm.png │ │ ├── antipaver.png │ │ ├── bricks.png │ │ ├── chiseled.png │ │ ├── cobblestone.png │ │ ├── marble.png │ │ ├── paver-ctm.png │ │ ├── paver.png │ │ └── paverside.png │ ├── misc │ │ ├── blackGravel.png │ │ ├── blackSand.png │ │ ├── charredlogbark.png │ │ ├── charredlogcore.png │ │ ├── detector.png │ │ └── steel.png │ ├── nuclearbattery │ │ ├── empty.png │ │ ├── full.png │ │ ├── full.png.mcmeta │ │ ├── low.png │ │ ├── low.png.mcmeta │ │ ├── partial.png │ │ └── partial.png.mcmeta │ ├── ores │ │ ├── ender │ │ │ └── oreEnder.png │ │ ├── niter │ │ │ ├── blockNiter.png │ │ │ └── oreNiter.png │ │ ├── oreCoal.png │ │ ├── oreCopper.png │ │ ├── oreDiamond.png │ │ ├── oreEmerald.png │ │ ├── oreEnder.png │ │ ├── oreGold.png │ │ ├── oreIron.png │ │ ├── oreLapis.png │ │ ├── oreLead.png │ │ ├── oreNickel.png │ │ ├── oreRedstone.png │ │ ├── oreSilver.png │ │ ├── oreSulfur.png │ │ ├── oreTin.png │ │ ├── oreUranium.png │ │ ├── sulfur │ │ │ ├── blockSulfur.png │ │ │ └── oreSulfur.png │ │ └── uranium │ │ │ ├── uraniumBlock.png │ │ │ └── uraniumOre.png │ ├── scaffold │ │ ├── advanced-ctm.png │ │ ├── advanced.png │ │ ├── basic-ctm.png │ │ ├── basic.png │ │ ├── industrial-ctm.png │ │ ├── industrial.png │ │ ├── reinforced-ctm.png │ │ ├── reinforced.png │ │ └── sides │ │ │ ├── advanced.png │ │ │ ├── basic.png │ │ │ ├── industrial.png │ │ │ └── reinforced.png │ └── torches │ │ ├── coloredparticle0.png │ │ ├── coloredparticle1.png │ │ ├── coloredparticle10.png │ │ ├── coloredparticle11.png │ │ ├── coloredparticle12.png │ │ ├── coloredparticle13.png │ │ ├── coloredparticle14.png │ │ ├── coloredparticle15.png │ │ ├── coloredparticle2.png │ │ ├── coloredparticle3.png │ │ ├── coloredparticle4.png │ │ ├── coloredparticle5.png │ │ ├── coloredparticle6.png │ │ ├── coloredparticle7.png │ │ ├── coloredparticle8.png │ │ ├── coloredparticle9.png │ │ ├── coloredtorch0.png │ │ ├── coloredtorch1.png │ │ ├── coloredtorch10.png │ │ ├── coloredtorch11.png │ │ ├── coloredtorch12.png │ │ ├── coloredtorch13.png │ │ ├── coloredtorch14.png │ │ ├── coloredtorch15.png │ │ ├── coloredtorch2.png │ │ ├── coloredtorch3.png │ │ ├── coloredtorch4.png │ │ ├── coloredtorch5.png │ │ ├── coloredtorch6.png │ │ ├── coloredtorch7.png │ │ ├── coloredtorch8.png │ │ └── coloredtorch9.png │ └── items │ ├── box │ └── box.png │ ├── bucket │ ├── BucketBitumen.png │ ├── BucketCreosote.png │ ├── BucketFuel.png │ └── BucketOil.png │ ├── coin │ ├── copper.png │ ├── gold.png │ ├── platinum.png │ └── silver.png │ ├── dye │ ├── black.png │ ├── blue.png │ ├── brown.png │ └── white.png │ ├── misc │ └── craftkit.png │ ├── nugget │ ├── copper.png │ ├── platinum.png │ └── silver.png │ ├── resources │ ├── enderdust.png │ ├── niter.png │ ├── sulfur.png │ └── uranium.png │ ├── sickle │ ├── sickle_emerald.png │ ├── sickle_gold.png │ ├── sickle_iron.png │ ├── sickle_stone.png │ └── sickle_wood.png │ ├── sledge │ ├── sledge_emerald.png │ ├── sledge_gold.png │ ├── sledge_iron.png │ ├── sledge_stone.png │ └── sledge_wood.png │ ├── steel │ ├── dust_steel.png │ └── ingot_steel.png │ └── upgrade │ ├── armorspikes.png │ ├── counterweight.png │ ├── divekit.png │ ├── elasticlayering.png │ ├── elasticsoles.png │ ├── firedamp.png │ ├── laminatedpadding.png │ ├── plaitedstring.png │ ├── quiltedcover.png │ ├── reinforcedlimbs.png │ ├── reinforcement.png │ ├── scubatank.png │ └── sharpeningkit.png ├── mcmod.info └── pack.mcmeta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/README.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/TODO.txt -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/AbstractEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/AbstractEvaluator.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/AbstractVariableSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/AbstractVariableSet.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/BracketPair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/BracketPair.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/Constant.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/DoubleEvaluator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/DoubleEvaluator.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/Function.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/Function.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/Operator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/Operator.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/Parameters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/Parameters.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/StaticVariableSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/StaticVariableSet.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/Token.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/Tokenizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/Tokenizer.java -------------------------------------------------------------------------------- /src/main/java/fathzer/javaluator/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/fathzer/javaluator/package-info.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeBlocks.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeConfig.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeCore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeCore.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeEnchants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeEnchants.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeFluids.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeFluids.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeItems.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeRegistry.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeTiles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeTiles.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeTooltips.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeTooltips.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/ArtificeWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/ArtificeWorld.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/BlockArtifice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/BlockArtifice.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/ItemBlockArtifice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/ItemBlockArtifice.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/decorative/BlockColoredTorch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/decorative/BlockColoredTorch.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/decorative/BlockLamp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/decorative/BlockLamp.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/decorative/BlockRockSlab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/decorative/BlockRockSlab.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/decorative/BlockStairsArtifice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/decorative/BlockStairsArtifice.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/decorative/BlockSteel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/decorative/BlockSteel.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/decorative/ItemBlockSlabArtifice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/decorative/ItemBlockSlabArtifice.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/fluid/BlockFluidBitumen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/fluid/BlockFluidBitumen.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/fluid/BlockFluidCreosote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/fluid/BlockFluidCreosote.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/fluid/BlockFluidFuel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/fluid/BlockFluidFuel.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/fluid/BlockFluidOil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/fluid/BlockFluidOil.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/frame/BlockFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/frame/BlockFrame.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/frame/BlockFrameBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/frame/BlockFrameBase.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/frame/BlockFrameBlastWall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/frame/BlockFrameBlastWall.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/frame/BlockFrameDetector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/frame/BlockFrameDetector.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/frame/BlockFrameGlassWall.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/frame/BlockFrameGlassWall.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/frame/BlockFrameScaffold.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/frame/BlockFrameScaffold.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/frame/ItemBlockFrame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/frame/ItemBlockFrame.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/functional/BlockAttunedRedstone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/functional/BlockAttunedRedstone.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/functional/BlockHeatingCoil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/functional/BlockHeatingCoil.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/functional/BlockLogicRedstone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/functional/BlockLogicRedstone.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/functional/BlockNuclearBattery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/functional/BlockNuclearBattery.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/functional/ItemBlockAttunedRedstone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/functional/ItemBlockAttunedRedstone.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockBasicOre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockBasicOre.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockCharredLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockCharredLog.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockEnderOre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockEnderOre.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockFlora.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockFlora.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockGlowSand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockGlowSand.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockLotus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockLotus.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockNiter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockNiter.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockOre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockOre.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockRock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockRock.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockSulfur.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockSulfur.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/BlockTephra.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/BlockTephra.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/ItemBlockBasicOre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/ItemBlockBasicOre.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/ItemBlockFlora.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/ItemBlockFlora.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/ItemBlockLotus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/ItemBlockLotus.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/ItemBlockNiter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/ItemBlockNiter.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/ItemBlockOre.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/ItemBlockOre.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/ItemBlockRock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/ItemBlockRock.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/ItemBlockSulfur.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/ItemBlockSulfur.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/block/world/ItemBlockTephra.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/block/world/ItemBlockTephra.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/command/CommandCalc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/command/CommandCalc.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/AE2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/AE2.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/Buildcraft.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/Buildcraft.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/CarpentersBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/CarpentersBlocks.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/EE3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/EE3.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/FMP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/FMP.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/Forestry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/Forestry.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/ICompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/ICompat.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/IMC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/IMC.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/MFR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/MFR.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/compat/Vanilla.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/compat/Vanilla.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/enchant/EnchantmentInvisible.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/enchant/EnchantmentInvisible.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/enchant/EnchantmentResistance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/enchant/EnchantmentResistance.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/enchant/EnchantmentSoulstealing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/enchant/EnchantmentSoulstealing.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/event/ArtificeClientEventHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/event/ArtificeClientEventHandler.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/event/ArtificeClientTickHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/event/ArtificeClientTickHandler.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/event/ArtificeEventHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/event/ArtificeEventHandler.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/event/ArtificeTickHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/event/ArtificeTickHandler.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/event/Tracking.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/event/Tracking.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/gui/ArtificeCreativeTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/gui/ArtificeCreativeTab.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/gui/ContainerCraftkit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/gui/ContainerCraftkit.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/gui/GuiCraftKit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/gui/GuiCraftKit.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/gui/GuiHandlerArtifice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/gui/GuiHandlerArtifice.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/DispenserBehaviorBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/DispenserBehaviorBox.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/DispenserBehaviorSledge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/DispenserBehaviorSledge.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemArtifice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemArtifice.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemBox.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemBucket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemBucket.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemCoin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemCoin.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemCraftKit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemCraftKit.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemDye.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemDye.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemNugget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemNugget.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemResource.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemSickle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemSickle.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemSledge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemSledge.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemSteel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemSteel.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/item/ItemUpgrade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/item/ItemUpgrade.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/net/ArtificeMessageToMessageCodec.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/net/ArtificeMessageToMessageCodec.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/net/ClientProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/net/ClientProxy.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/net/CommonProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/net/CommonProxy.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/net/PacketDispatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/net/PacketDispatcher.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/net/handlers/SneakMessageHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/net/handlers/SneakMessageHandler.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/net/packets/ArtificePacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/net/packets/ArtificePacket.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/net/packets/ArtificePacketSneak.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/net/packets/ArtificePacketSneak.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/recipe/ArtificeRecipes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/recipe/ArtificeRecipes.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/recipe/BoxCraftingHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/recipe/BoxCraftingHandler.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/recipe/EnumUpgrades.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/recipe/EnumUpgrades.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/recipe/RecipeBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/recipe/RecipeBox.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/recipe/RecipeUpgrade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/recipe/RecipeUpgrade.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/EntityColoredFlameFX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/EntityColoredFlameFX.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/FrameRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/FrameRenderer.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/LotusRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/LotusRenderer.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/OreRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/OreRenderer.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/RenderBlocksInverted.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/RenderBlocksInverted.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/TextureHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/TextureHandler.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/connectedtexture/CTM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/connectedtexture/CTM.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/connectedtexture/CTMRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/connectedtexture/CTMRenderer.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/connectedtexture/ConnectedTexture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/connectedtexture/ConnectedTexture.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/connectedtexture/RenderBlocksCTM.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/connectedtexture/RenderBlocksCTM.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/connectedtexture/TextureSubmap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/connectedtexture/TextureSubmap.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/render/connectedtexture/TextureVirtual.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/render/connectedtexture/TextureVirtual.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/tile/HeatStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/tile/HeatStorage.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/tile/IHeatProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/tile/IHeatProvider.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/tile/IHeatReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/tile/IHeatReceiver.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/tile/TileEntityAttuned.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/tile/TileEntityAttuned.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/tile/TileEntityHeatingCoil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/tile/TileEntityHeatingCoil.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/tile/TileEntityLogic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/tile/TileEntityLogic.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/tile/TileEntityNuclearBattery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/tile/TileEntityNuclearBattery.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/tile/TileFurnaceWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/tile/TileFurnaceWrapper.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/BlockCoord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/BlockCoord.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/ChunkCoord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/ChunkCoord.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/ComparableItemStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/ComparableItemStack.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/ComparableItemStackNBT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/ComparableItemStackNBT.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/Drawing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/Drawing.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/FormatCodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/FormatCodes.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/MinecraftColors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/MinecraftColors.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/MiscUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/MiscUtils.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/NameMetaPair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/NameMetaPair.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/RomanUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/RomanUtil.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/util/XSRandom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/util/XSRandom.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/IDelayedGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/IDelayedGen.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/ISuspendableGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/ISuspendableGen.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/VolcanoHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/VolcanoHelper.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/WorldGenCave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/WorldGenCave.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/WorldGenCluster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/WorldGenCluster.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/WorldGenDesert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/WorldGenDesert.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/WorldGenFlowers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/WorldGenFlowers.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/WorldGenLake.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/WorldGenLake.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/WorldGenLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/WorldGenLayer.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/WorldGenLily.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/WorldGenLily.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/WorldGenSulfur.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/WorldGenSulfur.java -------------------------------------------------------------------------------- /src/main/java/shukaro/artifice/world/WorldGenVolcano.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/java/shukaro/artifice/world/WorldGenVolcano.java -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/lang/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/lang/en_US.lang -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/lang/pt_BR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/lang/pt_BR.lang -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/lang/ru_RU.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/lang/ru_RU.lang -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/lang/zh_CN.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/lang/zh_CN.lang -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/attuned/poweredreceiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/attuned/poweredreceiver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/attuned/poweredtransmitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/attuned/poweredtransmitter.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/attuned/unpoweredreceiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/attuned/unpoweredreceiver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/attuned/unpoweredtransmitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/attuned/unpoweredtransmitter.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/basalt/antipaver-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/basalt/antipaver-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/basalt/antipaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/basalt/antipaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/basalt/basalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/basalt/basalt.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/basalt/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/basalt/bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/basalt/chiseled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/basalt/chiseled.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/basalt/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/basalt/cobblestone.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/basalt/paver-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/basalt/paver-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/basalt/paver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/basalt/paver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/basalt/paverside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/basalt/paverside.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/blastwall/advanced-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/blastwall/advanced-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/blastwall/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/blastwall/advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/blastwall/basic-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/blastwall/basic-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/blastwall/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/blastwall/basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/blastwall/industrial-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/blastwall/industrial-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/blastwall/industrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/blastwall/industrial.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/blastwall/reinforced-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/blastwall/reinforced-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/blastwall/reinforced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/blastwall/reinforced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/coil/powered-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/coil/powered-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/coil/powered-ctm.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/coil/powered-ctm.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/coil/powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/coil/powered.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/coil/powered.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/coil/powered.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/coil/unpowered-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/coil/unpowered-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/coil/unpowered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/coil/unpowered.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/flora/bluebell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/flora/bluebell.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/flora/iris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/flora/iris.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/flora/lotus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/flora/lotus.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/flora/lotusclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/flora/lotusclosed.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/flora/orchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/flora/orchid.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/flora/waterlotus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/flora/waterlotus.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/flora/waterlotusclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/flora/waterlotusclosed.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Bitumen_Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Bitumen_Flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Bitumen_Flow.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Bitumen_Flow.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Bitumen_Still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Bitumen_Still.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Bitumen_Still.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Bitumen_Still.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Creosote_Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Creosote_Flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Creosote_Flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Creosote_Still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Creosote_Still.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Creosote_Still.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Creosote_Still.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Fuel_Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Fuel_Flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Fuel_Flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Fuel_Still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Fuel_Still.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Fuel_Still.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Fuel_Still.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Oil_Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Oil_Flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Oil_Flow.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Oil_Flow.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Oil_Still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Oil_Still.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Oil_Still.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/fluid/Fluid_Oil_Still.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/frame/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/frame/advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/frame/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/frame/basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/frame/industrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/frame/industrial.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/frame/reinforced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/frame/reinforced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/glasswall/advanced-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/glasswall/advanced-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/glasswall/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/glasswall/advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/glasswall/basic-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/glasswall/basic-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/glasswall/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/glasswall/basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/glasswall/industrial-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/glasswall/industrial-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/glasswall/industrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/glasswall/industrial.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/glasswall/reinforced-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/glasswall/reinforced-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/glasswall/reinforced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/glasswall/reinforced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/lamp/lamp-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/lamp/lamp-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/lamp/lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/lamp/lamp.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/lamp/lampinverted-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/lamp/lampinverted-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/lamp/lampinverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/lamp/lampinverted.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/limestone/antipaver-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/limestone/antipaver-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/limestone/antipaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/limestone/antipaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/limestone/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/limestone/bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/limestone/chiseled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/limestone/chiseled.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/limestone/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/limestone/cobblestone.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/limestone/limestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/limestone/limestone.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/limestone/paver-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/limestone/paver-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/limestone/paver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/limestone/paver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/limestone/paverside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/limestone/paverside.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/logic/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/logic/disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/logic/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/logic/negative.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/logic/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/logic/output.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/logic/positive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/logic/positive.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/marble/antipaver-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/marble/antipaver-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/marble/antipaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/marble/antipaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/marble/bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/marble/bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/marble/chiseled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/marble/chiseled.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/marble/cobblestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/marble/cobblestone.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/marble/marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/marble/marble.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/marble/paver-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/marble/paver-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/marble/paver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/marble/paver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/marble/paverside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/marble/paverside.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/misc/blackGravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/misc/blackGravel.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/misc/blackSand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/misc/blackSand.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/misc/charredlogbark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/misc/charredlogbark.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/misc/charredlogcore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/misc/charredlogcore.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/misc/detector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/misc/detector.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/misc/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/misc/steel.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/nuclearbattery/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/nuclearbattery/empty.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/nuclearbattery/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/nuclearbattery/full.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/nuclearbattery/full.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/nuclearbattery/full.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/nuclearbattery/low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/nuclearbattery/low.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/nuclearbattery/low.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/nuclearbattery/low.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/nuclearbattery/partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/nuclearbattery/partial.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/nuclearbattery/partial.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/nuclearbattery/partial.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/ender/oreEnder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/ender/oreEnder.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/niter/blockNiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/niter/blockNiter.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/niter/oreNiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/niter/oreNiter.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreCoal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreCoal.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreCopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreCopper.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreDiamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreDiamond.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreEmerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreEmerald.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreEnder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreEnder.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreGold.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreIron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreIron.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreLapis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreLapis.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreLead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreLead.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreNickel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreNickel.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreRedstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreRedstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreSilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreSilver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreSulfur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreSulfur.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreTin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreTin.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/oreUranium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/oreUranium.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/sulfur/blockSulfur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/sulfur/blockSulfur.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/sulfur/oreSulfur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/sulfur/oreSulfur.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/uranium/uraniumBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/uranium/uraniumBlock.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/ores/uranium/uraniumOre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/ores/uranium/uraniumOre.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/advanced-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/advanced-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/basic-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/basic-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/industrial-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/industrial-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/industrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/industrial.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/reinforced-ctm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/reinforced-ctm.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/reinforced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/reinforced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/sides/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/sides/advanced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/sides/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/sides/basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/sides/industrial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/sides/industrial.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/scaffold/sides/reinforced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/scaffold/sides/reinforced.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle0.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle1.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle10.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle11.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle12.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle13.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle14.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle15.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle2.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle3.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle4.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle5.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle6.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle7.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle8.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredparticle9.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch0.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch1.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch10.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch11.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch12.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch13.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch14.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch15.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch2.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch3.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch4.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch5.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch6.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch7.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch8.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/blocks/torches/coloredtorch9.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/box/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/box/box.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/bucket/BucketBitumen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/bucket/BucketBitumen.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/bucket/BucketCreosote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/bucket/BucketCreosote.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/bucket/BucketFuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/bucket/BucketFuel.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/bucket/BucketOil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/bucket/BucketOil.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/coin/copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/coin/copper.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/coin/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/coin/gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/coin/platinum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/coin/platinum.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/coin/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/coin/silver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/dye/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/dye/black.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/dye/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/dye/blue.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/dye/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/dye/brown.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/dye/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/dye/white.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/misc/craftkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/misc/craftkit.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/nugget/copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/nugget/copper.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/nugget/platinum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/nugget/platinum.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/nugget/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/nugget/silver.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/resources/enderdust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/resources/enderdust.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/resources/niter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/resources/niter.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/resources/sulfur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/resources/sulfur.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/resources/uranium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/resources/uranium.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sickle/sickle_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sickle/sickle_emerald.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sickle/sickle_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sickle/sickle_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sickle/sickle_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sickle/sickle_iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sickle/sickle_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sickle/sickle_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sickle/sickle_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sickle/sickle_wood.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sledge/sledge_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sledge/sledge_emerald.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sledge/sledge_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sledge/sledge_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sledge/sledge_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sledge/sledge_iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sledge/sledge_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sledge/sledge_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/sledge/sledge_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/sledge/sledge_wood.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/steel/dust_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/steel/dust_steel.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/steel/ingot_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/steel/ingot_steel.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/armorspikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/armorspikes.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/counterweight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/counterweight.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/divekit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/divekit.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/elasticlayering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/elasticlayering.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/elasticsoles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/elasticsoles.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/firedamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/firedamp.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/laminatedpadding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/laminatedpadding.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/plaitedstring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/plaitedstring.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/quiltedcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/quiltedcover.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/reinforcedlimbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/reinforcedlimbs.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/reinforcement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/reinforcement.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/scubatank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/scubatank.png -------------------------------------------------------------------------------- /src/main/resources/assets/artifice/textures/items/upgrade/sharpeningkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/assets/artifice/textures/items/upgrade/sharpeningkit.png -------------------------------------------------------------------------------- /src/main/resources/mcmod.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/mcmod.info -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AKA-Syenite/Artifice/HEAD/src/main/resources/pack.mcmeta --------------------------------------------------------------------------------