├── .gitignore ├── COPYING.txt ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src └── main ├── java ├── baubles │ └── api │ │ ├── BaubleType.java │ │ ├── BaublesApi.java │ │ ├── IBauble.java │ │ └── package-info.java └── xreliquary │ ├── CreativeTabXR.java │ ├── Reliquary.java │ ├── blocks │ ├── BlockAlkahestryAltar.java │ ├── BlockApothecaryCauldron.java │ ├── BlockApothecaryMortar.java │ ├── BlockFertileLilypad.java │ ├── BlockInterdictionTorch.java │ ├── BlockWraithNode.java │ └── tile │ │ ├── TileEntityAltar.java │ │ ├── TileEntityCauldron.java │ │ └── TileEntityMortar.java │ ├── client │ ├── ClientProxy.java │ ├── gui │ │ ├── GuiAlkahestTome.java │ │ ├── XRGuiConfig.java │ │ └── XRGuiFactory.java │ ├── model │ │ ├── ModelCaster.java │ │ ├── ModelHandgun.java │ │ ├── ModelMortar.java │ │ └── ModelWitchHat.java │ ├── particle │ │ ├── EntityCauldronBubbleFX.java │ │ └── EntityCauldronSteamFX.java │ └── render │ │ ├── ItemRendererApothecaryMortar.java │ │ ├── ItemRendererHandgun.java │ │ ├── RenderApothecaryCauldron.java │ │ ├── RenderApothecaryMortar.java │ │ ├── RenderShot.java │ │ ├── RenderThrown.java │ │ └── RenderThrownPotion.java │ ├── common │ ├── CommonProxy.java │ ├── asm │ │ └── DepLoader.java │ └── gui │ │ ├── ContainerAlkahestTome.java │ │ └── GUIHandler.java │ ├── entities │ ├── ConcussiveExplosion.java │ ├── EntityEnderStaffProjectile.java │ ├── EntityGlowingWater.java │ ├── EntityHolyHandGrenade.java │ ├── EntityKrakenSlime.java │ ├── EntityLyssaHook.java │ ├── EntitySpecialSnowball.java │ ├── potion │ │ ├── EntityAttractionPotion.java │ │ ├── EntityFertilePotion.java │ │ ├── EntityThrownPotion.java │ │ └── EntityThrownXRPotion.java │ └── shot │ │ ├── EntityBlazeShot.java │ │ ├── EntityBusterShot.java │ │ ├── EntityConcussiveShot.java │ │ ├── EntityEnderShot.java │ │ ├── EntityExorcismShot.java │ │ ├── EntityNeutralShot.java │ │ ├── EntitySandShot.java │ │ ├── EntitySeekerShot.java │ │ ├── EntityShotBase.java │ │ └── EntityStormShot.java │ ├── event │ ├── ClientEventHandler.java │ └── CommonEventHandler.java │ ├── init │ └── XRRecipes.java │ ├── integration │ └── NEIModIntegration.java │ ├── items │ ├── ItemAlkahestryTome.java │ ├── ItemAngelheartVial.java │ ├── ItemAngelicFeather.java │ ├── ItemAttractionPotion.java │ ├── ItemBauble.java │ ├── ItemBullet.java │ ├── ItemDestructionCatalyst.java │ ├── ItemElsewhereFlask.java │ ├── ItemEmperorChalice.java │ ├── ItemEnderStaff.java │ ├── ItemFertilePotion.java │ ├── ItemFortuneCoin.java │ ├── ItemGlacialStaff.java │ ├── ItemGlowingBread.java │ ├── ItemGlowingWater.java │ ├── ItemGunPart.java │ ├── ItemHandgun.java │ ├── ItemHarvestRod.java │ ├── ItemHeartPearl.java │ ├── ItemHeartZhu.java │ ├── ItemHeroMedallion.java │ ├── ItemHolyHandGrenade.java │ ├── ItemIceRod.java │ ├── ItemInfernalChalice.java │ ├── ItemInfernalClaws.java │ ├── ItemInfernalTear.java │ ├── ItemKrakenShell.java │ ├── ItemLanternOfParanoia.java │ ├── ItemMagazine.java │ ├── ItemMagicbane.java │ ├── ItemMercyCross.java │ ├── ItemMidasTouchstone.java │ ├── ItemMobIngredient.java │ ├── ItemPhoenixDown.java │ ├── ItemPotionEssence.java │ ├── ItemPyromancerStaff.java │ ├── ItemRendingGale.java │ ├── ItemRodOfLyssa.java │ ├── ItemSalamanderEye.java │ ├── ItemSerpentStaff.java │ ├── ItemShearsOfWinter.java │ ├── ItemSojournerStaff.java │ ├── ItemTwilightCloak.java │ ├── ItemVoidTear.java │ ├── ItemVoidTearEmpty.java │ ├── ItemWitchHat.java │ ├── ItemWitherlessRose.java │ ├── ItemXRPotion.java │ ├── alkahestry │ │ ├── AlkahestryCraftingRecipe.java │ │ ├── AlkahestryDrainRecipe.java │ │ └── AlkahestryRedstoneRecipe.java │ └── block │ │ └── ItemFertileLilypad.java │ ├── lib │ ├── ClientReference.java │ ├── Colors.java │ ├── Names.java │ └── Reference.java │ ├── network │ └── PacketHandler.java │ └── util │ ├── alkahestry │ ├── AlkahestRecipe.java │ └── Alkahestry.java │ └── potions │ ├── PotionEssence.java │ ├── PotionIngredient.java │ ├── PotionMap.java │ ├── WeightedPotionEffect.java │ └── XRPotionHelper.java └── resources ├── assets └── xreliquary │ ├── lang │ ├── de_DE.lang │ ├── en_US.lang │ ├── fr_FR.lang │ ├── ru_RU.lang │ └── zh_CN.lang │ ├── sounds.json │ ├── sounds │ ├── book.ogg │ ├── gust.ogg │ ├── xload.ogg │ └── xshot.ogg │ └── textures │ ├── blocks │ ├── altar.png │ ├── altar_idle.png │ ├── apothecary_cauldron_bottom.png │ ├── apothecary_cauldron_inner.png │ ├── apothecary_cauldron_inside.png │ ├── apothecary_cauldron_side.png │ ├── apothecary_cauldron_top.png │ ├── apothecary_mortar.png │ ├── cauldron_water.png │ ├── cauldron_water.png.mcmeta │ ├── interdiction_torch.png │ ├── lilypad.png │ ├── wraith_node.png │ └── wraith_node_top.png │ ├── entities │ ├── blazeShot.png │ ├── busterShot.png │ ├── concussiveShot.png │ ├── enderShot.png │ ├── exorcismShot.png │ ├── neutralShot.png │ ├── sandShot.png │ ├── seekerShot.png │ ├── stormShot.png │ └── thrownItemsSheet.png │ ├── gui │ └── book.png │ ├── items │ ├── alchemical_crucible.png │ ├── alchemical_shell.png │ ├── alchemical_steel.png │ ├── alembic.png │ ├── alkahest_tome.png │ ├── angelheart_vial.png │ ├── angelic_feather.png │ ├── attraction_potion.png │ ├── bullet.png │ ├── bullet_overlay.png │ ├── condensed_potion.png │ ├── condensed_potion_overlay.png │ ├── condensed_potion_splash.png │ ├── condensed_potion_splash_overlay.png │ ├── destruction_catalyst.png │ ├── elsewhere_flask.png │ ├── emperor_chalice.png │ ├── emperor_chalice_overlay.png │ ├── ender_staff.png │ ├── ender_staff.png.mcmeta │ ├── fertile_potion.png │ ├── fortune_coin.png │ ├── fortune_coin_overlay.png │ ├── glacial_staff.png │ ├── glacial_staff.png.mcmeta │ ├── glowing_bread.png │ ├── glowing_water.png │ ├── gun_part_0.png │ ├── gun_part_1.png │ ├── gun_part_2.png │ ├── handgun.png │ ├── handgun_overlay.png │ ├── harvest_rod.png │ ├── harvest_rod.png.mcmeta │ ├── heart_pearl.png │ ├── heart_zhu.png │ ├── hero_medallion.png │ ├── hero_medallion_overlay.png │ ├── holy_hand_grenade.png │ ├── ice_magus_rod.png │ ├── infernal_chalice.png │ ├── infernal_chalice.png.mcmeta │ ├── infernal_claws.png │ ├── infernal_tear.png │ ├── infernal_tear.png.mcmeta │ ├── infernal_tear_empty.png │ ├── kraken_shell.png │ ├── lantern_of_paranoia.png │ ├── lantern_of_paranoia.png.mcmeta │ ├── lilypad.png │ ├── magazine.png │ ├── magazine_overlay.png │ ├── magicbane.png │ ├── mercy_cross.png │ ├── midas_touchstone.png │ ├── mob_ingredient_0.png │ ├── mob_ingredient_1.png │ ├── mob_ingredient_10.png │ ├── mob_ingredient_10.png.mcmeta │ ├── mob_ingredient_11.png │ ├── mob_ingredient_11.png.mcmeta │ ├── mob_ingredient_12.png │ ├── mob_ingredient_13.png │ ├── mob_ingredient_14.png │ ├── mob_ingredient_15.png │ ├── mob_ingredient_2.png │ ├── mob_ingredient_3.png │ ├── mob_ingredient_4.png │ ├── mob_ingredient_5.png │ ├── mob_ingredient_6.png │ ├── mob_ingredient_7.png │ ├── mob_ingredient_7.png.mcmeta │ ├── mob_ingredient_8.png │ ├── mob_ingredient_8.png.mcmeta │ ├── mob_ingredient_9.png │ ├── mob_ingredient_9.png.mcmeta │ ├── phoenix_down.png │ ├── phoenix_down.png.mcmeta │ ├── potion.png │ ├── potion_essence.png │ ├── potion_overlay.png │ ├── potion_splash.png │ ├── potion_splash_overlay.png │ ├── pyromancer_staff.png │ ├── pyromancer_staff.png.mcmeta │ ├── rending_gale.png │ ├── rending_gale.png.mcmeta │ ├── rod_of_lyssa.png │ ├── rod_of_lyssa.png.mcmeta │ ├── rod_of_lyssa_cast.png │ ├── rod_of_lyssa_cast.png.mcmeta │ ├── salamander_eye.png │ ├── salamander_eye.png.mcmeta │ ├── serpent_staff.png │ ├── shears_of_winter.png │ ├── shears_of_winter.png.mcmeta │ ├── sojourner_staff.png │ ├── twilight_cloak.png │ ├── twilight_cloak.png.mcmeta │ ├── void_tear.png │ ├── void_tear_empty.png │ ├── witch_hat.png │ └── witherless_rose.png │ ├── logo │ └── xrlogo.png │ ├── models │ ├── caster.png │ ├── handgun.png │ └── mortar.png │ ├── particles │ ├── cauldron_bubble.png │ ├── ice.png │ └── lava.png │ └── templates │ └── Blank.png ├── dependencies.info └── mcmod.info /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/java/baubles/api/BaubleType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/baubles/api/BaubleType.java -------------------------------------------------------------------------------- /src/main/java/baubles/api/BaublesApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/baubles/api/BaublesApi.java -------------------------------------------------------------------------------- /src/main/java/baubles/api/IBauble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/baubles/api/IBauble.java -------------------------------------------------------------------------------- /src/main/java/baubles/api/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/baubles/api/package-info.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/CreativeTabXR.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/CreativeTabXR.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/Reliquary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/Reliquary.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/blocks/BlockAlkahestryAltar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/blocks/BlockAlkahestryAltar.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/blocks/BlockApothecaryCauldron.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/blocks/BlockApothecaryCauldron.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/blocks/BlockApothecaryMortar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/blocks/BlockApothecaryMortar.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/blocks/BlockFertileLilypad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/blocks/BlockFertileLilypad.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/blocks/BlockInterdictionTorch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/blocks/BlockInterdictionTorch.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/blocks/BlockWraithNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/blocks/BlockWraithNode.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/blocks/tile/TileEntityAltar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/blocks/tile/TileEntityAltar.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/blocks/tile/TileEntityCauldron.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/blocks/tile/TileEntityCauldron.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/blocks/tile/TileEntityMortar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/blocks/tile/TileEntityMortar.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/ClientProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/ClientProxy.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/gui/GuiAlkahestTome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/gui/GuiAlkahestTome.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/gui/XRGuiConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/gui/XRGuiConfig.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/gui/XRGuiFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/gui/XRGuiFactory.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/model/ModelCaster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/model/ModelCaster.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/model/ModelHandgun.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/model/ModelHandgun.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/model/ModelMortar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/model/ModelMortar.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/model/ModelWitchHat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/model/ModelWitchHat.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/particle/EntityCauldronBubbleFX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/particle/EntityCauldronBubbleFX.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/particle/EntityCauldronSteamFX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/particle/EntityCauldronSteamFX.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/render/ItemRendererApothecaryMortar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/render/ItemRendererApothecaryMortar.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/render/ItemRendererHandgun.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/render/ItemRendererHandgun.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/render/RenderApothecaryCauldron.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/render/RenderApothecaryCauldron.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/render/RenderApothecaryMortar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/render/RenderApothecaryMortar.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/render/RenderShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/render/RenderShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/render/RenderThrown.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/render/RenderThrown.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/client/render/RenderThrownPotion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/client/render/RenderThrownPotion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/common/CommonProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/common/CommonProxy.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/common/asm/DepLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/common/asm/DepLoader.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/common/gui/ContainerAlkahestTome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/common/gui/ContainerAlkahestTome.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/common/gui/GUIHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/common/gui/GUIHandler.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/ConcussiveExplosion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/ConcussiveExplosion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/EntityEnderStaffProjectile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/EntityEnderStaffProjectile.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/EntityGlowingWater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/EntityGlowingWater.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/EntityHolyHandGrenade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/EntityHolyHandGrenade.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/EntityKrakenSlime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/EntityKrakenSlime.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/EntityLyssaHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/EntityLyssaHook.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/EntitySpecialSnowball.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/EntitySpecialSnowball.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/potion/EntityAttractionPotion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/potion/EntityAttractionPotion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/potion/EntityFertilePotion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/potion/EntityFertilePotion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/potion/EntityThrownPotion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/potion/EntityThrownPotion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/potion/EntityThrownXRPotion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/potion/EntityThrownXRPotion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntityBlazeShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntityBlazeShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntityBusterShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntityBusterShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntityConcussiveShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntityConcussiveShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntityEnderShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntityEnderShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntityExorcismShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntityExorcismShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntityNeutralShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntityNeutralShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntitySandShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntitySandShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntitySeekerShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntitySeekerShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntityShotBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntityShotBase.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/entities/shot/EntityStormShot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/entities/shot/EntityStormShot.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/event/ClientEventHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/event/ClientEventHandler.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/event/CommonEventHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/event/CommonEventHandler.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/init/XRRecipes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/init/XRRecipes.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/integration/NEIModIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/integration/NEIModIntegration.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemAlkahestryTome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemAlkahestryTome.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemAngelheartVial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemAngelheartVial.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemAngelicFeather.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemAngelicFeather.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemAttractionPotion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemAttractionPotion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemBauble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemBauble.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemBullet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemBullet.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemDestructionCatalyst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemDestructionCatalyst.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemElsewhereFlask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemElsewhereFlask.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemEmperorChalice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemEmperorChalice.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemEnderStaff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemEnderStaff.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemFertilePotion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemFertilePotion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemFortuneCoin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemFortuneCoin.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemGlacialStaff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemGlacialStaff.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemGlowingBread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemGlowingBread.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemGlowingWater.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemGlowingWater.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemGunPart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemGunPart.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemHandgun.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemHandgun.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemHarvestRod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemHarvestRod.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemHeartPearl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemHeartPearl.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemHeartZhu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemHeartZhu.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemHeroMedallion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemHeroMedallion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemHolyHandGrenade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemHolyHandGrenade.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemIceRod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemIceRod.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemInfernalChalice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemInfernalChalice.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemInfernalClaws.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemInfernalClaws.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemInfernalTear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemInfernalTear.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemKrakenShell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemKrakenShell.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemLanternOfParanoia.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemLanternOfParanoia.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemMagazine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemMagazine.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemMagicbane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemMagicbane.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemMercyCross.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemMercyCross.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemMidasTouchstone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemMidasTouchstone.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemMobIngredient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemMobIngredient.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemPhoenixDown.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemPhoenixDown.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemPotionEssence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemPotionEssence.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemPyromancerStaff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemPyromancerStaff.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemRendingGale.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemRendingGale.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemRodOfLyssa.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemRodOfLyssa.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemSalamanderEye.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemSalamanderEye.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemSerpentStaff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemSerpentStaff.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemShearsOfWinter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemShearsOfWinter.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemSojournerStaff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemSojournerStaff.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemTwilightCloak.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemTwilightCloak.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemVoidTear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemVoidTear.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemVoidTearEmpty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemVoidTearEmpty.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemWitchHat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemWitchHat.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemWitherlessRose.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemWitherlessRose.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/ItemXRPotion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/ItemXRPotion.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/alkahestry/AlkahestryCraftingRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/alkahestry/AlkahestryCraftingRecipe.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/alkahestry/AlkahestryDrainRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/alkahestry/AlkahestryDrainRecipe.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/alkahestry/AlkahestryRedstoneRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/alkahestry/AlkahestryRedstoneRecipe.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/items/block/ItemFertileLilypad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/items/block/ItemFertileLilypad.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/lib/ClientReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/lib/ClientReference.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/lib/Colors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/lib/Colors.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/lib/Names.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/lib/Names.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/lib/Reference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/lib/Reference.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/network/PacketHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/network/PacketHandler.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/util/alkahestry/AlkahestRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/util/alkahestry/AlkahestRecipe.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/util/alkahestry/Alkahestry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/util/alkahestry/Alkahestry.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/util/potions/PotionEssence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/util/potions/PotionEssence.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/util/potions/PotionIngredient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/util/potions/PotionIngredient.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/util/potions/PotionMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/util/potions/PotionMap.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/util/potions/WeightedPotionEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/util/potions/WeightedPotionEffect.java -------------------------------------------------------------------------------- /src/main/java/xreliquary/util/potions/XRPotionHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/java/xreliquary/util/potions/XRPotionHelper.java -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/lang/de_DE.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/lang/de_DE.lang -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/lang/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/lang/en_US.lang -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/lang/fr_FR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/lang/fr_FR.lang -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/lang/ru_RU.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/lang/ru_RU.lang -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/lang/zh_CN.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/lang/zh_CN.lang -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/sounds.json -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/sounds/book.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/sounds/book.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/sounds/gust.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/sounds/gust.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/sounds/xload.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/sounds/xload.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/sounds/xshot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/sounds/xshot.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/altar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/altar.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/altar_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/altar_idle.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_inside.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/apothecary_cauldron_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/apothecary_mortar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/apothecary_mortar.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/cauldron_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/cauldron_water.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/cauldron_water.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/cauldron_water.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/interdiction_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/interdiction_torch.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/lilypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/lilypad.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/wraith_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/wraith_node.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/blocks/wraith_node_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/blocks/wraith_node_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/blazeShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/blazeShot.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/busterShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/busterShot.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/concussiveShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/concussiveShot.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/enderShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/enderShot.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/exorcismShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/exorcismShot.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/neutralShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/neutralShot.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/sandShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/sandShot.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/seekerShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/seekerShot.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/stormShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/stormShot.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/entities/thrownItemsSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/entities/thrownItemsSheet.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/gui/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/gui/book.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/alchemical_crucible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/alchemical_crucible.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/alchemical_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/alchemical_shell.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/alchemical_steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/alchemical_steel.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/alembic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/alembic.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/alkahest_tome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/alkahest_tome.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/angelheart_vial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/angelheart_vial.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/angelic_feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/angelic_feather.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/attraction_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/attraction_potion.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/bullet.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/bullet_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/bullet_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/condensed_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/condensed_potion.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/condensed_potion_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/condensed_potion_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/condensed_potion_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/condensed_potion_splash.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/condensed_potion_splash_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/condensed_potion_splash_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/destruction_catalyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/destruction_catalyst.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/elsewhere_flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/elsewhere_flask.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/emperor_chalice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/emperor_chalice.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/emperor_chalice_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/emperor_chalice_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/ender_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/ender_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/ender_staff.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/ender_staff.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/fertile_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/fertile_potion.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/fortune_coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/fortune_coin.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/fortune_coin_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/fortune_coin_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/glacial_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/glacial_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/glacial_staff.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/glacial_staff.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/glowing_bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/glowing_bread.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/glowing_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/glowing_water.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/gun_part_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/gun_part_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/gun_part_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/gun_part_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/gun_part_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/gun_part_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/handgun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/handgun.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/handgun_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/handgun_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/harvest_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/harvest_rod.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/harvest_rod.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/harvest_rod.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/heart_pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/heart_pearl.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/heart_zhu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/heart_zhu.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/hero_medallion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/hero_medallion.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/hero_medallion_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/hero_medallion_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/holy_hand_grenade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/holy_hand_grenade.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/ice_magus_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/ice_magus_rod.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/infernal_chalice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/infernal_chalice.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/infernal_chalice.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/infernal_chalice.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/infernal_claws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/infernal_claws.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/infernal_tear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/infernal_tear.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/infernal_tear.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/infernal_tear.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/infernal_tear_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/infernal_tear_empty.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/kraken_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/kraken_shell.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/lantern_of_paranoia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/lantern_of_paranoia.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/lantern_of_paranoia.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/lantern_of_paranoia.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/lilypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/lilypad.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/magazine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/magazine.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/magazine_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/magazine_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/magicbane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/magicbane.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mercy_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mercy_cross.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/midas_touchstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/midas_touchstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_10.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_10.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_10.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_11.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_11.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_11.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_12.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_13.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_14.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_15.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_7.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_7.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_8.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_8.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_8.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_9.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/mob_ingredient_9.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/mob_ingredient_9.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/phoenix_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/phoenix_down.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/phoenix_down.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/phoenix_down.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/potion.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/potion_essence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/potion_essence.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/potion_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/potion_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/potion_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/potion_splash.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/potion_splash_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/potion_splash_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/pyromancer_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/pyromancer_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/pyromancer_staff.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/pyromancer_staff.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/rending_gale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/rending_gale.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/rending_gale.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/rending_gale.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/rod_of_lyssa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/rod_of_lyssa.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/rod_of_lyssa.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/rod_of_lyssa.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/rod_of_lyssa_cast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/rod_of_lyssa_cast.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/rod_of_lyssa_cast.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/rod_of_lyssa_cast.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/salamander_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/salamander_eye.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/salamander_eye.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/salamander_eye.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/serpent_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/serpent_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/shears_of_winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/shears_of_winter.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/shears_of_winter.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/shears_of_winter.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/sojourner_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/sojourner_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/twilight_cloak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/twilight_cloak.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/twilight_cloak.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/twilight_cloak.png.mcmeta -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/void_tear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/void_tear.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/void_tear_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/void_tear_empty.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/witch_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/witch_hat.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/items/witherless_rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/items/witherless_rose.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/logo/xrlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/logo/xrlogo.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/models/caster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/models/caster.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/models/handgun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/models/handgun.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/models/mortar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/models/mortar.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/particles/cauldron_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/particles/cauldron_bubble.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/particles/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/particles/ice.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/particles/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/particles/lava.png -------------------------------------------------------------------------------- /src/main/resources/assets/xreliquary/textures/templates/Blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/assets/xreliquary/textures/templates/Blank.png -------------------------------------------------------------------------------- /src/main/resources/dependencies.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/dependencies.info -------------------------------------------------------------------------------- /src/main/resources/mcmod.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainerGuy22/Reliquary/HEAD/src/main/resources/mcmod.info --------------------------------------------------------------------------------