├── .forge └── update.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── workflows │ └── potential-duplicates.yml ├── .gitignore ├── CONTRIBUTING.md ├── CREDITS.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src └── main ├── java └── electroblob │ └── wizardry │ ├── CommonProxy.java │ ├── Settings.java │ ├── Wizardry.java │ ├── WizardryEventHandler.java │ ├── WizardryGuiFactory.java │ ├── WizardryGuiHandler.java │ ├── advancement │ ├── CustomAdvancementTrigger.java │ ├── SpellCastTrigger.java │ ├── SpellDiscoveryTrigger.java │ ├── SpellPredicate.java │ ├── StructureTrigger.java │ └── WizardryContainerTrigger.java │ ├── api │ └── WizardryEnumHelper.java │ ├── block │ ├── BlockArcaneWorkbench.java │ ├── BlockBookshelf.java │ ├── BlockCrystal.java │ ├── BlockCrystalFlower.java │ ├── BlockCrystalFlowerPot.java │ ├── BlockCrystalOre.java │ ├── BlockDryFrostedIce.java │ ├── BlockGildedWood.java │ ├── BlockImbuementAltar.java │ ├── BlockLectern.java │ ├── BlockMagicLight.java │ ├── BlockObsidianCrust.java │ ├── BlockPedestal.java │ ├── BlockPermafrost.java │ ├── BlockReceptacle.java │ ├── BlockRunestone.java │ ├── BlockSnare.java │ ├── BlockSpectral.java │ ├── BlockStatue.java │ ├── BlockThorns.java │ ├── BlockTransportationStone.java │ └── BlockVanishingCobweb.java │ ├── client │ ├── ClientProxy.java │ ├── DrawingUtils.java │ ├── MixedFontRenderer.java │ ├── ScreenShakeHandler.java │ ├── WizardryClientEventHandler.java │ ├── WizardryControlHandler.java │ ├── animation │ │ ├── ActionAnimation.java │ │ ├── Animation.java │ │ ├── ModelRendererExtended.java │ │ └── PlayerAnimator.java │ ├── audio │ │ ├── MovingSoundEntity.java │ │ ├── MovingSoundSpellCharge.java │ │ ├── SoundLoop.java │ │ └── SoundLoopSpell.java │ ├── gui │ │ ├── CustomCreativeSearchHandler.java │ │ ├── GuiArcaneWorkbench.java │ │ ├── GuiBookshelf.java │ │ ├── GuiButtonInvisible.java │ │ ├── GuiButtonResurrect.java │ │ ├── GuiButtonSpellSort.java │ │ ├── GuiButtonTurnPage.java │ │ ├── GuiLectern.java │ │ ├── GuiPortableCrafting.java │ │ ├── GuiSpellBook.java │ │ ├── GuiSpellDisplay.java │ │ ├── GuiSpellInfo.java │ │ ├── WizardTradeTweaksHandler.java │ │ ├── config │ │ │ ├── EntityNameEntry.java │ │ │ ├── GuiConfigWizardry.java │ │ │ ├── GuiSelectHUDSkin.java │ │ │ ├── NamedBooleanEntry.java │ │ │ └── SpellHUDSkinChooserEntry.java │ │ └── handbook │ │ │ ├── Contents.java │ │ │ ├── CraftingRecipe.java │ │ │ ├── GuiButtonHyperlink.java │ │ │ ├── GuiWizardHandbook.java │ │ │ ├── HandbookToast.java │ │ │ ├── Image.java │ │ │ └── Section.java │ ├── model │ │ ├── BakedModelBookshelf.java │ │ ├── BakedModelGenerateOverrides.java │ │ ├── BakedModelGlowingOverlay.java │ │ ├── ItemOverrideListMapped.java │ │ ├── ModelArmourFixer.java │ │ ├── ModelBookshelf.java │ │ ├── ModelBoulder.java │ │ ├── ModelHammer.java │ │ ├── ModelIceBarrier.java │ │ ├── ModelIceGiant.java │ │ ├── ModelLoaderBookshelf.java │ │ ├── ModelPhoenix.java │ │ ├── ModelRemnant.java │ │ ├── ModelRobeArmour.java │ │ ├── ModelSageArmour.java │ │ ├── ModelWizard.java │ │ ├── ModelWizardArmour.java │ │ └── WizardryModels.java │ ├── particle │ │ ├── ParticleBeam.java │ │ ├── ParticleBlockHighlight.java │ │ ├── ParticleBuff.java │ │ ├── ParticleCloud.java │ │ ├── ParticleDarkMagic.java │ │ ├── ParticleDust.java │ │ ├── ParticleFlash.java │ │ ├── ParticleGuardianBeam.java │ │ ├── ParticleIce.java │ │ ├── ParticleLeaf.java │ │ ├── ParticleLightning.java │ │ ├── ParticleLightningPulse.java │ │ ├── ParticleMagicBubble.java │ │ ├── ParticleMagicFlame.java │ │ ├── ParticlePath.java │ │ ├── ParticleScorch.java │ │ ├── ParticleSnow.java │ │ ├── ParticleSpark.java │ │ ├── ParticleSparkle.java │ │ ├── ParticleSphere.java │ │ ├── ParticleTargeted.java │ │ ├── ParticleTornado.java │ │ ├── ParticleVine.java │ │ └── ParticleWizardry.java │ └── renderer │ │ ├── RayHelper.java │ │ ├── RenderSpectralGolem.java │ │ ├── effect │ │ ├── RenderContainmentField.java │ │ ├── RenderDonationPerks.java │ │ ├── RenderMirage.java │ │ ├── RenderShadowWard.java │ │ ├── RenderShield.java │ │ └── RenderWings.java │ │ ├── entity │ │ ├── RenderBlackHole.java │ │ ├── RenderBlank.java │ │ ├── RenderBoulder.java │ │ ├── RenderBubble.java │ │ ├── RenderConjuredArrow.java │ │ ├── RenderDecay.java │ │ ├── RenderDecoy.java │ │ ├── RenderEvilWizard.java │ │ ├── RenderFireRing.java │ │ ├── RenderForceArrow.java │ │ ├── RenderForcefield.java │ │ ├── RenderHammer.java │ │ ├── RenderIceBarrier.java │ │ ├── RenderIceGiant.java │ │ ├── RenderIceSpike.java │ │ ├── RenderLightningDisc.java │ │ ├── RenderMagicArrow.java │ │ ├── RenderPhoenix.java │ │ ├── RenderPossessingPlayer.java │ │ ├── RenderProjectile.java │ │ ├── RenderRadiantTotem.java │ │ ├── RenderRemnant.java │ │ ├── RenderSigil.java │ │ ├── RenderSpiritHorse.java │ │ ├── RenderSpiritWolf.java │ │ ├── RenderStrayMinion.java │ │ ├── RenderWitheringTotem.java │ │ ├── RenderWizard.java │ │ ├── RenderWraithMinion.java │ │ ├── RenderZombieSpawner.java │ │ └── layers │ │ │ ├── LayerDiamond.java │ │ │ ├── LayerDisintegrateAnimation.java │ │ │ ├── LayerFrost.java │ │ │ ├── LayerIron.java │ │ │ ├── LayerMindControl.java │ │ │ ├── LayerOak.java │ │ │ ├── LayerStone.java │ │ │ ├── LayerStrayMinionClothing.java │ │ │ ├── LayerSummonAnimation.java │ │ │ └── LayerTiledOverlay.java │ │ ├── overlay │ │ ├── RenderBlinkEffect.java │ │ ├── RenderFrostOverlay.java │ │ ├── RenderSixthSense.java │ │ ├── RenderTargetPointers.java │ │ └── RenderTransportationUI.java │ │ └── tileentity │ │ ├── RenderArcaneLock.java │ │ ├── RenderArcaneWorkbench.java │ │ ├── RenderImbuementAltar.java │ │ ├── RenderLectern.java │ │ ├── RenderMagicLight.java │ │ └── RenderStatue.java │ ├── command │ ├── CommandCastSpell.java │ ├── CommandDiscoverSpell.java │ ├── CommandSetAlly.java │ ├── CommandViewAllies.java │ └── SpellEmitter.java │ ├── constants │ ├── Constants.java │ ├── Element.java │ ├── SpellType.java │ └── Tier.java │ ├── data │ ├── BlockCastingData.java │ ├── DispenserCastingData.java │ ├── IStoredVariable.java │ ├── IVariable.java │ ├── Persistence.java │ ├── SpellEmitterData.java │ ├── SpellGlyphData.java │ └── WizardData.java │ ├── enchantment │ ├── EnchantmentMagicProtection.java │ ├── EnchantmentMagicSword.java │ ├── EnchantmentTimed.java │ └── Imbuement.java │ ├── entity │ ├── EntityLevitatingBlock.java │ ├── EntityMeteor.java │ ├── EntityShield.java │ ├── ICustomHitbox.java │ ├── construct │ │ ├── EntityArrowRain.java │ │ ├── EntityBlackHole.java │ │ ├── EntityBlizzard.java │ │ ├── EntityBoulder.java │ │ ├── EntityBubble.java │ │ ├── EntityCombustionRune.java │ │ ├── EntityDecay.java │ │ ├── EntityEarthquake.java │ │ ├── EntityFireRing.java │ │ ├── EntityFireSigil.java │ │ ├── EntityForcefield.java │ │ ├── EntityFrostSigil.java │ │ ├── EntityHailstorm.java │ │ ├── EntityHammer.java │ │ ├── EntityHealAura.java │ │ ├── EntityIceBarrier.java │ │ ├── EntityIceSpike.java │ │ ├── EntityLightningSigil.java │ │ ├── EntityMagicConstruct.java │ │ ├── EntityRadiantTotem.java │ │ ├── EntityScaledConstruct.java │ │ ├── EntityStormcloud.java │ │ ├── EntityTornado.java │ │ ├── EntityWitheringTotem.java │ │ └── EntityZombieSpawner.java │ ├── living │ │ ├── EntityAIAttackSpell.java │ │ ├── EntityAISelectSpell.java │ │ ├── EntityBlazeMinion.java │ │ ├── EntityDecoy.java │ │ ├── EntityEvilWizard.java │ │ ├── EntityHuskMinion.java │ │ ├── EntityIceGiant.java │ │ ├── EntityIceWraith.java │ │ ├── EntityLightningWraith.java │ │ ├── EntityMagicSlime.java │ │ ├── EntityPhoenix.java │ │ ├── EntityRemnant.java │ │ ├── EntityShadowWraith.java │ │ ├── EntitySilverfishMinion.java │ │ ├── EntitySkeletonMinion.java │ │ ├── EntitySpectralGolem.java │ │ ├── EntitySpiderMinion.java │ │ ├── EntitySpiritHorse.java │ │ ├── EntitySpiritWolf.java │ │ ├── EntityStormElemental.java │ │ ├── EntityStrayMinion.java │ │ ├── EntitySummonedCreature.java │ │ ├── EntityVexMinion.java │ │ ├── EntityWitherSkeletonMinion.java │ │ ├── EntityWizard.java │ │ ├── EntityZombieMinion.java │ │ ├── IIntelligentSpellCaster.java │ │ ├── ISpellCaster.java │ │ └── ISummonedCreature.java │ └── projectile │ │ ├── EntityBomb.java │ │ ├── EntityConjuredArrow.java │ │ ├── EntityDarknessOrb.java │ │ ├── EntityDart.java │ │ ├── EntityEmber.java │ │ ├── EntityFirebolt.java │ │ ├── EntityFirebomb.java │ │ ├── EntityFlamecatcherArrow.java │ │ ├── EntityForceArrow.java │ │ ├── EntityForceOrb.java │ │ ├── EntityIceCharge.java │ │ ├── EntityIceLance.java │ │ ├── EntityIceShard.java │ │ ├── EntityIceball.java │ │ ├── EntityLargeMagicFireball.java │ │ ├── EntityLightningArrow.java │ │ ├── EntityLightningDisc.java │ │ ├── EntityMagicArrow.java │ │ ├── EntityMagicFireball.java │ │ ├── EntityMagicMissile.java │ │ ├── EntityMagicProjectile.java │ │ ├── EntityPoisonBomb.java │ │ ├── EntitySmokeBomb.java │ │ ├── EntitySpark.java │ │ ├── EntitySparkBomb.java │ │ └── EntityThunderbolt.java │ ├── event │ ├── ArtefactCheckEvent.java │ ├── DiscoverSpellEvent.java │ ├── ImbuementActivateEvent.java │ ├── ResurrectionEvent.java │ ├── SpellBindEvent.java │ └── SpellCastEvent.java │ ├── integration │ ├── DamageSafetyChecker.java │ ├── antiqueatlas │ │ └── WizardryAntiqueAtlasIntegration.java │ ├── baubles │ │ └── WizardryBaublesIntegration.java │ └── jei │ │ ├── ArcaneWorkbenchRecipe.java │ │ ├── ArcaneWorkbenchRecipeCategory.java │ │ ├── ArcaneWorkbenchTransferHandler.java │ │ ├── ImbuementAltarRecipe.java │ │ ├── ImbuementAltarRecipeCategory.java │ │ └── WizardryJEIPlugin.java │ ├── inventory │ ├── ContainerArcaneWorkbench.java │ ├── ContainerBookshelf.java │ ├── ContainerPortableWorkbench.java │ ├── SlotBookList.java │ ├── SlotItemClassList.java │ ├── SlotItemList.java │ ├── SlotWorkbenchItem.java │ └── VirtualSlot.java │ ├── item │ ├── IConjuredItem.java │ ├── IManaStoringItem.java │ ├── IMultiTexturedItem.java │ ├── ISpellCastingItem.java │ ├── IWorkbenchItem.java │ ├── ItemArcaneTome.java │ ├── ItemArmourUpgrade.java │ ├── ItemArtefact.java │ ├── ItemBlankScroll.java │ ├── ItemBlockMultiTextured.java │ ├── ItemCrystal.java │ ├── ItemCrystalFlower.java │ ├── ItemFirebomb.java │ ├── ItemFlamecatcher.java │ ├── ItemFlamingAxe.java │ ├── ItemFrostAxe.java │ ├── ItemIdentificationScroll.java │ ├── ItemLightningHammer.java │ ├── ItemManaFlask.java │ ├── ItemPoisonBomb.java │ ├── ItemPurifyingElixir.java │ ├── ItemScroll.java │ ├── ItemSmokeBomb.java │ ├── ItemSparkBomb.java │ ├── ItemSpectralArmour.java │ ├── ItemSpectralBow.java │ ├── ItemSpectralDust.java │ ├── ItemSpectralPickaxe.java │ ├── ItemSpectralSword.java │ ├── ItemSpellBook.java │ ├── ItemWand.java │ ├── ItemWandUpgrade.java │ ├── ItemWizardArmour.java │ ├── ItemWizardHandbook.java │ └── SpellActions.java │ ├── loot │ ├── RandomSpell.java │ └── WizardSpell.java │ ├── misc │ ├── BehaviourSpellDispense.java │ ├── DonationPerksHandler.java │ ├── Forfeit.java │ ├── RecipeRechargeWithFlask.java │ ├── WildcardTradeList.java │ └── WizardryPathFinder.java │ ├── packet │ ├── PacketCastContinuousSpell.java │ ├── PacketCastSpell.java │ ├── PacketCastSpellAtPos.java │ ├── PacketClairvoyance.java │ ├── PacketConquerShrine.java │ ├── PacketControlInput.java │ ├── PacketDispenserCastSpell.java │ ├── PacketEmitterData.java │ ├── PacketGlyphData.java │ ├── PacketLectern.java │ ├── PacketNPCCastSpell.java │ ├── PacketPlayerSync.java │ ├── PacketPossession.java │ ├── PacketRequestAdvancementSync.java │ ├── PacketRequestDonationPerks.java │ ├── PacketResurrection.java │ ├── PacketSpellProperties.java │ ├── PacketSpellQuickAccess.java │ ├── PacketSyncAdvancements.java │ ├── PacketSyncDonationPerks.java │ ├── PacketSyncSettings.java │ ├── PacketTransportation.java │ └── WizardryPacketHandler.java │ ├── potion │ ├── Curse.java │ ├── CurseEnfeeblement.java │ ├── CurseUndeath.java │ ├── ICustomPotionParticles.java │ ├── ISyncedPotion.java │ ├── PotionContainment.java │ ├── PotionDecay.java │ ├── PotionDiamondflesh.java │ ├── PotionFrost.java │ ├── PotionFrostStep.java │ ├── PotionIronflesh.java │ ├── PotionMagicEffect.java │ ├── PotionMagicEffectParticles.java │ ├── PotionOakflesh.java │ └── PotionSlowTime.java │ ├── registry │ ├── Spells.java │ ├── WizardryAdvancementTriggers.java │ ├── WizardryBlocks.java │ ├── WizardryEnchantments.java │ ├── WizardryEntities.java │ ├── WizardryItems.java │ ├── WizardryLoot.java │ ├── WizardryPotions.java │ ├── WizardryRecipes.java │ ├── WizardrySounds.java │ └── WizardryTabs.java │ ├── spell │ ├── Arc.java │ ├── ArcaneJammer.java │ ├── ArcaneLock.java │ ├── ArrowRain.java │ ├── Banish.java │ ├── BlindingFlash.java │ ├── Blink.java │ ├── Boulder.java │ ├── Bubble.java │ ├── CelestialSmite.java │ ├── ChainLightning.java │ ├── Charge.java │ ├── Clairvoyance.java │ ├── Cobwebs.java │ ├── ConjureArmour.java │ ├── ConjureBlock.java │ ├── Containment.java │ ├── CureEffects.java │ ├── CurseOfEnfeeblement.java │ ├── CurseOfSoulbinding.java │ ├── CurseOfUndeath.java │ ├── Decay.java │ ├── Decoy.java │ ├── Detonate.java │ ├── Disintegration.java │ ├── Divination.java │ ├── DragonFireball.java │ ├── Earthquake.java │ ├── EmpoweringPresence.java │ ├── Enrage.java │ ├── Entrapment.java │ ├── Evade.java │ ├── Fangs.java │ ├── FireBreath.java │ ├── Firestorm.java │ ├── FlameRay.java │ ├── Flamecatcher.java │ ├── FlamingAxe.java │ ├── FlamingWeapon.java │ ├── Flight.java │ ├── FontOfMana.java │ ├── ForceArrow.java │ ├── Forcefield.java │ ├── ForestOfThorns.java │ ├── ForestsCurse.java │ ├── Freeze.java │ ├── FreezingWeapon.java │ ├── FrostAxe.java │ ├── FrostBarrier.java │ ├── FrostRay.java │ ├── Glide.java │ ├── Grapple.java │ ├── GreaterHeal.java │ ├── GreaterTelekinesis.java │ ├── GroupHeal.java │ ├── GrowthAura.java │ ├── GuardianBeam.java │ ├── Hailstorm.java │ ├── Heal.java │ ├── HealAlly.java │ ├── IceAge.java │ ├── IceSpikes.java │ ├── IceStatue.java │ ├── Ignite.java │ ├── ImbueWeapon.java │ ├── Intimidate.java │ ├── InvigoratingPresence.java │ ├── InvokeWeather.java │ ├── Leap.java │ ├── Levitation.java │ ├── LifeDrain.java │ ├── Light.java │ ├── LightningBolt.java │ ├── LightningHammer.java │ ├── LightningPulse.java │ ├── LightningRay.java │ ├── LightningWeb.java │ ├── MarkSacrifice.java │ ├── Metamorphosis.java │ ├── Meteor.java │ ├── MindControl.java │ ├── MindTrick.java │ ├── Mine.java │ ├── None.java │ ├── Paralysis.java │ ├── Permafrost.java │ ├── Petrify.java │ ├── PhaseStep.java │ ├── PlagueOfDarkness.java │ ├── PocketFurnace.java │ ├── PocketWorkbench.java │ ├── Poison.java │ ├── Possession.java │ ├── RadiantTotem.java │ ├── RayOfPurification.java │ ├── RemoveCurse.java │ ├── ReplenishHunger.java │ ├── Resurrection.java │ ├── Reversal.java │ ├── Satiety.java │ ├── ShadowWard.java │ ├── Shield.java │ ├── Shockwave.java │ ├── ShulkerBullet.java │ ├── SixthSense.java │ ├── Slime.java │ ├── SlowTime.java │ ├── Snare.java │ ├── SpectralPathway.java │ ├── SpeedTime.java │ ├── Spell.java │ ├── SpellAreaEffect.java │ ├── SpellArrow.java │ ├── SpellBuff.java │ ├── SpellConjuration.java │ ├── SpellConstruct.java │ ├── SpellConstructRanged.java │ ├── SpellMinion.java │ ├── SpellProjectile.java │ ├── SpellRay.java │ ├── SpellThrowable.java │ ├── Stormcloud.java │ ├── SummonShadowWraith.java │ ├── SummonSkeleton.java │ ├── SummonSkeletonLegion.java │ ├── SummonSnowGolem.java │ ├── SummonSpiritHorse.java │ ├── SummonSpiritWolf.java │ ├── SummonWitherSkeleton.java │ ├── SummonZombie.java │ ├── Telekinesis.java │ ├── Thunderstorm.java │ ├── Tornado.java │ ├── Transience.java │ ├── Transportation.java │ ├── VanishingBox.java │ ├── WallOfFrost.java │ ├── Whirlwind.java │ ├── Wither.java │ ├── WitherSkull.java │ ├── WitheringTotem.java │ └── ZombieApocalypse.java │ ├── tileentity │ ├── TileEntityArcaneWorkbench.java │ ├── TileEntityBookshelf.java │ ├── TileEntityImbuementAltar.java │ ├── TileEntityLectern.java │ ├── TileEntityMagicLight.java │ ├── TileEntityPlayerSave.java │ ├── TileEntityReceptacle.java │ ├── TileEntityShrineCore.java │ ├── TileEntityStatue.java │ ├── TileEntityThorns.java │ └── TileEntityTimer.java │ ├── util │ ├── AllyDesignationSystem.java │ ├── BlockUtils.java │ ├── Box.java │ ├── CustomSoundCategory.java │ ├── EntityUtils.java │ ├── GeometryUtils.java │ ├── IElementalDamage.java │ ├── ISpellSortable.java │ ├── IndirectMagicDamage.java │ ├── IndirectMinionDamage.java │ ├── InventoryUtils.java │ ├── JavaUtils.java │ ├── Location.java │ ├── MagicDamage.java │ ├── MinionDamage.java │ ├── NBTExtras.java │ ├── ParticleBuilder.java │ ├── RayTracer.java │ ├── RelativeFacing.java │ ├── SpellModifiers.java │ ├── SpellNetworkIDSorter.java │ ├── SpellProperties.java │ └── WandHelper.java │ └── worldgen │ ├── MossifierTemplateProcessor.java │ ├── MultiTemplateProcessor.java │ ├── WoodTypeTemplateProcessor.java │ ├── WorldGenCrystalFlower.java │ ├── WorldGenCrystalOre.java │ ├── WorldGenLibraryRuins.java │ ├── WorldGenObelisk.java │ ├── WorldGenShrine.java │ ├── WorldGenSurfaceStructure.java │ ├── WorldGenUndergroundLibraryRuins.java │ ├── WorldGenUndergroundStructure.java │ ├── WorldGenWizardTower.java │ └── WorldGenWizardryStructure.java └── resources ├── assets ├── ebwizardry │ ├── advancements │ │ ├── advanced.json │ │ ├── all_artefacts.json │ │ ├── all_spells.json │ │ ├── anger_wizard.json │ │ ├── apprentice.json │ │ ├── arcane_initiate.json │ │ ├── armour_set.json │ │ ├── artefact.json │ │ ├── battlemage.json │ │ ├── buy_master_spell.json │ │ ├── craft_lectern.json │ │ ├── create_elemental_armour.json │ │ ├── crystal.json │ │ ├── defeat_evil_wizard.json │ │ ├── defeat_remnant.json │ │ ├── discover_master_spell.json │ │ ├── discover_spell.json │ │ ├── enchant_scroll.json │ │ ├── find_library_ruins.json │ │ ├── handbook │ │ │ ├── arcane_workbench.json │ │ │ ├── crystal_flowers.json │ │ │ ├── elements.json │ │ │ ├── magical_creatures.json │ │ │ ├── mana_flasks.json │ │ │ ├── obelisks.json │ │ │ ├── on_subsection_unlock.json │ │ │ ├── scrolls.json │ │ │ ├── spells.json │ │ │ ├── throwables.json │ │ │ └── tome_of_arcana.json │ │ ├── identify_spell.json │ │ ├── master.json │ │ ├── max_out_wand.json │ │ ├── restore_imbuement_altar.json │ │ ├── restore_ruined_book.json │ │ ├── root.json │ │ ├── sage.json │ │ ├── special_upgrade.json │ │ ├── spell_failure.json │ │ ├── visit_shrine.json │ │ ├── warlock.json │ │ ├── wizard_tower.json │ │ └── wizard_trade.json │ ├── blockstates │ │ ├── acacia_bookshelf.json │ │ ├── acacia_gilded_wood.json │ │ ├── acacia_lectern.json │ │ ├── arcane_workbench.json │ │ ├── birch_bookshelf.json │ │ ├── birch_gilded_wood.json │ │ ├── birch_lectern.json │ │ ├── bookshelf_parts │ │ │ ├── acacia_bookshelf.json │ │ │ ├── birch_bookshelf.json │ │ │ ├── books0.json │ │ │ ├── books1.json │ │ │ ├── books10.json │ │ │ ├── books11.json │ │ │ ├── books2.json │ │ │ ├── books3.json │ │ │ ├── books4.json │ │ │ ├── books5.json │ │ │ ├── books6.json │ │ │ ├── books7.json │ │ │ ├── books8.json │ │ │ ├── books9.json │ │ │ ├── dark_oak_bookshelf.json │ │ │ ├── jungle_bookshelf.json │ │ │ ├── oak_bookshelf.json │ │ │ └── spruce_bookshelf.json │ │ ├── crystal_flower.json │ │ ├── crystal_flower_pot.json │ │ ├── crystal_ore.json │ │ ├── dark_oak_bookshelf.json │ │ ├── dark_oak_gilded_wood.json │ │ ├── dark_oak_lectern.json │ │ ├── dry_frosted_ice.json │ │ ├── earth_crystal_block.json │ │ ├── earth_runestone.json │ │ ├── earth_runestone_pedestal.json │ │ ├── fire_crystal_block.json │ │ ├── fire_runestone.json │ │ ├── fire_runestone_pedestal.json │ │ ├── healing_crystal_block.json │ │ ├── healing_runestone.json │ │ ├── healing_runestone_pedestal.json │ │ ├── ice_crystal_block.json │ │ ├── ice_runestone.json │ │ ├── ice_runestone_pedestal.json │ │ ├── ice_statue.json │ │ ├── imbuement_altar.json │ │ ├── jungle_bookshelf.json │ │ ├── jungle_gilded_wood.json │ │ ├── jungle_lectern.json │ │ ├── lightning_crystal_block.json │ │ ├── lightning_runestone.json │ │ ├── lightning_runestone_pedestal.json │ │ ├── magic_crystal_block.json │ │ ├── magic_light.json │ │ ├── meteor.json │ │ ├── necromancy_crystal_block.json │ │ ├── necromancy_runestone.json │ │ ├── necromancy_runestone_pedestal.json │ │ ├── oak_bookshelf.json │ │ ├── oak_gilded_wood.json │ │ ├── oak_lectern.json │ │ ├── obsidian_crust.json │ │ ├── permafrost.json │ │ ├── petrified_stone.json │ │ ├── receptacle.json │ │ ├── snare.json │ │ ├── sorcery_crystal_block.json │ │ ├── sorcery_runestone.json │ │ ├── sorcery_runestone_pedestal.json │ │ ├── spectral_block.json │ │ ├── spruce_bookshelf.json │ │ ├── spruce_gilded_wood.json │ │ ├── spruce_lectern.json │ │ ├── thorns.json │ │ ├── transportation_stone.json │ │ └── vanishing_cobweb.json │ ├── lang │ │ ├── de_de.lang │ │ ├── en_gb.lang │ │ ├── en_us.lang │ │ ├── es_es.lang │ │ ├── es_mx.lang │ │ ├── fr_fr.lang │ │ ├── hu_hu.lang │ │ ├── ko_kr.lang │ │ ├── pl_pl.lang │ │ ├── pt_br.lang │ │ ├── ru_ru.lang │ │ ├── zh_cn.lang │ │ └── zh_tw.lang │ ├── loot_tables │ │ ├── chests │ │ │ ├── dungeon_additions.json │ │ │ ├── jungle_dispenser_additions.json │ │ │ ├── library_ruins_bookshelf.json │ │ │ ├── obelisk.json │ │ │ ├── shrine.json │ │ │ └── wizard_tower.json │ │ ├── entities │ │ │ ├── evil_wizard.json │ │ │ ├── mob_additions.json │ │ │ └── remnant │ │ │ │ ├── earth.json │ │ │ │ ├── fire.json │ │ │ │ ├── healing.json │ │ │ │ ├── ice.json │ │ │ │ ├── lightning.json │ │ │ │ ├── necromancy.json │ │ │ │ └── sorcery.json │ │ ├── gameplay │ │ │ ├── fishing │ │ │ │ ├── junk_additions.json │ │ │ │ └── treasure_additions.json │ │ │ └── imbuement_altar │ │ │ │ ├── ruined_spell_book_earth.json │ │ │ │ ├── ruined_spell_book_fire.json │ │ │ │ ├── ruined_spell_book_healing.json │ │ │ │ ├── ruined_spell_book_ice.json │ │ │ │ ├── ruined_spell_book_lightning.json │ │ │ │ ├── ruined_spell_book_necromancy.json │ │ │ │ └── ruined_spell_book_sorcery.json │ │ └── subsets │ │ │ ├── arcane_tomes.json │ │ │ ├── armour_upgrades.json │ │ │ ├── elemental_crystals.json │ │ │ ├── epic_artefacts.json │ │ │ ├── rare_artefacts.json │ │ │ ├── uncommon_artefacts.json │ │ │ ├── wand_upgrades.json │ │ │ └── wizard_armour.json │ ├── models │ │ ├── block │ │ │ ├── acacia_bookshelf.json │ │ │ ├── acacia_lectern.json │ │ │ ├── arcane_workbench.json │ │ │ ├── birch_bookshelf.json │ │ │ ├── birch_lectern.json │ │ │ ├── books0.json │ │ │ ├── books1.json │ │ │ ├── books10.json │ │ │ ├── books11.json │ │ │ ├── books2.json │ │ │ ├── books3.json │ │ │ ├── books4.json │ │ │ ├── books5.json │ │ │ ├── books6.json │ │ │ ├── books7.json │ │ │ ├── books8.json │ │ │ ├── books9.json │ │ │ ├── bookshelf.json │ │ │ ├── crystal_flower.json │ │ │ ├── crystal_flower_pot.json │ │ │ ├── crystal_ore.json │ │ │ ├── dark_oak_bookshelf.json │ │ │ ├── dark_oak_lectern.json │ │ │ ├── earth_crystal_block.json │ │ │ ├── earth_runestone_1.json │ │ │ ├── earth_runestone_2.json │ │ │ ├── earth_runestone_3.json │ │ │ ├── earth_runestone_4.json │ │ │ ├── earth_runestone_pedestal.json │ │ │ ├── fire_crystal_block.json │ │ │ ├── fire_runestone_1.json │ │ │ ├── fire_runestone_2.json │ │ │ ├── fire_runestone_3.json │ │ │ ├── fire_runestone_4.json │ │ │ ├── fire_runestone_pedestal.json │ │ │ ├── gilded_acacia_wood.json │ │ │ ├── gilded_birch_wood.json │ │ │ ├── gilded_dark_oak_wood.json │ │ │ ├── gilded_jungle_wood.json │ │ │ ├── gilded_oak_wood.json │ │ │ ├── gilded_spruce_wood.json │ │ │ ├── healing_crystal_block.json │ │ │ ├── healing_runestone_1.json │ │ │ ├── healing_runestone_2.json │ │ │ ├── healing_runestone_3.json │ │ │ ├── healing_runestone_4.json │ │ │ ├── healing_runestone_pedestal.json │ │ │ ├── ice_crystal_block.json │ │ │ ├── ice_runestone_1.json │ │ │ ├── ice_runestone_2.json │ │ │ ├── ice_runestone_3.json │ │ │ ├── ice_runestone_4.json │ │ │ ├── ice_runestone_pedestal.json │ │ │ ├── ice_statue.json │ │ │ ├── imbuement_altar.json │ │ │ ├── imbuement_altar_inactive.json │ │ │ ├── jungle_bookshelf.json │ │ │ ├── jungle_lectern.json │ │ │ ├── lectern.json │ │ │ ├── lightning_crystal_block.json │ │ │ ├── lightning_runestone_1.json │ │ │ ├── lightning_runestone_2.json │ │ │ ├── lightning_runestone_3.json │ │ │ ├── lightning_runestone_4.json │ │ │ ├── lightning_runestone_pedestal.json │ │ │ ├── magic_crystal_block.json │ │ │ ├── magic_light.json │ │ │ ├── meteor.json │ │ │ ├── necromancy_crystal_block.json │ │ │ ├── necromancy_runestone_1.json │ │ │ ├── necromancy_runestone_2.json │ │ │ ├── necromancy_runestone_3.json │ │ │ ├── necromancy_runestone_4.json │ │ │ ├── necromancy_runestone_pedestal.json │ │ │ ├── oak_bookshelf.json │ │ │ ├── oak_lectern.json │ │ │ ├── obsidian_crust_0.json │ │ │ ├── obsidian_crust_1.json │ │ │ ├── obsidian_crust_2.json │ │ │ ├── obsidian_crust_3.json │ │ │ ├── permafrost_0.json │ │ │ ├── permafrost_1.json │ │ │ ├── permafrost_2.json │ │ │ ├── permafrost_3.json │ │ │ ├── petrified_stone.json │ │ │ ├── receptacle.json │ │ │ ├── runestone.json │ │ │ ├── runestone_pedestal.json │ │ │ ├── snare.json │ │ │ ├── sorcery_crystal_block.json │ │ │ ├── sorcery_runestone_1.json │ │ │ ├── sorcery_runestone_2.json │ │ │ ├── sorcery_runestone_3.json │ │ │ ├── sorcery_runestone_4.json │ │ │ ├── sorcery_runestone_pedestal.json │ │ │ ├── spectral_block.json │ │ │ ├── spruce_bookshelf.json │ │ │ ├── spruce_lectern.json │ │ │ ├── thorns_lower_0.json │ │ │ ├── thorns_lower_1.json │ │ │ ├── thorns_lower_2.json │ │ │ ├── thorns_lower_3.json │ │ │ ├── thorns_lower_4.json │ │ │ ├── thorns_lower_5.json │ │ │ ├── thorns_lower_6.json │ │ │ ├── thorns_lower_7.json │ │ │ ├── thorns_upper_0.json │ │ │ ├── thorns_upper_1.json │ │ │ ├── thorns_upper_2.json │ │ │ ├── thorns_upper_3.json │ │ │ ├── thorns_upper_4.json │ │ │ ├── thorns_upper_5.json │ │ │ ├── thorns_upper_6.json │ │ │ ├── thorns_upper_7.json │ │ │ ├── transportation_stone.json │ │ │ ├── vanishing_cobweb.json │ │ │ └── wall_receptacle.json │ │ └── item │ │ │ ├── acacia_bookshelf.json │ │ │ ├── acacia_gilded_wood.json │ │ │ ├── acacia_lectern.json │ │ │ ├── advanced_earth_wand.json │ │ │ ├── advanced_fire_wand.json │ │ │ ├── advanced_healing_wand.json │ │ │ ├── advanced_ice_wand.json │ │ │ ├── advanced_lightning_wand.json │ │ │ ├── advanced_necromancy_wand.json │ │ │ ├── advanced_sorcery_wand.json │ │ │ ├── advanced_wand.json │ │ │ ├── amulet_absorption.json │ │ │ ├── amulet_anchoring.json │ │ │ ├── amulet_arcane_defence.json │ │ │ ├── amulet_auto_shield.json │ │ │ ├── amulet_banishing.json │ │ │ ├── amulet_channeling.json │ │ │ ├── amulet_fire_cloaking.json │ │ │ ├── amulet_fire_protection.json │ │ │ ├── amulet_frost_warding.json │ │ │ ├── amulet_glide.json │ │ │ ├── amulet_ice_immunity.json │ │ │ ├── amulet_ice_protection.json │ │ │ ├── amulet_lich.json │ │ │ ├── amulet_potential.json │ │ │ ├── amulet_recovery.json │ │ │ ├── amulet_resurrection.json │ │ │ ├── amulet_transience.json │ │ │ ├── amulet_warding.json │ │ │ ├── amulet_wisdom.json │ │ │ ├── amulet_wither_immunity.json │ │ │ ├── apprentice_earth_wand.json │ │ │ ├── apprentice_fire_wand.json │ │ │ ├── apprentice_healing_wand.json │ │ │ ├── apprentice_ice_wand.json │ │ │ ├── apprentice_lightning_wand.json │ │ │ ├── apprentice_necromancy_wand.json │ │ │ ├── apprentice_sorcery_wand.json │ │ │ ├── apprentice_wand.json │ │ │ ├── arcane_tome.json │ │ │ ├── arcane_workbench.json │ │ │ ├── armour_upgrade.json │ │ │ ├── astral_diamond.json │ │ │ ├── attunement_upgrade.json │ │ │ ├── battlemage_boots.json │ │ │ ├── battlemage_boots_earth.json │ │ │ ├── battlemage_boots_fire.json │ │ │ ├── battlemage_boots_healing.json │ │ │ ├── battlemage_boots_ice.json │ │ │ ├── battlemage_boots_lightning.json │ │ │ ├── battlemage_boots_necromancy.json │ │ │ ├── battlemage_boots_sorcery.json │ │ │ ├── battlemage_chestplate.json │ │ │ ├── battlemage_chestplate_earth.json │ │ │ ├── battlemage_chestplate_fire.json │ │ │ ├── battlemage_chestplate_healing.json │ │ │ ├── battlemage_chestplate_ice.json │ │ │ ├── battlemage_chestplate_lightning.json │ │ │ ├── battlemage_chestplate_necromancy.json │ │ │ ├── battlemage_chestplate_sorcery.json │ │ │ ├── battlemage_helmet.json │ │ │ ├── battlemage_helmet_earth.json │ │ │ ├── battlemage_helmet_fire.json │ │ │ ├── battlemage_helmet_healing.json │ │ │ ├── battlemage_helmet_ice.json │ │ │ ├── battlemage_helmet_lightning.json │ │ │ ├── battlemage_helmet_necromancy.json │ │ │ ├── battlemage_helmet_sorcery.json │ │ │ ├── battlemage_leggings.json │ │ │ ├── battlemage_leggings_earth.json │ │ │ ├── battlemage_leggings_fire.json │ │ │ ├── battlemage_leggings_healing.json │ │ │ ├── battlemage_leggings_ice.json │ │ │ ├── battlemage_leggings_lightning.json │ │ │ ├── battlemage_leggings_necromancy.json │ │ │ ├── battlemage_leggings_sorcery.json │ │ │ ├── birch_bookshelf.json │ │ │ ├── birch_gilded_wood.json │ │ │ ├── birch_lectern.json │ │ │ ├── blank_scroll.json │ │ │ ├── blast_upgrade.json │ │ │ ├── charm_abseiling.json │ │ │ ├── charm_auto_smelt.json │ │ │ ├── charm_black_hole.json │ │ │ ├── charm_experience_tome.json │ │ │ ├── charm_feeding.json │ │ │ ├── charm_flight.json │ │ │ ├── charm_growth.json │ │ │ ├── charm_haggler.json │ │ │ ├── charm_hunger_casting.json │ │ │ ├── charm_lava_walking.json │ │ │ ├── charm_light.json │ │ │ ├── charm_minion_health.json │ │ │ ├── charm_minion_variants.json │ │ │ ├── charm_mount_teleporting.json │ │ │ ├── charm_move_speed.json │ │ │ ├── charm_silk_touch.json │ │ │ ├── charm_sixth_sense.json │ │ │ ├── charm_spell_discovery.json │ │ │ ├── charm_stop_time.json │ │ │ ├── charm_storm.json │ │ │ ├── charm_transportation.json │ │ │ ├── charm_undead_helmets.json │ │ │ ├── condenser_upgrade.json │ │ │ ├── cooldown_upgrade.json │ │ │ ├── crystal_earth.json │ │ │ ├── crystal_fire.json │ │ │ ├── crystal_flower.json │ │ │ ├── crystal_healing.json │ │ │ ├── crystal_ice.json │ │ │ ├── crystal_lightning.json │ │ │ ├── crystal_magic.json │ │ │ ├── crystal_necromancy.json │ │ │ ├── crystal_ore.json │ │ │ ├── crystal_shard.json │ │ │ ├── crystal_silver_plating.json │ │ │ ├── crystal_sorcery.json │ │ │ ├── dark_oak_bookshelf.json │ │ │ ├── dark_oak_gilded_wood.json │ │ │ ├── dark_oak_lectern.json │ │ │ ├── duration_upgrade.json │ │ │ ├── earth_crystal_block.json │ │ │ ├── earth_runestone.json │ │ │ ├── earth_runestone_pedestal.json │ │ │ ├── ethereal_crystalweave.json │ │ │ ├── festive_scroll.json │ │ │ ├── festive_spell_book.json │ │ │ ├── festive_wand.json │ │ │ ├── fire_crystal_block.json │ │ │ ├── fire_runestone.json │ │ │ ├── fire_runestone_pedestal.json │ │ │ ├── firebomb.json │ │ │ ├── flamecatcher.json │ │ │ ├── flamecatcher_conjuring_0.json │ │ │ ├── flamecatcher_conjuring_1.json │ │ │ ├── flamecatcher_conjuring_2.json │ │ │ ├── flamecatcher_conjuring_3.json │ │ │ ├── flamecatcher_conjuring_4.json │ │ │ ├── flamecatcher_conjuring_5.json │ │ │ ├── flamecatcher_conjuring_6.json │ │ │ ├── flamecatcher_conjuring_7.json │ │ │ ├── flamecatcher_pulling_0.json │ │ │ ├── flamecatcher_pulling_1.json │ │ │ ├── flamecatcher_pulling_2.json │ │ │ ├── flaming_axe.json │ │ │ ├── flaming_axe_conjuring_0.json │ │ │ ├── flaming_axe_conjuring_1.json │ │ │ ├── flaming_axe_conjuring_2.json │ │ │ ├── flaming_axe_conjuring_3.json │ │ │ ├── flaming_axe_conjuring_4.json │ │ │ ├── flaming_axe_conjuring_5.json │ │ │ ├── flaming_axe_conjuring_6.json │ │ │ ├── flaming_axe_conjuring_7.json │ │ │ ├── frost_axe.json │ │ │ ├── frost_axe_conjuring_0.json │ │ │ ├── frost_axe_conjuring_1.json │ │ │ ├── frost_axe_conjuring_2.json │ │ │ ├── frost_axe_conjuring_3.json │ │ │ ├── frost_axe_conjuring_4.json │ │ │ ├── frost_axe_conjuring_5.json │ │ │ ├── frost_axe_conjuring_6.json │ │ │ ├── frost_axe_conjuring_7.json │ │ │ ├── grand_crystal.json │ │ │ ├── healing_crystal_block.json │ │ │ ├── healing_runestone.json │ │ │ ├── healing_runestone_pedestal.json │ │ │ ├── ice_crystal_block.json │ │ │ ├── ice_runestone.json │ │ │ ├── ice_runestone_pedestal.json │ │ │ ├── ice_statue.json │ │ │ ├── identification_scroll.json │ │ │ ├── imbuement_altar.json │ │ │ ├── jungle_bookshelf.json │ │ │ ├── jungle_gilded_wood.json │ │ │ ├── jungle_lectern.json │ │ │ ├── large_mana_flask.json │ │ │ ├── lightning_crystal_block.json │ │ │ ├── lightning_hammer.json │ │ │ ├── lightning_runestone.json │ │ │ ├── lightning_runestone_pedestal.json │ │ │ ├── magic_crystal_block.json │ │ │ ├── magic_light.json │ │ │ ├── magic_silk.json │ │ │ ├── magic_wand.json │ │ │ ├── master_earth_wand.json │ │ │ ├── master_fire_wand.json │ │ │ ├── master_healing_wand.json │ │ │ ├── master_ice_wand.json │ │ │ ├── master_lightning_wand.json │ │ │ ├── master_necromancy_wand.json │ │ │ ├── master_sorcery_wand.json │ │ │ ├── master_wand.json │ │ │ ├── medium_mana_flask.json │ │ │ ├── melee_upgrade.json │ │ │ ├── meteor.json │ │ │ ├── necromancy_crystal_block.json │ │ │ ├── necromancy_runestone.json │ │ │ ├── necromancy_runestone_pedestal.json │ │ │ ├── novice_earth_wand.json │ │ │ ├── novice_fire_wand.json │ │ │ ├── novice_healing_wand.json │ │ │ ├── novice_ice_wand.json │ │ │ ├── novice_lightning_wand.json │ │ │ ├── novice_necromancy_wand.json │ │ │ ├── novice_sorcery_wand.json │ │ │ ├── oak_bookshelf.json │ │ │ ├── oak_gilded_wood.json │ │ │ ├── oak_lectern.json │ │ │ ├── override_generators │ │ │ └── wand.json │ │ │ ├── petrified_stone.json │ │ │ ├── poison_bomb.json │ │ │ ├── purifying_elixir.json │ │ │ ├── range_upgrade.json │ │ │ ├── receptacle.json │ │ │ ├── resplendent_thread.json │ │ │ ├── ring_arcane_frost.json │ │ │ ├── ring_battlemage.json │ │ │ ├── ring_blockwrangler.json │ │ │ ├── ring_combustion.json │ │ │ ├── ring_condensing.json │ │ │ ├── ring_conjurer.json │ │ │ ├── ring_defender.json │ │ │ ├── ring_disintegration.json │ │ │ ├── ring_earth_biome.json │ │ │ ├── ring_earth_melee.json │ │ │ ├── ring_evoker.json │ │ │ ├── ring_extraction.json │ │ │ ├── ring_fire_biome.json │ │ │ ├── ring_fire_melee.json │ │ │ ├── ring_full_moon.json │ │ │ ├── ring_hammer.json │ │ │ ├── ring_ice_biome.json │ │ │ ├── ring_ice_melee.json │ │ │ ├── ring_interdiction.json │ │ │ ├── ring_leeching.json │ │ │ ├── ring_lightning_melee.json │ │ │ ├── ring_mana_return.json │ │ │ ├── ring_meteor.json │ │ │ ├── ring_mind_control.json │ │ │ ├── ring_necromancy_melee.json │ │ │ ├── ring_paladin.json │ │ │ ├── ring_poison.json │ │ │ ├── ring_seeking.json │ │ │ ├── ring_shattering.json │ │ │ ├── ring_siphoning.json │ │ │ ├── ring_soulbinding.json │ │ │ ├── ring_spirit_animal.json │ │ │ ├── ring_storm.json │ │ │ ├── ring_stormcloud.json │ │ │ ├── ruined_spell_book.json │ │ │ ├── runestone_item.json │ │ │ ├── runestone_pedestal_item.json │ │ │ ├── sage_boots.json │ │ │ ├── sage_boots_earth.json │ │ │ ├── sage_boots_fire.json │ │ │ ├── sage_boots_healing.json │ │ │ ├── sage_boots_ice.json │ │ │ ├── sage_boots_lightning.json │ │ │ ├── sage_boots_necromancy.json │ │ │ ├── sage_boots_sorcery.json │ │ │ ├── sage_hat.json │ │ │ ├── sage_hat_earth.json │ │ │ ├── sage_hat_fire.json │ │ │ ├── sage_hat_healing.json │ │ │ ├── sage_hat_ice.json │ │ │ ├── sage_hat_lightning.json │ │ │ ├── sage_hat_necromancy.json │ │ │ ├── sage_hat_sorcery.json │ │ │ ├── sage_leggings.json │ │ │ ├── sage_leggings_earth.json │ │ │ ├── sage_leggings_fire.json │ │ │ ├── sage_leggings_healing.json │ │ │ ├── sage_leggings_ice.json │ │ │ ├── sage_leggings_lightning.json │ │ │ ├── sage_leggings_necromancy.json │ │ │ ├── sage_leggings_sorcery.json │ │ │ ├── sage_robe.json │ │ │ ├── sage_robe_earth.json │ │ │ ├── sage_robe_fire.json │ │ │ ├── sage_robe_healing.json │ │ │ ├── sage_robe_ice.json │ │ │ ├── sage_robe_lightning.json │ │ │ ├── sage_robe_necromancy.json │ │ │ ├── sage_robe_sorcery.json │ │ │ ├── scroll.json │ │ │ ├── siphon_upgrade.json │ │ │ ├── small_mana_flask.json │ │ │ ├── smoke_bomb.json │ │ │ ├── snare.json │ │ │ ├── sorcery_crystal_block.json │ │ │ ├── sorcery_runestone.json │ │ │ ├── sorcery_runestone_pedestal.json │ │ │ ├── spark_bomb.json │ │ │ ├── spawn_wizard.json │ │ │ ├── spectral_block.json │ │ │ ├── spectral_boots.json │ │ │ ├── spectral_bow.json │ │ │ ├── spectral_bow_conjuring_0.json │ │ │ ├── spectral_bow_conjuring_1.json │ │ │ ├── spectral_bow_conjuring_2.json │ │ │ ├── spectral_bow_conjuring_3.json │ │ │ ├── spectral_bow_conjuring_4.json │ │ │ ├── spectral_bow_conjuring_5.json │ │ │ ├── spectral_bow_conjuring_6.json │ │ │ ├── spectral_bow_conjuring_7.json │ │ │ ├── spectral_bow_pulling_0.json │ │ │ ├── spectral_bow_pulling_1.json │ │ │ ├── spectral_bow_pulling_2.json │ │ │ ├── spectral_chestplate.json │ │ │ ├── spectral_dust_earth.json │ │ │ ├── spectral_dust_fire.json │ │ │ ├── spectral_dust_healing.json │ │ │ ├── spectral_dust_ice.json │ │ │ ├── spectral_dust_lightning.json │ │ │ ├── spectral_dust_necromancy.json │ │ │ ├── spectral_dust_sorcery.json │ │ │ ├── spectral_helmet.json │ │ │ ├── spectral_leggings.json │ │ │ ├── spectral_pickaxe.json │ │ │ ├── spectral_pickaxe_conjuring_0.json │ │ │ ├── spectral_pickaxe_conjuring_1.json │ │ │ ├── spectral_pickaxe_conjuring_2.json │ │ │ ├── spectral_pickaxe_conjuring_3.json │ │ │ ├── spectral_pickaxe_conjuring_4.json │ │ │ ├── spectral_pickaxe_conjuring_5.json │ │ │ ├── spectral_pickaxe_conjuring_6.json │ │ │ ├── spectral_pickaxe_conjuring_7.json │ │ │ ├── spectral_sword.json │ │ │ ├── spectral_sword_conjuring_0.json │ │ │ ├── spectral_sword_conjuring_1.json │ │ │ ├── spectral_sword_conjuring_2.json │ │ │ ├── spectral_sword_conjuring_3.json │ │ │ ├── spectral_sword_conjuring_4.json │ │ │ ├── spectral_sword_conjuring_5.json │ │ │ ├── spectral_sword_conjuring_6.json │ │ │ ├── spectral_sword_conjuring_7.json │ │ │ ├── spell_book.json │ │ │ ├── spruce_bookshelf.json │ │ │ ├── spruce_gilded_wood.json │ │ │ ├── spruce_lectern.json │ │ │ ├── storage_upgrade.json │ │ │ ├── thorns.json │ │ │ ├── transportation_stone.json │ │ │ ├── vanishing_cobweb.json │ │ │ ├── wand_point.json │ │ │ ├── warlock_boots.json │ │ │ ├── warlock_boots_earth.json │ │ │ ├── warlock_boots_fire.json │ │ │ ├── warlock_boots_healing.json │ │ │ ├── warlock_boots_ice.json │ │ │ ├── warlock_boots_lightning.json │ │ │ ├── warlock_boots_necromancy.json │ │ │ ├── warlock_boots_sorcery.json │ │ │ ├── warlock_hood.json │ │ │ ├── warlock_hood_earth.json │ │ │ ├── warlock_hood_fire.json │ │ │ ├── warlock_hood_healing.json │ │ │ ├── warlock_hood_ice.json │ │ │ ├── warlock_hood_lightning.json │ │ │ ├── warlock_hood_necromancy.json │ │ │ ├── warlock_hood_sorcery.json │ │ │ ├── warlock_leggings.json │ │ │ ├── warlock_leggings_earth.json │ │ │ ├── warlock_leggings_fire.json │ │ │ ├── warlock_leggings_healing.json │ │ │ ├── warlock_leggings_ice.json │ │ │ ├── warlock_leggings_lightning.json │ │ │ ├── warlock_leggings_necromancy.json │ │ │ ├── warlock_leggings_sorcery.json │ │ │ ├── warlock_robe.json │ │ │ ├── warlock_robe_earth.json │ │ │ ├── warlock_robe_fire.json │ │ │ ├── warlock_robe_healing.json │ │ │ ├── warlock_robe_ice.json │ │ │ ├── warlock_robe_lightning.json │ │ │ ├── warlock_robe_necromancy.json │ │ │ ├── warlock_robe_sorcery.json │ │ │ ├── wizard_boots.json │ │ │ ├── wizard_boots_earth.json │ │ │ ├── wizard_boots_fire.json │ │ │ ├── wizard_boots_healing.json │ │ │ ├── wizard_boots_ice.json │ │ │ ├── wizard_boots_lightning.json │ │ │ ├── wizard_boots_necromancy.json │ │ │ ├── wizard_boots_sorcery.json │ │ │ ├── wizard_handbook.json │ │ │ ├── wizard_hat.json │ │ │ ├── wizard_hat_earth.json │ │ │ ├── wizard_hat_fire.json │ │ │ ├── wizard_hat_healing.json │ │ │ ├── wizard_hat_ice.json │ │ │ ├── wizard_hat_lightning.json │ │ │ ├── wizard_hat_necromancy.json │ │ │ ├── wizard_hat_sorcery.json │ │ │ ├── wizard_leggings.json │ │ │ ├── wizard_leggings_earth.json │ │ │ ├── wizard_leggings_fire.json │ │ │ ├── wizard_leggings_healing.json │ │ │ ├── wizard_leggings_ice.json │ │ │ ├── wizard_leggings_lightning.json │ │ │ ├── wizard_leggings_necromancy.json │ │ │ ├── wizard_leggings_sorcery.json │ │ │ ├── wizard_robe.json │ │ │ ├── wizard_robe_earth.json │ │ │ ├── wizard_robe_fire.json │ │ │ ├── wizard_robe_healing.json │ │ │ ├── wizard_robe_ice.json │ │ │ ├── wizard_robe_lightning.json │ │ │ ├── wizard_robe_necromancy.json │ │ │ └── wizard_robe_sorcery.json │ ├── recipes │ │ ├── acacia_bookshelf.json │ │ ├── acacia_lectern.json │ │ ├── arcane_workbench.json │ │ ├── birch_bookshelf.json │ │ ├── birch_lectern.json │ │ ├── blank_scroll.json │ │ ├── crystal_block.json │ │ ├── crystal_block_earth.json │ │ ├── crystal_block_fire.json │ │ ├── crystal_block_healing.json │ │ ├── crystal_block_ice.json │ │ ├── crystal_block_lightning.json │ │ ├── crystal_block_necromancy.json │ │ ├── crystal_block_sorcery.json │ │ ├── crystal_block_to_crystals.json │ │ ├── crystal_block_to_crystals_earth.json │ │ ├── crystal_block_to_crystals_fire.json │ │ ├── crystal_block_to_crystals_healing.json │ │ ├── crystal_block_to_crystals_ice.json │ │ ├── crystal_block_to_crystals_lightning.json │ │ ├── crystal_block_to_crystals_necromancy.json │ │ ├── crystal_block_to_crystals_sorcery.json │ │ ├── crystal_flower_to_crystals.json │ │ ├── crystal_shard.json │ │ ├── dark_oak_bookshelf.json │ │ ├── dark_oak_lectern.json │ │ ├── firebomb.json │ │ ├── gilded_acacia_wood.json │ │ ├── gilded_birch_wood.json │ │ ├── gilded_dark_oak_wood.json │ │ ├── gilded_jungle_wood.json │ │ ├── gilded_oak_wood.json │ │ ├── gilded_spruce_wood.json │ │ ├── jungle_bookshelf.json │ │ ├── jungle_lectern.json │ │ ├── large_mana_flask.json │ │ ├── magic_missile_spell_book.json │ │ ├── magic_silk.json │ │ ├── magic_wand.json │ │ ├── medium_mana_flask.json │ │ ├── oak_bookshelf.json │ │ ├── oak_lectern.json │ │ ├── poison_bomb.json │ │ ├── receptacle.json │ │ ├── runestone_earth.json │ │ ├── runestone_fire.json │ │ ├── runestone_healing.json │ │ ├── runestone_ice.json │ │ ├── runestone_lightning.json │ │ ├── runestone_necromancy.json │ │ ├── runestone_pedestal_earth.json │ │ ├── runestone_pedestal_fire.json │ │ ├── runestone_pedestal_healing.json │ │ ├── runestone_pedestal_ice.json │ │ ├── runestone_pedestal_lightning.json │ │ ├── runestone_pedestal_necromancy.json │ │ ├── runestone_pedestal_sorcery.json │ │ ├── runestone_sorcery.json │ │ ├── small_mana_flask.json │ │ ├── smoke_bomb.json │ │ ├── spark_bomb.json │ │ ├── spruce_bookshelf.json │ │ ├── spruce_lectern.json │ │ ├── transportation_stone.json │ │ ├── wand_earth.json │ │ ├── wand_fire.json │ │ ├── wand_healing.json │ │ ├── wand_ice.json │ │ ├── wand_lightning.json │ │ ├── wand_necromancy.json │ │ ├── wand_sorcery.json │ │ ├── wizard_boots.json │ │ ├── wizard_handbook.json │ │ ├── wizard_hat.json │ │ ├── wizard_leggings.json │ │ └── wizard_robe.json │ ├── shaders │ │ └── post │ │ │ ├── possession.json │ │ │ ├── sixth_sense.json │ │ │ ├── slow_time.json │ │ │ └── transience.json │ ├── sounds.json │ ├── sounds │ │ ├── arc1.ogg │ │ ├── arc2.ogg │ │ ├── arc3.ogg │ │ ├── aura_end.ogg │ │ ├── aura_loop.ogg │ │ ├── aura_start.ogg │ │ ├── beam_end.ogg │ │ ├── beam_loop.ogg │ │ ├── beam_start.ogg │ │ ├── book.ogg │ │ ├── buff.ogg │ │ ├── buff_large.ogg │ │ ├── chargeup.ogg │ │ ├── combust.ogg │ │ ├── conjure.ogg │ │ ├── conjure_large.ogg │ │ ├── dark_aura_end.ogg │ │ ├── dark_aura_loop.ogg │ │ ├── dark_aura_start.ogg │ │ ├── effect1.ogg │ │ ├── effect2.ogg │ │ ├── firebolt.ogg │ │ ├── firestorm.ogg │ │ ├── flames_end.ogg │ │ ├── flames_loop.ogg │ │ ├── flames_start.ogg │ │ ├── flash.ogg │ │ ├── force.ogg │ │ ├── forcefield.ogg │ │ ├── freeze.ogg │ │ ├── frost_end.ogg │ │ ├── frost_loop.ogg │ │ ├── frost_start.ogg │ │ ├── grow.ogg │ │ ├── heal.ogg │ │ ├── hohoho.ogg │ │ ├── ice.ogg │ │ ├── ice_age.ogg │ │ ├── imbue.ogg │ │ ├── lightning_ray_end.ogg │ │ ├── lightning_ray_loop.ogg │ │ ├── lightning_ray_start.ogg │ │ ├── magic.ogg │ │ ├── page1.ogg │ │ ├── page2.ogg │ │ ├── page3.ogg │ │ ├── pull1.ogg │ │ ├── pull2.ogg │ │ ├── remnant_death.ogg │ │ ├── remnant_hiss.ogg │ │ ├── remnant_hurt.ogg │ │ ├── roll.ogg │ │ ├── rumble.ogg │ │ ├── select.ogg │ │ ├── shockwave.ogg │ │ ├── slice.ogg │ │ ├── small_aura_end.ogg │ │ ├── small_aura_loop.ogg │ │ ├── small_aura_start.ogg │ │ ├── sparkle.ogg │ │ ├── spellbind.ogg │ │ ├── summon1.ogg │ │ ├── summon2.ogg │ │ ├── whoosh1.ogg │ │ ├── whoosh2.ogg │ │ ├── wind.ogg │ │ ├── zoom1.ogg │ │ ├── zoom2.ogg │ │ └── zoom3.ogg │ ├── spells │ │ ├── agility.json │ │ ├── arc.json │ │ ├── arcane_jammer.json │ │ ├── arcane_lock.json │ │ ├── arrow_rain.json │ │ ├── banish.json │ │ ├── black_hole.json │ │ ├── blinding_flash.json │ │ ├── blink.json │ │ ├── blizzard.json │ │ ├── boulder.json │ │ ├── bubble.json │ │ ├── celestial_smite.json │ │ ├── chain_lightning.json │ │ ├── charge.json │ │ ├── clairvoyance.json │ │ ├── cobwebs.json │ │ ├── combustion_rune.json │ │ ├── conjure_armour.json │ │ ├── conjure_block.json │ │ ├── conjure_bow.json │ │ ├── conjure_pickaxe.json │ │ ├── conjure_sword.json │ │ ├── containment.json │ │ ├── cure_effects.json │ │ ├── curse_of_enfeeblement.json │ │ ├── curse_of_soulbinding.json │ │ ├── curse_of_undeath.json │ │ ├── darkness_orb.json │ │ ├── darkvision.json │ │ ├── dart.json │ │ ├── decay.json │ │ ├── decoy.json │ │ ├── detonate.json │ │ ├── diamondflesh.json │ │ ├── disintegration.json │ │ ├── divination.json │ │ ├── dragon_fireball.json │ │ ├── earthquake.json │ │ ├── empowering_presence.json │ │ ├── enrage.json │ │ ├── entrapment.json │ │ ├── evade.json │ │ ├── fangs.json │ │ ├── fire_breath.json │ │ ├── fire_resistance.json │ │ ├── fire_sigil.json │ │ ├── fireball.json │ │ ├── firebolt.json │ │ ├── firebomb.json │ │ ├── fireskin.json │ │ ├── firestorm.json │ │ ├── flame_ray.json │ │ ├── flamecatcher.json │ │ ├── flaming_axe.json │ │ ├── flaming_weapon.json │ │ ├── flight.json │ │ ├── font_of_mana.json │ │ ├── font_of_vitality.json │ │ ├── force_arrow.json │ │ ├── force_orb.json │ │ ├── forcefield.json │ │ ├── forest_of_thorns.json │ │ ├── forests_curse.json │ │ ├── freeze.json │ │ ├── freezing_weapon.json │ │ ├── frost_axe.json │ │ ├── frost_barrier.json │ │ ├── frost_ray.json │ │ ├── frost_sigil.json │ │ ├── frost_step.json │ │ ├── glide.json │ │ ├── grapple.json │ │ ├── greater_fireball.json │ │ ├── greater_heal.json │ │ ├── greater_telekinesis.json │ │ ├── greater_ward.json │ │ ├── group_heal.json │ │ ├── growth_aura.json │ │ ├── guardian_beam.json │ │ ├── hailstorm.json │ │ ├── heal.json │ │ ├── heal_ally.json │ │ ├── healing_aura.json │ │ ├── homing_spark.json │ │ ├── ice_age.json │ │ ├── ice_charge.json │ │ ├── ice_lance.json │ │ ├── ice_shard.json │ │ ├── ice_shroud.json │ │ ├── ice_spikes.json │ │ ├── ice_statue.json │ │ ├── iceball.json │ │ ├── ignite.json │ │ ├── imbue_weapon.json │ │ ├── intimidate.json │ │ ├── invigorating_presence.json │ │ ├── invisibility.json │ │ ├── invoke_weather.json │ │ ├── ironflesh.json │ │ ├── leap.json │ │ ├── levitation.json │ │ ├── life_drain.json │ │ ├── light.json │ │ ├── lightning_arrow.json │ │ ├── lightning_bolt.json │ │ ├── lightning_disc.json │ │ ├── lightning_hammer.json │ │ ├── lightning_pulse.json │ │ ├── lightning_ray.json │ │ ├── lightning_sigil.json │ │ ├── lightning_web.json │ │ ├── magic_missile.json │ │ ├── mark_sacrifice.json │ │ ├── metamorphosis.json │ │ ├── meteor.json │ │ ├── mind_control.json │ │ ├── mind_trick.json │ │ ├── mine.json │ │ ├── mirage.json │ │ ├── muffle.json │ │ ├── none.json │ │ ├── oakflesh.json │ │ ├── paralysis.json │ │ ├── permafrost.json │ │ ├── petrify.json │ │ ├── phase_step.json │ │ ├── plague_of_darkness.json │ │ ├── pocket_furnace.json │ │ ├── pocket_workbench.json │ │ ├── poison.json │ │ ├── poison_bomb.json │ │ ├── possession.json │ │ ├── radiant_totem.json │ │ ├── ray_of_purification.json │ │ ├── remove_curse.json │ │ ├── replenish_hunger.json │ │ ├── resurrection.json │ │ ├── reversal.json │ │ ├── ring_of_fire.json │ │ ├── satiety.json │ │ ├── shadow_ward.json │ │ ├── shield.json │ │ ├── shockwave.json │ │ ├── shulker_bullet.json │ │ ├── silverfish_swarm.json │ │ ├── sixth_sense.json │ │ ├── slime.json │ │ ├── slow_time.json │ │ ├── smoke_bomb.json │ │ ├── snare.json │ │ ├── snowball.json │ │ ├── spark_bomb.json │ │ ├── spectral_pathway.json │ │ ├── speed_time.json │ │ ├── spider_swarm.json │ │ ├── static_aura.json │ │ ├── stormcloud.json │ │ ├── summon_blaze.json │ │ ├── summon_ice_giant.json │ │ ├── summon_ice_wraith.json │ │ ├── summon_iron_golem.json │ │ ├── summon_lightning_wraith.json │ │ ├── summon_phoenix.json │ │ ├── summon_shadow_wraith.json │ │ ├── summon_skeleton.json │ │ ├── summon_skeleton_legion.json │ │ ├── summon_snow_golem.json │ │ ├── summon_spirit_horse.json │ │ ├── summon_spirit_wolf.json │ │ ├── summon_storm_elemental.json │ │ ├── summon_wither_skeleton.json │ │ ├── summon_zombie.json │ │ ├── telekinesis.json │ │ ├── thunderbolt.json │ │ ├── thunderstorm.json │ │ ├── tornado.json │ │ ├── transience.json │ │ ├── transportation.json │ │ ├── vanishing_box.json │ │ ├── vex_swarm.json │ │ ├── wall_of_frost.json │ │ ├── ward.json │ │ ├── water_breathing.json │ │ ├── whirlwind.json │ │ ├── wither.json │ │ ├── wither_skull.json │ │ ├── withering_totem.json │ │ └── zombie_apocalypse.json │ ├── structures │ │ ├── library_ruins_0.nbt │ │ ├── library_ruins_1.nbt │ │ ├── library_ruins_2.nbt │ │ ├── library_ruins_3.nbt │ │ ├── obelisk_0.nbt │ │ ├── obelisk_1.nbt │ │ ├── obelisk_2.nbt │ │ ├── obelisk_3.nbt │ │ ├── obelisk_4.nbt │ │ ├── shrine_0.nbt │ │ ├── shrine_1.nbt │ │ ├── shrine_2.nbt │ │ ├── shrine_3.nbt │ │ ├── shrine_4.nbt │ │ ├── shrine_5.nbt │ │ ├── shrine_6.nbt │ │ ├── shrine_7.nbt │ │ ├── underground_library_ruins_0.nbt │ │ ├── underground_library_ruins_1.nbt │ │ ├── underground_library_ruins_2.nbt │ │ ├── underground_library_ruins_3.nbt │ │ ├── wizard_tower_0.nbt │ │ ├── wizard_tower_1.nbt │ │ ├── wizard_tower_2.nbt │ │ ├── wizard_tower_3.nbt │ │ ├── wizard_tower_chest_0.nbt │ │ ├── wizard_tower_chest_1.nbt │ │ ├── wizard_tower_chest_2.nbt │ │ └── wizard_tower_chest_3.nbt │ ├── texts │ │ ├── handbook_en_gb.json │ │ ├── handbook_en_us.json │ │ ├── handbook_es_es.json │ │ ├── handbook_es_mx.txt │ │ ├── handbook_hu_hu.json │ │ ├── handbook_ko_kr.json │ │ ├── handbook_pl_pl.json │ │ ├── handbook_pt_br.txt │ │ ├── handbook_ru_ru.json │ │ ├── handbook_zh_cn.json │ │ └── handbook_zh_tw.json │ └── textures │ │ ├── armour │ │ ├── battlemage_armour.png │ │ ├── battlemage_armour_earth.png │ │ ├── battlemage_armour_earth_legs.png │ │ ├── battlemage_armour_fire.png │ │ ├── battlemage_armour_fire_legs.png │ │ ├── battlemage_armour_healing.png │ │ ├── battlemage_armour_healing_legs.png │ │ ├── battlemage_armour_ice.png │ │ ├── battlemage_armour_ice_legs.png │ │ ├── battlemage_armour_legs.png │ │ ├── battlemage_armour_lightning.png │ │ ├── battlemage_armour_lightning_legs.png │ │ ├── battlemage_armour_necromancy.png │ │ ├── battlemage_armour_necromancy_legs.png │ │ ├── battlemage_armour_sorcery.png │ │ ├── battlemage_armour_sorcery_legs.png │ │ ├── sage_armour.png │ │ ├── sage_armour_earth.png │ │ ├── sage_armour_earth_legs.png │ │ ├── sage_armour_fire.png │ │ ├── sage_armour_fire_legs.png │ │ ├── sage_armour_healing.png │ │ ├── sage_armour_healing_legs.png │ │ ├── sage_armour_ice.png │ │ ├── sage_armour_ice_legs.png │ │ ├── sage_armour_legs.png │ │ ├── sage_armour_lightning.png │ │ ├── sage_armour_lightning_legs.png │ │ ├── sage_armour_necromancy.png │ │ ├── sage_armour_necromancy_legs.png │ │ ├── sage_armour_sorcery.png │ │ ├── sage_armour_sorcery_legs.png │ │ ├── spectral_armour.png │ │ ├── spectral_armour_legs.png │ │ ├── warlock_armour.png │ │ ├── warlock_armour_earth.png │ │ ├── warlock_armour_earth_legs.png │ │ ├── warlock_armour_fire.png │ │ ├── warlock_armour_fire_legs.png │ │ ├── warlock_armour_healing.png │ │ ├── warlock_armour_healing_legs.png │ │ ├── warlock_armour_ice.png │ │ ├── warlock_armour_ice_legs.png │ │ ├── warlock_armour_legs.png │ │ ├── warlock_armour_lightning.png │ │ ├── warlock_armour_lightning_legs.png │ │ ├── warlock_armour_necromancy.png │ │ ├── warlock_armour_necromancy_legs.png │ │ ├── warlock_armour_sorcery.png │ │ ├── warlock_armour_sorcery_legs.png │ │ ├── wizard_armour.png │ │ ├── wizard_armour_earth.png │ │ ├── wizard_armour_earth_legs.png │ │ ├── wizard_armour_festive.png │ │ ├── wizard_armour_festive_legs.png │ │ ├── wizard_armour_fire.png │ │ ├── wizard_armour_fire_legs.png │ │ ├── wizard_armour_healing.png │ │ ├── wizard_armour_healing_legs.png │ │ ├── wizard_armour_ice.png │ │ ├── wizard_armour_ice_legs.png │ │ ├── wizard_armour_legs.png │ │ ├── wizard_armour_lightning.png │ │ ├── wizard_armour_lightning_legs.png │ │ ├── wizard_armour_necromancy.png │ │ ├── wizard_armour_necromancy_legs.png │ │ ├── wizard_armour_sorcery.png │ │ └── wizard_armour_sorcery_legs.png │ │ ├── blocks │ │ ├── acacia_bookshelf_inside.png │ │ ├── acacia_bookshelf_side.png │ │ ├── acacia_bookshelf_top.png │ │ ├── acacia_lectern_base.png │ │ ├── acacia_lectern_side.png │ │ ├── acacia_lectern_top.png │ │ ├── acacia_lectern_underside.png │ │ ├── arcane_lock_0.png │ │ ├── arcane_lock_1.png │ │ ├── arcane_lock_2.png │ │ ├── arcane_lock_3.png │ │ ├── arcane_lock_4.png │ │ ├── arcane_lock_5.png │ │ ├── arcane_lock_6.png │ │ ├── arcane_lock_7.png │ │ ├── arcane_workbench_bottom.png │ │ ├── arcane_workbench_side.png │ │ ├── arcane_workbench_top.png │ │ ├── birch_bookshelf_inside.png │ │ ├── birch_bookshelf_side.png │ │ ├── birch_bookshelf_top.png │ │ ├── birch_lectern_base.png │ │ ├── birch_lectern_side.png │ │ ├── birch_lectern_top.png │ │ ├── birch_lectern_underside.png │ │ ├── books_blue.png │ │ ├── books_brown.png │ │ ├── books_enchanted.png │ │ ├── books_purple.png │ │ ├── books_red.png │ │ ├── crystal_block.png │ │ ├── crystal_block_earth.png │ │ ├── crystal_block_fire.png │ │ ├── crystal_block_healing.png │ │ ├── crystal_block_ice.png │ │ ├── crystal_block_lightning.png │ │ ├── crystal_block_necromancy.png │ │ ├── crystal_block_sorcery.png │ │ ├── crystal_flower.png │ │ ├── crystal_ore.png │ │ ├── dark_oak_bookshelf_inside.png │ │ ├── dark_oak_bookshelf_side.png │ │ ├── dark_oak_bookshelf_top.png │ │ ├── dark_oak_lectern_base.png │ │ ├── dark_oak_lectern_side.png │ │ ├── dark_oak_lectern_top.png │ │ ├── dark_oak_lectern_underside.png │ │ ├── gilded_acacia_wood.png │ │ ├── gilded_birch_wood.png │ │ ├── gilded_dark_oak_wood.png │ │ ├── gilded_jungle_wood.png │ │ ├── gilded_oak_wood.png │ │ ├── gilded_spruce_wood.png │ │ ├── imbuement_altar_bottom.png │ │ ├── imbuement_altar_side.png │ │ ├── imbuement_altar_side_overlay.png │ │ ├── imbuement_altar_side_overlay.png.mcmeta │ │ ├── imbuement_altar_top.png │ │ ├── imbuement_altar_top_overlay.png │ │ ├── imbuement_altar_top_overlay.png.mcmeta │ │ ├── jungle_bookshelf_inside.png │ │ ├── jungle_bookshelf_side.png │ │ ├── jungle_bookshelf_top.png │ │ ├── jungle_lectern_base.png │ │ ├── jungle_lectern_side.png │ │ ├── jungle_lectern_top.png │ │ ├── jungle_lectern_underside.png │ │ ├── meteor.png │ │ ├── oak_bookshelf_inside.png │ │ ├── oak_bookshelf_side.png │ │ ├── oak_bookshelf_top.png │ │ ├── oak_lectern_base.png │ │ ├── oak_lectern_side.png │ │ ├── oak_lectern_top.png │ │ ├── oak_lectern_underside.png │ │ ├── obsidian_crust_0.png │ │ ├── obsidian_crust_1.png │ │ ├── obsidian_crust_2.png │ │ ├── obsidian_crust_3.png │ │ ├── receptacle.png │ │ ├── runestone_earth_0.png │ │ ├── runestone_earth_1.png │ │ ├── runestone_earth_1_overlay.png │ │ ├── runestone_earth_2.png │ │ ├── runestone_earth_2_overlay.png │ │ ├── runestone_earth_3.png │ │ ├── runestone_earth_3_overlay.png │ │ ├── runestone_earth_4.png │ │ ├── runestone_earth_4_overlay.png │ │ ├── runestone_fire_0.png │ │ ├── runestone_fire_1.png │ │ ├── runestone_fire_1_overlay.png │ │ ├── runestone_fire_2.png │ │ ├── runestone_fire_2_overlay.png │ │ ├── runestone_fire_3.png │ │ ├── runestone_fire_3_overlay.png │ │ ├── runestone_fire_4.png │ │ ├── runestone_fire_4_overlay.png │ │ ├── runestone_healing_0.png │ │ ├── runestone_healing_1.png │ │ ├── runestone_healing_1_overlay.png │ │ ├── runestone_healing_2.png │ │ ├── runestone_healing_2_overlay.png │ │ ├── runestone_healing_3.png │ │ ├── runestone_healing_3_overlay.png │ │ ├── runestone_healing_4.png │ │ ├── runestone_healing_4_overlay.png │ │ ├── runestone_ice_0.png │ │ ├── runestone_ice_1.png │ │ ├── runestone_ice_1_overlay.png │ │ ├── runestone_ice_2.png │ │ ├── runestone_ice_2_overlay.png │ │ ├── runestone_ice_3.png │ │ ├── runestone_ice_3_overlay.png │ │ ├── runestone_ice_4.png │ │ ├── runestone_ice_4_overlay.png │ │ ├── runestone_lightning_0.png │ │ ├── runestone_lightning_1.png │ │ ├── runestone_lightning_1_overlay.png │ │ ├── runestone_lightning_2.png │ │ ├── runestone_lightning_2_overlay.png │ │ ├── runestone_lightning_3.png │ │ ├── runestone_lightning_3_overlay.png │ │ ├── runestone_lightning_4.png │ │ ├── runestone_lightning_4_overlay.png │ │ ├── runestone_necromancy_0.png │ │ ├── runestone_necromancy_1.png │ │ ├── runestone_necromancy_1_overlay.png │ │ ├── runestone_necromancy_2.png │ │ ├── runestone_necromancy_2_overlay.png │ │ ├── runestone_necromancy_3.png │ │ ├── runestone_necromancy_3_overlay.png │ │ ├── runestone_necromancy_4.png │ │ ├── runestone_necromancy_4_overlay.png │ │ ├── runestone_pedestal_earth.png │ │ ├── runestone_pedestal_earth_overlay.png │ │ ├── runestone_pedestal_fire.png │ │ ├── runestone_pedestal_fire_overlay.png │ │ ├── runestone_pedestal_healing.png │ │ ├── runestone_pedestal_healing_overlay.png │ │ ├── runestone_pedestal_ice.png │ │ ├── runestone_pedestal_ice_overlay.png │ │ ├── runestone_pedestal_lightning.png │ │ ├── runestone_pedestal_lightning_overlay.png │ │ ├── runestone_pedestal_necromancy.png │ │ ├── runestone_pedestal_necromancy_overlay.png │ │ ├── runestone_pedestal_sorcery.png │ │ ├── runestone_pedestal_sorcery_overlay.png │ │ ├── runestone_sorcery_0.png │ │ ├── runestone_sorcery_1.png │ │ ├── runestone_sorcery_1_overlay.png │ │ ├── runestone_sorcery_2.png │ │ ├── runestone_sorcery_2_overlay.png │ │ ├── runestone_sorcery_3.png │ │ ├── runestone_sorcery_3_overlay.png │ │ ├── runestone_sorcery_4.png │ │ ├── runestone_sorcery_4_overlay.png │ │ ├── scrolls_blue.png │ │ ├── scrolls_purple.png │ │ ├── scrolls_red.png │ │ ├── scrolls_wooden.png │ │ ├── snare.png │ │ ├── spectral_block.png │ │ ├── spruce_bookshelf_inside.png │ │ ├── spruce_bookshelf_side.png │ │ ├── spruce_bookshelf_top.png │ │ ├── spruce_lectern_base.png │ │ ├── spruce_lectern_side.png │ │ ├── spruce_lectern_top.png │ │ ├── spruce_lectern_underside.png │ │ ├── thorns_lower_0.png │ │ ├── thorns_lower_1.png │ │ ├── thorns_lower_2.png │ │ ├── thorns_lower_3.png │ │ ├── thorns_lower_4.png │ │ ├── thorns_lower_5.png │ │ ├── thorns_lower_6.png │ │ ├── thorns_lower_7.png │ │ ├── thorns_upper_0.png │ │ ├── thorns_upper_1.png │ │ ├── thorns_upper_2.png │ │ ├── thorns_upper_3.png │ │ ├── thorns_upper_4.png │ │ ├── thorns_upper_5.png │ │ ├── thorns_upper_6.png │ │ ├── thorns_upper_7.png │ │ ├── transportation_stone.png │ │ └── wall_receptacle.png │ │ ├── entity │ │ ├── arcane_workbench_rune.png │ │ ├── black_hole │ │ │ ├── centre.png │ │ │ └── ray.png │ │ ├── boulder.png │ │ ├── combustion_rune.png │ │ ├── conjured_arrow.png │ │ ├── darkness_orb.png │ │ ├── dart.png │ │ ├── decay │ │ │ ├── decay_0.png │ │ │ ├── decay_1.png │ │ │ ├── decay_2.png │ │ │ ├── decay_3.png │ │ │ ├── decay_4.png │ │ │ ├── decay_5.png │ │ │ ├── decay_6.png │ │ │ ├── decay_7.png │ │ │ ├── decay_8.png │ │ │ └── decay_9.png │ │ ├── disintegrate_overlay │ │ │ ├── disintegrate_overlay_0.png │ │ │ ├── disintegrate_overlay_1.png │ │ │ ├── disintegrate_overlay_10.png │ │ │ ├── disintegrate_overlay_11.png │ │ │ ├── disintegrate_overlay_12.png │ │ │ ├── disintegrate_overlay_13.png │ │ │ ├── disintegrate_overlay_14.png │ │ │ ├── disintegrate_overlay_15.png │ │ │ ├── disintegrate_overlay_16.png │ │ │ ├── disintegrate_overlay_17.png │ │ │ ├── disintegrate_overlay_18.png │ │ │ ├── disintegrate_overlay_2.png │ │ │ ├── disintegrate_overlay_3.png │ │ │ ├── disintegrate_overlay_4.png │ │ │ ├── disintegrate_overlay_5.png │ │ │ ├── disintegrate_overlay_6.png │ │ │ ├── disintegrate_overlay_7.png │ │ │ ├── disintegrate_overlay_8.png │ │ │ └── disintegrate_overlay_9.png │ │ ├── ember.png │ │ ├── entrapment.png │ │ ├── evil_wizard │ │ │ ├── evil_wizard_0.png │ │ │ ├── evil_wizard_1.png │ │ │ ├── evil_wizard_2.png │ │ │ ├── evil_wizard_3.png │ │ │ ├── evil_wizard_4.png │ │ │ └── evil_wizard_5.png │ │ ├── fire_sigil.png │ │ ├── fireball.png │ │ ├── firebolt.png │ │ ├── flamecatcher_arrow.png │ │ ├── force_arrow.png │ │ ├── force_orb.png │ │ ├── frost_overlay.png │ │ ├── frost_sigil.png │ │ ├── healing_aura.png │ │ ├── ice_barrier.png │ │ ├── ice_charge.png │ │ ├── ice_giant.png │ │ ├── ice_lance.png │ │ ├── ice_shard.png │ │ ├── ice_spike.png │ │ ├── ice_wraith.png │ │ ├── iceball.png │ │ ├── lectern_book.png │ │ ├── light │ │ │ ├── flare.png │ │ │ └── ray.png │ │ ├── lightning_arrow.png │ │ ├── lightning_hammer.png │ │ ├── lightning_sigil.png │ │ ├── lightning_wraith.png │ │ ├── magic_missile.png │ │ ├── mind_control_overlay.png │ │ ├── phoenix.png │ │ ├── remnant.png │ │ ├── ring_of_fire.png │ │ ├── shadow_ward.png │ │ ├── shield.png │ │ ├── spark.png │ │ ├── spectral_golem.png │ │ ├── spirit_horse.png │ │ ├── spirit_wolf.png │ │ ├── summon_overlay │ │ │ ├── summon_overlay_0.png │ │ │ ├── summon_overlay_1.png │ │ │ ├── summon_overlay_10.png │ │ │ ├── summon_overlay_11.png │ │ │ ├── summon_overlay_12.png │ │ │ ├── summon_overlay_13.png │ │ │ ├── summon_overlay_14.png │ │ │ ├── summon_overlay_15.png │ │ │ ├── summon_overlay_16.png │ │ │ ├── summon_overlay_17.png │ │ │ ├── summon_overlay_18.png │ │ │ ├── summon_overlay_2.png │ │ │ ├── summon_overlay_3.png │ │ │ ├── summon_overlay_4.png │ │ │ ├── summon_overlay_5.png │ │ │ ├── summon_overlay_6.png │ │ │ ├── summon_overlay_7.png │ │ │ ├── summon_overlay_8.png │ │ │ └── summon_overlay_9.png │ │ ├── totem │ │ │ ├── cube_0.png │ │ │ ├── cube_1.png │ │ │ ├── cube_10.png │ │ │ ├── cube_11.png │ │ │ ├── cube_12.png │ │ │ ├── cube_13.png │ │ │ ├── cube_2.png │ │ │ ├── cube_3.png │ │ │ ├── cube_4.png │ │ │ ├── cube_5.png │ │ │ ├── cube_6.png │ │ │ ├── cube_7.png │ │ │ ├── cube_8.png │ │ │ ├── cube_9.png │ │ │ └── flare.png │ │ ├── wing.png │ │ ├── wizard │ │ │ ├── wizard_0.png │ │ │ ├── wizard_1.png │ │ │ ├── wizard_2.png │ │ │ ├── wizard_3.png │ │ │ ├── wizard_4.png │ │ │ ├── wizard_5.png │ │ │ ├── wizard_7.png │ │ │ ├── wizard_8.png │ │ │ ├── wizard_female_0.png │ │ │ ├── wizard_female_1.png │ │ │ └── wizard_female_2.png │ │ └── zombie_spawner.png │ │ ├── environment │ │ ├── containment_field_0.png │ │ ├── containment_field_1.png │ │ ├── containment_field_2.png │ │ ├── containment_field_3.png │ │ ├── containment_field_4.png │ │ ├── containment_field_5.png │ │ ├── containment_field_6.png │ │ └── containment_field_7.png │ │ ├── gui │ │ ├── advancement_background.png │ │ ├── blink_overlay.png │ │ ├── container │ │ │ ├── arcane_workbench.png │ │ │ ├── bookshelf.png │ │ │ ├── element_icon_earth.png │ │ │ ├── element_icon_fire.png │ │ │ ├── element_icon_healing.png │ │ │ ├── element_icon_ice.png │ │ │ ├── element_icon_lightning.png │ │ │ ├── element_icon_magic.png │ │ │ ├── element_icon_necromancy.png │ │ │ ├── element_icon_sorcery.png │ │ │ ├── empty_slot_crystal.png │ │ │ ├── empty_slot_upgrade.png │ │ │ ├── lectern.png │ │ │ ├── new_spell_indicator.png │ │ │ └── spell_sort_buttons.png │ │ ├── curse_background.png │ │ ├── frost_overlay.png │ │ ├── handbook │ │ │ ├── handbook.png │ │ │ └── pictures │ │ │ │ ├── arcane_workbench.png │ │ │ │ ├── classes.png │ │ │ │ ├── crystal_flower.png │ │ │ │ ├── crystal_ore.png │ │ │ │ ├── elements.png │ │ │ │ ├── library_ruins.png │ │ │ │ ├── obelisk.png │ │ │ │ ├── remnant.png │ │ │ │ ├── shrine.png │ │ │ │ ├── tiers.png │ │ │ │ ├── wizard_armour.png │ │ │ │ └── wizard_tower.png │ │ ├── logo.png │ │ ├── pointer.png │ │ ├── potion_icons │ │ │ ├── arcane_jammer.png │ │ │ ├── containment.png │ │ │ ├── curse_of_enfeeblement.png │ │ │ ├── curse_of_soulbinding.png │ │ │ ├── curse_of_undeath.png │ │ │ ├── decay.png │ │ │ ├── diamondflesh.png │ │ │ ├── empowerment.png │ │ │ ├── fear.png │ │ │ ├── fireskin.png │ │ │ ├── font_of_mana.png │ │ │ ├── frost.png │ │ │ ├── frost_step.png │ │ │ ├── ice_shroud.png │ │ │ ├── ironflesh.png │ │ │ ├── mark_of_sacrifice.png │ │ │ ├── mind_control.png │ │ │ ├── mind_trick.png │ │ │ ├── mirage.png │ │ │ ├── muffle.png │ │ │ ├── oakflesh.png │ │ │ ├── paralysis.png │ │ │ ├── sixth_sense.png │ │ │ ├── slow_time.png │ │ │ ├── static_aura.png │ │ │ ├── transience.png │ │ │ └── ward.png │ │ ├── sixth_sense_marker_hostile.png │ │ ├── sixth_sense_marker_passive.png │ │ ├── sixth_sense_marker_player.png │ │ ├── sixth_sense_overlay.png │ │ ├── spell_book_advanced.png │ │ ├── spell_book_apprentice.png │ │ ├── spell_book_master.png │ │ ├── spell_book_novice.png │ │ ├── spell_charge_meter.png │ │ ├── spell_hud │ │ │ ├── _index.json │ │ │ ├── altar.json │ │ │ ├── altar.png │ │ │ ├── classic.json │ │ │ ├── classic.png │ │ │ ├── compact.json │ │ │ ├── compact.png │ │ │ ├── compass.json │ │ │ ├── compass.png │ │ │ ├── default.json │ │ │ ├── default.png │ │ │ ├── dragon.json │ │ │ ├── dragon.png │ │ │ ├── festive.json │ │ │ ├── festive.png │ │ │ ├── futuristic.json │ │ │ ├── futuristic.png │ │ │ ├── jungle.json │ │ │ ├── jungle.png │ │ │ ├── library.json │ │ │ ├── library.png │ │ │ ├── mahogany.json │ │ │ ├── mahogany.png │ │ │ ├── minimal.json │ │ │ ├── minimal.png │ │ │ ├── oceanic.json │ │ │ ├── oceanic.png │ │ │ ├── planks.json │ │ │ ├── planks.png │ │ │ ├── redwood.json │ │ │ ├── redwood.png │ │ │ ├── sandstone.json │ │ │ ├── sandstone.png │ │ │ ├── silverwood.json │ │ │ ├── silverwood.png │ │ │ ├── skyrim_style.json │ │ │ ├── skyrim_style.png │ │ │ ├── spell_book.json │ │ │ ├── spell_book.png │ │ │ ├── steampunk.json │ │ │ ├── steampunk.png │ │ │ ├── stone.json │ │ │ ├── stone.png │ │ │ ├── vanilla_style.json │ │ │ └── vanilla_style.png │ │ ├── target_pointer.png │ │ └── transportation_marker.png │ │ ├── integration │ │ ├── antiqueatlas │ │ │ ├── library_ruins.png │ │ │ ├── obelisk.png │ │ │ ├── shrine.png │ │ │ └── wizard_tower.png │ │ └── jei │ │ │ ├── arcane_workbench_background.png │ │ │ └── imbuement_altar_background.png │ │ ├── items │ │ ├── amulet_absorption.png │ │ ├── amulet_anchoring.png │ │ ├── amulet_arcane_defence.png │ │ ├── amulet_auto_shield.png │ │ ├── amulet_banishing.png │ │ ├── amulet_channeling.png │ │ ├── amulet_fire_cloaking.png │ │ ├── amulet_fire_protection.png │ │ ├── amulet_frost_warding.png │ │ ├── amulet_glide.png │ │ ├── amulet_ice_immunity.png │ │ ├── amulet_ice_protection.png │ │ ├── amulet_lich.png │ │ ├── amulet_potential.png │ │ ├── amulet_recovery.png │ │ ├── amulet_resurrection.png │ │ ├── amulet_transience.png │ │ ├── amulet_warding.png │ │ ├── amulet_wisdom.png │ │ ├── amulet_wither_immunity.png │ │ ├── arcane_tome.png │ │ ├── astral_diamond.png │ │ ├── battlemage_boots.png │ │ ├── battlemage_boots_earth.png │ │ ├── battlemage_boots_fire.png │ │ ├── battlemage_boots_healing.png │ │ ├── battlemage_boots_ice.png │ │ ├── battlemage_boots_lightning.png │ │ ├── battlemage_boots_necromancy.png │ │ ├── battlemage_boots_sorcery.png │ │ ├── battlemage_chestplate.png │ │ ├── battlemage_chestplate_earth.png │ │ ├── battlemage_chestplate_fire.png │ │ ├── battlemage_chestplate_healing.png │ │ ├── battlemage_chestplate_ice.png │ │ ├── battlemage_chestplate_lightning.png │ │ ├── battlemage_chestplate_necromancy.png │ │ ├── battlemage_chestplate_sorcery.png │ │ ├── battlemage_helmet.png │ │ ├── battlemage_helmet_earth.png │ │ ├── battlemage_helmet_fire.png │ │ ├── battlemage_helmet_healing.png │ │ ├── battlemage_helmet_ice.png │ │ ├── battlemage_helmet_lightning.png │ │ ├── battlemage_helmet_necromancy.png │ │ ├── battlemage_helmet_sorcery.png │ │ ├── battlemage_leggings.png │ │ ├── battlemage_leggings_earth.png │ │ ├── battlemage_leggings_fire.png │ │ ├── battlemage_leggings_healing.png │ │ ├── battlemage_leggings_ice.png │ │ ├── battlemage_leggings_lightning.png │ │ ├── battlemage_leggings_necromancy.png │ │ ├── battlemage_leggings_sorcery.png │ │ ├── charm_abseiling.png │ │ ├── charm_auto_smelt.png │ │ ├── charm_black_hole.png │ │ ├── charm_experience_tome.png │ │ ├── charm_feeding.png │ │ ├── charm_flight.png │ │ ├── charm_growth.png │ │ ├── charm_haggler.png │ │ ├── charm_hunger_casting.png │ │ ├── charm_lava_walking.png │ │ ├── charm_light.png │ │ ├── charm_minion_health.png │ │ ├── charm_minion_variants.png │ │ ├── charm_mount_teleporting.png │ │ ├── charm_move_speed.png │ │ ├── charm_silk_touch.png │ │ ├── charm_sixth_sense.png │ │ ├── charm_spell_discovery.png │ │ ├── charm_stop_time.png │ │ ├── charm_storm.png │ │ ├── charm_storm.png.mcmeta │ │ ├── charm_transportation.png │ │ ├── charm_undead_helmets.png │ │ ├── crystal_earth.png │ │ ├── crystal_fire.png │ │ ├── crystal_grand.png │ │ ├── crystal_healing.png │ │ ├── crystal_ice.png │ │ ├── crystal_lightning.png │ │ ├── crystal_magic.png │ │ ├── crystal_necromancy.png │ │ ├── crystal_shard.png │ │ ├── crystal_silver_plating.png │ │ ├── crystal_sorcery.png │ │ ├── ethereal_crystalweave.png │ │ ├── firebomb.png │ │ ├── flamecatcher_conjuring_0.png │ │ ├── flamecatcher_conjuring_1.png │ │ ├── flamecatcher_conjuring_2.png │ │ ├── flamecatcher_conjuring_3.png │ │ ├── flamecatcher_conjuring_4.png │ │ ├── flamecatcher_conjuring_5.png │ │ ├── flamecatcher_conjuring_6.png │ │ ├── flamecatcher_conjuring_7.png │ │ ├── flamecatcher_pulling_0.png │ │ ├── flamecatcher_pulling_0.png.mcmeta │ │ ├── flamecatcher_pulling_1.png │ │ ├── flamecatcher_pulling_1.png.mcmeta │ │ ├── flamecatcher_pulling_2.png │ │ ├── flamecatcher_pulling_2.png.mcmeta │ │ ├── flamecatcher_standby.png │ │ ├── flamecatcher_standby.png.mcmeta │ │ ├── flaming_axe.png │ │ ├── flaming_axe.png.mcmeta │ │ ├── flaming_axe_conjuring_0.png │ │ ├── flaming_axe_conjuring_1.png │ │ ├── flaming_axe_conjuring_1.png.mcmeta │ │ ├── flaming_axe_conjuring_2.png │ │ ├── flaming_axe_conjuring_2.png.mcmeta │ │ ├── flaming_axe_conjuring_3.png │ │ ├── flaming_axe_conjuring_3.png.mcmeta │ │ ├── flaming_axe_conjuring_4.png │ │ ├── flaming_axe_conjuring_4.png.mcmeta │ │ ├── flaming_axe_conjuring_5.png │ │ ├── flaming_axe_conjuring_5.png.mcmeta │ │ ├── flaming_axe_conjuring_6.png │ │ ├── flaming_axe_conjuring_6.png.mcmeta │ │ ├── flaming_axe_conjuring_7.png │ │ ├── flaming_axe_conjuring_7.png.mcmeta │ │ ├── frost_axe.png │ │ ├── frost_axe_conjuring_0.png │ │ ├── frost_axe_conjuring_1.png │ │ ├── frost_axe_conjuring_2.png │ │ ├── frost_axe_conjuring_3.png │ │ ├── frost_axe_conjuring_4.png │ │ ├── frost_axe_conjuring_5.png │ │ ├── frost_axe_conjuring_6.png │ │ ├── frost_axe_conjuring_7.png │ │ ├── identification_scroll.png │ │ ├── magic_silk.png │ │ ├── mana_flask_large.png │ │ ├── mana_flask_medium.png │ │ ├── mana_flask_small.png │ │ ├── poison_bomb.png │ │ ├── purifying_elixir.png │ │ ├── resplendent_thread.png │ │ ├── ring_arcane_frost.png │ │ ├── ring_battlemage.png │ │ ├── ring_blockwrangler.png │ │ ├── ring_bronze_generic.png │ │ ├── ring_combustion.png │ │ ├── ring_combustion.png.mcmeta │ │ ├── ring_condensing.png │ │ ├── ring_conjurer.png │ │ ├── ring_defender.png │ │ ├── ring_defender.png.mcmeta │ │ ├── ring_disintegration.png │ │ ├── ring_earth_biome.png │ │ ├── ring_earth_melee.png │ │ ├── ring_evoker.png │ │ ├── ring_extraction.png │ │ ├── ring_fire_biome.png │ │ ├── ring_fire_melee.png │ │ ├── ring_full_moon.png │ │ ├── ring_gold_generic.png │ │ ├── ring_hammer.png │ │ ├── ring_ice_biome.png │ │ ├── ring_ice_melee.png │ │ ├── ring_interdiction.png │ │ ├── ring_leeching.png │ │ ├── ring_lightning_melee.png │ │ ├── ring_mana_return.png │ │ ├── ring_meteor.png │ │ ├── ring_mind_control.png │ │ ├── ring_necromancy_melee.png │ │ ├── ring_paladin.png │ │ ├── ring_poison.png │ │ ├── ring_seeking.png │ │ ├── ring_shattering.png │ │ ├── ring_silver_generic.png │ │ ├── ring_siphoning.png │ │ ├── ring_soulbinding.png │ │ ├── ring_storm.png │ │ ├── ring_storm.png.mcmeta │ │ ├── ring_stormcloud.png │ │ ├── ruined_spell_book.png │ │ ├── sage_boots.png │ │ ├── sage_boots_earth.png │ │ ├── sage_boots_fire.png │ │ ├── sage_boots_healing.png │ │ ├── sage_boots_ice.png │ │ ├── sage_boots_lightning.png │ │ ├── sage_boots_necromancy.png │ │ ├── sage_boots_sorcery.png │ │ ├── sage_hat.png │ │ ├── sage_hat_earth.png │ │ ├── sage_hat_fire.png │ │ ├── sage_hat_healing.png │ │ ├── sage_hat_ice.png │ │ ├── sage_hat_lightning.png │ │ ├── sage_hat_necromancy.png │ │ ├── sage_hat_sorcery.png │ │ ├── sage_leggings.png │ │ ├── sage_leggings_earth.png │ │ ├── sage_leggings_fire.png │ │ ├── sage_leggings_healing.png │ │ ├── sage_leggings_ice.png │ │ ├── sage_leggings_lightning.png │ │ ├── sage_leggings_necromancy.png │ │ ├── sage_leggings_sorcery.png │ │ ├── sage_robe.png │ │ ├── sage_robe_earth.png │ │ ├── sage_robe_fire.png │ │ ├── sage_robe_healing.png │ │ ├── sage_robe_ice.png │ │ ├── sage_robe_lightning.png │ │ ├── sage_robe_necromancy.png │ │ ├── sage_robe_sorcery.png │ │ ├── scroll.png │ │ ├── scroll_festive.png │ │ ├── smoke_bomb.png │ │ ├── spark_bomb.png │ │ ├── spectral_boots.png │ │ ├── spectral_bow_conjuring_0.png │ │ ├── spectral_bow_conjuring_1.png │ │ ├── spectral_bow_conjuring_2.png │ │ ├── spectral_bow_conjuring_3.png │ │ ├── spectral_bow_conjuring_4.png │ │ ├── spectral_bow_conjuring_5.png │ │ ├── spectral_bow_conjuring_6.png │ │ ├── spectral_bow_conjuring_7.png │ │ ├── spectral_bow_pulling_0.png │ │ ├── spectral_bow_pulling_1.png │ │ ├── spectral_bow_pulling_2.png │ │ ├── spectral_bow_standby.png │ │ ├── spectral_chestplate.png │ │ ├── spectral_dust_earth.png │ │ ├── spectral_dust_fire.png │ │ ├── spectral_dust_healing.png │ │ ├── spectral_dust_ice.png │ │ ├── spectral_dust_lightning.png │ │ ├── spectral_dust_necromancy.png │ │ ├── spectral_dust_sorcery.png │ │ ├── spectral_helmet.png │ │ ├── spectral_leggings.png │ │ ├── spectral_pickaxe.png │ │ ├── spectral_pickaxe_conjuring_0.png │ │ ├── spectral_pickaxe_conjuring_1.png │ │ ├── spectral_pickaxe_conjuring_2.png │ │ ├── spectral_pickaxe_conjuring_3.png │ │ ├── spectral_pickaxe_conjuring_4.png │ │ ├── spectral_pickaxe_conjuring_5.png │ │ ├── spectral_pickaxe_conjuring_6.png │ │ ├── spectral_pickaxe_conjuring_7.png │ │ ├── spectral_sword.png │ │ ├── spectral_sword_conjuring_0.png │ │ ├── spectral_sword_conjuring_1.png │ │ ├── spectral_sword_conjuring_2.png │ │ ├── spectral_sword_conjuring_3.png │ │ ├── spectral_sword_conjuring_4.png │ │ ├── spectral_sword_conjuring_5.png │ │ ├── spectral_sword_conjuring_6.png │ │ ├── spectral_sword_conjuring_7.png │ │ ├── spell_book.png │ │ ├── spell_book_festive.png │ │ ├── transportation_stone.png │ │ ├── upgrade_attunement.png │ │ ├── upgrade_blast.png │ │ ├── upgrade_condenser.png │ │ ├── upgrade_cooldown.png │ │ ├── upgrade_duration.png │ │ ├── upgrade_melee.png │ │ ├── upgrade_range.png │ │ ├── upgrade_siphon.png │ │ ├── upgrade_storage.png │ │ ├── wand_advanced.png │ │ ├── wand_advanced_earth.png │ │ ├── wand_advanced_fire.png │ │ ├── wand_advanced_healing.png │ │ ├── wand_advanced_ice.png │ │ ├── wand_advanced_lightning.png │ │ ├── wand_advanced_necromancy.png │ │ ├── wand_advanced_sorcery.png │ │ ├── wand_apprentice.png │ │ ├── wand_apprentice_earth.png │ │ ├── wand_apprentice_fire.png │ │ ├── wand_apprentice_healing.png │ │ ├── wand_apprentice_ice.png │ │ ├── wand_apprentice_lightning.png │ │ ├── wand_apprentice_necromancy.png │ │ ├── wand_apprentice_sorcery.png │ │ ├── wand_festive.png │ │ ├── wand_master.png │ │ ├── wand_master_earth.png │ │ ├── wand_master_fire.png │ │ ├── wand_master_healing.png │ │ ├── wand_master_ice.png │ │ ├── wand_master_lightning.png │ │ ├── wand_master_necromancy.png │ │ ├── wand_master_sorcery.png │ │ ├── wand_novice.png │ │ ├── wand_novice_earth.png │ │ ├── wand_novice_fire.png │ │ ├── wand_novice_healing.png │ │ ├── wand_novice_ice.png │ │ ├── wand_novice_lightning.png │ │ ├── wand_novice_necromancy.png │ │ ├── wand_novice_sorcery.png │ │ ├── warlock_boots.png │ │ ├── warlock_boots_earth.png │ │ ├── warlock_boots_fire.png │ │ ├── warlock_boots_healing.png │ │ ├── warlock_boots_ice.png │ │ ├── warlock_boots_lightning.png │ │ ├── warlock_boots_necromancy.png │ │ ├── warlock_boots_sorcery.png │ │ ├── warlock_hood.png │ │ ├── warlock_hood_earth.png │ │ ├── warlock_hood_fire.png │ │ ├── warlock_hood_healing.png │ │ ├── warlock_hood_ice.png │ │ ├── warlock_hood_lightning.png │ │ ├── warlock_hood_necromancy.png │ │ ├── warlock_hood_sorcery.png │ │ ├── warlock_leggings.png │ │ ├── warlock_leggings_earth.png │ │ ├── warlock_leggings_fire.png │ │ ├── warlock_leggings_healing.png │ │ ├── warlock_leggings_ice.png │ │ ├── warlock_leggings_lightning.png │ │ ├── warlock_leggings_necromancy.png │ │ ├── warlock_leggings_sorcery.png │ │ ├── warlock_robe.png │ │ ├── warlock_robe_earth.png │ │ ├── warlock_robe_fire.png │ │ ├── warlock_robe_healing.png │ │ ├── warlock_robe_ice.png │ │ ├── warlock_robe_lightning.png │ │ ├── warlock_robe_necromancy.png │ │ ├── warlock_robe_sorcery.png │ │ ├── wizard_boots.png │ │ ├── wizard_boots_earth.png │ │ ├── wizard_boots_fire.png │ │ ├── wizard_boots_healing.png │ │ ├── wizard_boots_ice.png │ │ ├── wizard_boots_lightning.png │ │ ├── wizard_boots_necromancy.png │ │ ├── wizard_boots_sorcery.png │ │ ├── wizard_handbook.png │ │ ├── wizard_hat.png │ │ ├── wizard_hat_earth.png │ │ ├── wizard_hat_fire.png │ │ ├── wizard_hat_healing.png │ │ ├── wizard_hat_ice.png │ │ ├── wizard_hat_lightning.png │ │ ├── wizard_hat_necromancy.png │ │ ├── wizard_hat_sorcery.png │ │ ├── wizard_leggings.png │ │ ├── wizard_leggings_earth.png │ │ ├── wizard_leggings_fire.png │ │ ├── wizard_leggings_healing.png │ │ ├── wizard_leggings_ice.png │ │ ├── wizard_leggings_lightning.png │ │ ├── wizard_leggings_necromancy.png │ │ ├── wizard_leggings_sorcery.png │ │ ├── wizard_robe.png │ │ ├── wizard_robe_earth.png │ │ ├── wizard_robe_fire.png │ │ ├── wizard_robe_healing.png │ │ ├── wizard_robe_ice.png │ │ ├── wizard_robe_lightning.png │ │ ├── wizard_robe_necromancy.png │ │ └── wizard_robe_sorcery.png │ │ ├── particle │ │ ├── block_highlight.png │ │ ├── buff.png │ │ ├── cloud_0.png │ │ ├── cloud_1.png │ │ ├── cloud_2.png │ │ ├── cloud_3.png │ │ ├── flame_0_0.png │ │ ├── flame_0_1.png │ │ ├── flame_0_2.png │ │ ├── flame_0_3.png │ │ ├── flame_0_4.png │ │ ├── flame_0_5.png │ │ ├── flame_0_6.png │ │ ├── flame_0_7.png │ │ ├── flame_1_0.png │ │ ├── flame_1_1.png │ │ ├── flame_1_2.png │ │ ├── flame_1_3.png │ │ ├── flame_1_4.png │ │ ├── flame_1_5.png │ │ ├── flame_1_6.png │ │ ├── flame_1_7.png │ │ ├── flame_2_0.png │ │ ├── flame_2_1.png │ │ ├── flame_2_2.png │ │ ├── flame_2_3.png │ │ ├── flame_2_4.png │ │ ├── flame_2_5.png │ │ ├── flame_2_6.png │ │ ├── flame_2_7.png │ │ ├── flame_3_0.png │ │ ├── flame_3_1.png │ │ ├── flame_3_2.png │ │ ├── flame_3_3.png │ │ ├── flame_3_4.png │ │ ├── flame_3_5.png │ │ ├── flame_3_6.png │ │ ├── flame_3_7.png │ │ ├── ice_0.png │ │ ├── ice_1.png │ │ ├── ice_2.png │ │ ├── ice_3.png │ │ ├── ice_4.png │ │ ├── ice_5.png │ │ ├── ice_6.png │ │ ├── ice_7.png │ │ ├── leaf_0.png │ │ ├── leaf_1.png │ │ ├── leaf_10.png │ │ ├── leaf_11.png │ │ ├── leaf_12.png │ │ ├── leaf_13.png │ │ ├── leaf_14.png │ │ ├── leaf_15.png │ │ ├── leaf_2.png │ │ ├── leaf_3.png │ │ ├── leaf_4.png │ │ ├── leaf_5.png │ │ ├── leaf_6.png │ │ ├── leaf_7.png │ │ ├── leaf_8.png │ │ ├── leaf_9.png │ │ ├── lightning_0_0.png │ │ ├── lightning_0_1.png │ │ ├── lightning_0_2.png │ │ ├── lightning_0_3.png │ │ ├── lightning_1_0.png │ │ ├── lightning_1_1.png │ │ ├── lightning_1_2.png │ │ ├── lightning_1_3.png │ │ ├── lightning_2_0.png │ │ ├── lightning_2_1.png │ │ ├── lightning_2_2.png │ │ ├── lightning_2_3.png │ │ ├── lightning_3_0.png │ │ ├── lightning_3_1.png │ │ ├── lightning_3_2.png │ │ ├── lightning_3_3.png │ │ ├── lightning_4_0.png │ │ ├── lightning_4_1.png │ │ ├── lightning_4_2.png │ │ ├── lightning_4_3.png │ │ ├── lightning_5_0.png │ │ ├── lightning_5_1.png │ │ ├── lightning_5_2.png │ │ ├── lightning_5_3.png │ │ ├── lightning_6_0.png │ │ ├── lightning_6_1.png │ │ ├── lightning_6_2.png │ │ ├── lightning_6_3.png │ │ ├── lightning_7_0.png │ │ ├── lightning_7_1.png │ │ ├── lightning_7_2.png │ │ ├── lightning_7_3.png │ │ ├── lightning_pulse_0.png │ │ ├── lightning_pulse_1.png │ │ ├── lightning_pulse_2.png │ │ ├── lightning_pulse_3.png │ │ ├── lightning_pulse_4.png │ │ ├── lightning_pulse_5.png │ │ ├── lightning_pulse_6.png │ │ ├── lightning_pulse_7.png │ │ ├── path.png │ │ ├── scorch_0.png │ │ ├── scorch_1.png │ │ ├── scorch_2.png │ │ ├── scorch_3.png │ │ ├── scorch_4.png │ │ ├── scorch_5.png │ │ ├── scorch_6.png │ │ ├── scorch_7.png │ │ ├── snow_0.png │ │ ├── snow_1.png │ │ ├── snow_2.png │ │ ├── snow_3.png │ │ ├── sparkle_0.png │ │ ├── sparkle_1.png │ │ ├── sparkle_10.png │ │ ├── sparkle_2.png │ │ ├── sparkle_3.png │ │ ├── sparkle_4.png │ │ ├── sparkle_5.png │ │ ├── sparkle_6.png │ │ ├── sparkle_7.png │ │ ├── sparkle_8.png │ │ ├── sparkle_9.png │ │ ├── vine.png │ │ ├── vine_leaf_0.png │ │ ├── vine_leaf_1.png │ │ ├── vine_leaf_2.png │ │ ├── vine_leaf_3.png │ │ └── vine_leaf_4.png │ │ └── spells │ │ ├── agility.png │ │ ├── arc.png │ │ ├── arcane_jammer.png │ │ ├── arcane_lock.png │ │ ├── arrow_rain.png │ │ ├── banish.png │ │ ├── black_hole.png │ │ ├── blinding_flash.png │ │ ├── blink.png │ │ ├── blizzard.png │ │ ├── boulder.png │ │ ├── bubble.png │ │ ├── celestial_smite.png │ │ ├── chain_lightning.png │ │ ├── charge.png │ │ ├── clairvoyance.png │ │ ├── cobwebs.png │ │ ├── combustion_rune.png │ │ ├── conjure_armour.png │ │ ├── conjure_axe.png │ │ ├── conjure_block.png │ │ ├── conjure_bow.png │ │ ├── conjure_pickaxe.png │ │ ├── conjure_shovel.png │ │ ├── conjure_sword.png │ │ ├── containment.png │ │ ├── cure_effects.png │ │ ├── curse_of_enfeeblement.png │ │ ├── curse_of_soulbinding.png │ │ ├── curse_of_undeath.png │ │ ├── darkness_orb.png │ │ ├── darkvision.png │ │ ├── dart.png │ │ ├── decay.png │ │ ├── decoy.png │ │ ├── detonate.png │ │ ├── diamondflesh.png │ │ ├── disintegration.png │ │ ├── divination.png │ │ ├── dragon_fireball.png │ │ ├── earthquake.png │ │ ├── empowering_presence.png │ │ ├── enrage.png │ │ ├── entrapment.png │ │ ├── evade.png │ │ ├── fangs.png │ │ ├── fire_breath.png │ │ ├── fire_resistance.png │ │ ├── fire_sigil.png │ │ ├── fireball.png │ │ ├── firebolt.png │ │ ├── firebomb.png │ │ ├── fireskin.png │ │ ├── firestorm.png │ │ ├── flame_ray.png │ │ ├── flamecatcher.png │ │ ├── flaming_axe.png │ │ ├── flaming_weapon.png │ │ ├── flight.png │ │ ├── font_of_mana.png │ │ ├── font_of_vitality.png │ │ ├── force_arrow.png │ │ ├── force_orb.png │ │ ├── forcefield.png │ │ ├── forest_of_thorns.png │ │ ├── forests_curse.png │ │ ├── freeze.png │ │ ├── freezing_weapon.png │ │ ├── frost_axe.png │ │ ├── frost_barrier.png │ │ ├── frost_ray.png │ │ ├── frost_shield.png │ │ ├── frost_sigil.png │ │ ├── frost_step.png │ │ ├── glide.png │ │ ├── grapple.png │ │ ├── greater_fireball.png │ │ ├── greater_heal.png │ │ ├── greater_telekinesis.png │ │ ├── greater_ward.png │ │ ├── group_heal.png │ │ ├── growth_aura.png │ │ ├── guardian_angel.png │ │ ├── guardian_beam.png │ │ ├── hailstorm.png │ │ ├── heal.png │ │ ├── heal_ally.png │ │ ├── healing_aura.png │ │ ├── homing_spark.png │ │ ├── ice_age.png │ │ ├── ice_charge.png │ │ ├── ice_lance.png │ │ ├── ice_shard.png │ │ ├── ice_shroud.png │ │ ├── ice_spikes.png │ │ ├── ice_statue.png │ │ ├── iceball.png │ │ ├── ignite.png │ │ ├── imbue_weapon.png │ │ ├── intimidate.png │ │ ├── invigorating_presence.png │ │ ├── invisibility.png │ │ ├── invoke_weather.png │ │ ├── ironflesh.png │ │ ├── leap.png │ │ ├── levitation.png │ │ ├── life_drain.png │ │ ├── light.png │ │ ├── lightning_arrow.png │ │ ├── lightning_bolt.png │ │ ├── lightning_disc.png │ │ ├── lightning_hammer.png │ │ ├── lightning_pulse.png │ │ ├── lightning_ray.png │ │ ├── lightning_sigil.png │ │ ├── lightning_web.png │ │ ├── magic_missile.png │ │ ├── mark_sacrifice.png │ │ ├── metamorphosis.png │ │ ├── meteor.png │ │ ├── mind_control.png │ │ ├── mind_trick.png │ │ ├── mine.png │ │ ├── mirage.png │ │ ├── muffle.png │ │ ├── none.png │ │ ├── oakflesh.png │ │ ├── paralysis.png │ │ ├── permafrost.png │ │ ├── petrify.png │ │ ├── phase_step.png │ │ ├── plague_of_darkness.png │ │ ├── pocket_furnace.png │ │ ├── pocket_workbench.png │ │ ├── poison.png │ │ ├── poison_bomb.png │ │ ├── possession.png │ │ ├── radiant_totem.png │ │ ├── ray_of_purification.png │ │ ├── remove_curse.png │ │ ├── replenish_hunger.png │ │ ├── resurrection.png │ │ ├── reversal.png │ │ ├── ring_of_fire.png │ │ ├── rupture.png │ │ ├── satiety.png │ │ ├── shadow_ward.png │ │ ├── shield.png │ │ ├── shocking_weapon.png │ │ ├── shockwave.png │ │ ├── shulker_bullet.png │ │ ├── silverfish_swarm.png │ │ ├── sixth_sense.png │ │ ├── slime.png │ │ ├── slow_time.png │ │ ├── smoke_bomb.png │ │ ├── snare.png │ │ ├── snowball.png │ │ ├── spark_bomb.png │ │ ├── spectral_pathway.png │ │ ├── speed_time.png │ │ ├── spider_swarm.png │ │ ├── static_aura.png │ │ ├── stormcloud.png │ │ ├── summon_blaze.png │ │ ├── summon_creeper.png │ │ ├── summon_ice_giant.png │ │ ├── summon_ice_wraith.png │ │ ├── summon_iron_golem.png │ │ ├── summon_lightning_wraith.png │ │ ├── summon_phoenix.png │ │ ├── summon_shadow_wraith.png │ │ ├── summon_skeleton.png │ │ ├── summon_skeleton_legion.png │ │ ├── summon_snow_golem.png │ │ ├── summon_spirit_horse.png │ │ ├── summon_spirit_wolf.png │ │ ├── summon_storm_elemental.png │ │ ├── summon_wither_skeleton.png │ │ ├── summon_zombie.png │ │ ├── telekinesis.png │ │ ├── thunderbolt.png │ │ ├── thunderstorm.png │ │ ├── tornado.png │ │ ├── transience.png │ │ ├── transportation.png │ │ ├── vanishing_box.png │ │ ├── vex_swarm.png │ │ ├── wall_of_frost.png │ │ ├── ward.png │ │ ├── water_breathing.png │ │ ├── whirlwind.png │ │ ├── wither.png │ │ ├── wither_skull.png │ │ ├── withering_totem.png │ │ └── zombie_apocalypse.png └── minecraft │ └── textures │ └── entity │ └── banner │ ├── wizardry_earth.png │ ├── wizardry_fire.png │ ├── wizardry_healing.png │ ├── wizardry_ice.png │ ├── wizardry_lightning.png │ ├── wizardry_necromancy.png │ └── wizardry_sorcery.png ├── mcmod.info └── pack.mcmeta /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/advancements/handbook/on_subsection_unlock.json: -------------------------------------------------------------------------------- 1 | { 2 | "criteria": { 3 | "criteria_0": { 4 | "trigger": "minecraft:impossible" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/acacia_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:gilded_acacia_wood" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/arcane_workbench.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:arcane_workbench" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/birch_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:gilded_birch_wood" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/crystal_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "normal": { "model": "ebwizardry:crystal_flower" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/crystal_flower_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:crystal_flower_pot" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/crystal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:crystal_ore" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/dark_oak_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:gilded_dark_oak_wood" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/earth_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:earth_crystal_block" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/earth_runestone_pedestal.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:earth_runestone_pedestal" } 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/fire_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:fire_crystal_block" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/fire_runestone_pedestal.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:fire_runestone_pedestal" } 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/healing_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:healing_crystal_block" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/healing_runestone_pedestal.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:healing_runestone_pedestal" } 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/ice_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:ice_crystal_block" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/ice_runestone_pedestal.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:ice_runestone_pedestal" } 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/ice_statue.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:ice_statue" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/jungle_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:gilded_jungle_wood" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/lightning_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:lightning_crystal_block" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/lightning_runestone_pedestal.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:lightning_runestone_pedestal" } 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/magic_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:magic_crystal_block" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/magic_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:magic_light" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/meteor.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:meteor" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/necromancy_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:necromancy_crystal_block" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/necromancy_runestone_pedestal.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:necromancy_runestone_pedestal" } 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/oak_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:gilded_oak_wood" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/petrified_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:petrified_stone" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/snare.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:snare" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/sorcery_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:sorcery_crystal_block" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/sorcery_runestone_pedestal.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:sorcery_runestone_pedestal" } 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/spectral_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:spectral_block" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/spruce_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:gilded_spruce_wood" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/transportation_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:transportation_stone" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/blockstates/vanishing_cobweb.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "normal": { "model": "ebwizardry:vanishing_cobweb" } 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/lang/pl_pl.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/lang/pl_pl.lang -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/crystal_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/crystal_flower" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/crystal_flower_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/flower_pot_cross", 3 | "textures": { 4 | "plant": "ebwizardry:blocks/crystal_flower" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/crystal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/crystal_ore" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/earth_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/crystal_block_earth" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/fire_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/crystal_block_fire" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/gilded_acacia_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/gilded_acacia_wood" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/gilded_birch_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/gilded_birch_wood" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/gilded_dark_oak_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/gilded_dark_oak_wood" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/gilded_jungle_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/gilded_jungle_wood" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/gilded_oak_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/gilded_oak_wood" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/gilded_spruce_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/gilded_spruce_wood" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/healing_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/crystal_block_healing" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/ice_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/crystal_block_ice" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/ice_statue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/ice" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/lightning_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/crystal_block_lightning" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/magic_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/crystal_block" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/meteor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/meteor" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/necromancy_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/crystal_block_necromancy" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/obsidian_crust_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/obsidian_crust_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/obsidian_crust_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/obsidian_crust_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/obsidian_crust_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/obsidian_crust_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/obsidian_crust_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/obsidian_crust_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/sorcery_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/crystal_block_sorcery" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/spectral_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "ebwizardry:blocks/spectral_block" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_lower_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_lower_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_lower_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_lower_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_lower_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_lower_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_lower_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_lower_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_lower_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_lower_4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_lower_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_lower_5" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_lower_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_lower_6" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_lower_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_lower_7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_upper_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_upper_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_upper_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_upper_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_upper_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_upper_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_upper_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_upper_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_upper_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_upper_4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_upper_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_upper_5" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_upper_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_upper_6" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/thorns_upper_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "ebwizardry:blocks/thorns_upper_7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/block/vanishing_cobweb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "blocks/web" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/acacia_bookshelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/acacia_bookshelf" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/acacia_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/gilded_acacia_wood" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/acacia_lectern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/acacia_lectern" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_absorption.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_absorption" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_anchoring.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_anchoring" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_arcane_defence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_arcane_defence" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_auto_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_auto_shield" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_banishing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_banishing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_channeling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_channeling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_fire_cloaking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_fire_cloaking" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_fire_protection.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_fire_protection" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_frost_warding.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_frost_warding" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_glide.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_glide" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_ice_immunity.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_ice_immunity" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_ice_protection.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_ice_protection" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_lich.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_lich" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_potential.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_potential" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_recovery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_recovery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_resurrection.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_resurrection" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_transience.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_transience" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_warding.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_warding" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_wisdom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_wisdom" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/amulet_wither_immunity.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/amulet_wither_immunity" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/arcane_tome.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/arcane_tome" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/arcane_workbench.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/arcane_workbench" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/armour_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/armour_upgrade" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/astral_diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/astral_diamond" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/attunement_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/upgrade_attunement" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_boots" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_boots_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_boots_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_boots_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_boots_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_boots_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_boots_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_boots_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_boots_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_boots_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_boots_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_boots_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_boots_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_boots_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_boots_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_chestplate" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_chestplate_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_chestplate_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_chestplate_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_chestplate_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_chestplate_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_chestplate_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_chestplate_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_chestplate_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_chestplate_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_chestplate_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_chestplate_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_chestplate_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_chestplate_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_chestplate_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_helmet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_helmet_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_helmet_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_helmet_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_helmet_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_helmet_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_helmet_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_helmet_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_helmet_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_helmet_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_helmet_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_helmet_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_helmet_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_helmet_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_helmet_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_leggings" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_leggings_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_leggings_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_leggings_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_leggings_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_leggings_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_leggings_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_leggings_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_leggings_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_leggings_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_leggings_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_leggings_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_leggings_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/battlemage_leggings_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/battlemage_leggings_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/birch_bookshelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/birch_bookshelf" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/birch_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/gilded_birch_wood" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/birch_lectern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/birch_lectern" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/blast_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/upgrade_blast" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_abseiling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_abseiling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_auto_smelt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_auto_smelt" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_black_hole.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_black_hole" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_experience_tome.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_experience_tome" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_feeding.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_feeding" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_flight.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_flight" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_growth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_haggler.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_haggler" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_hunger_casting.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_hunger_casting" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_lava_walking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_lava_walking" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_light" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_minion_health.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_minion_health" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_minion_variants.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_minion_variants" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_mount_teleporting.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_mount_teleporting" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_move_speed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_move_speed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_silk_touch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_silk_touch" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_sixth_sense.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_sixth_sense" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_spell_discovery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_spell_discovery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_stop_time.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_stop_time" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_storm.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_storm" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_transportation.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_transportation" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/charm_undead_helmets.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/charm_undead_helmets" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/condenser_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/upgrade_condenser" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/cooldown_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/upgrade_cooldown" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:blocks/crystal_flower" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_magic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_magic" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/crystal_ore" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_shard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_shard" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_silver_plating.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_silver_plating" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/crystal_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/dark_oak_bookshelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/dark_oak_bookshelf" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/dark_oak_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/gilded_dark_oak_wood" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/dark_oak_lectern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/dark_oak_lectern" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/duration_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/upgrade_duration" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/earth_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/earth_crystal_block" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ethereal_crystalweave.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ethereal_crystalweave" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/festive_scroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/scroll_festive" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/festive_spell_book.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spell_book_festive" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/fire_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/fire_crystal_block" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/firebomb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/firebomb" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_conjuring_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_conjuring_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_conjuring_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_conjuring_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_conjuring_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_conjuring_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_conjuring_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_conjuring_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_conjuring_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_conjuring_4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_conjuring_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_conjuring_5" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_conjuring_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_conjuring_6" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_conjuring_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_conjuring_7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_pulling_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_pulling_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_pulling_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_pulling_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flamecatcher_pulling_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flamecatcher_pulling_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flaming_axe_conjuring_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flaming_axe_conjuring_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flaming_axe_conjuring_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flaming_axe_conjuring_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flaming_axe_conjuring_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flaming_axe_conjuring_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flaming_axe_conjuring_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flaming_axe_conjuring_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flaming_axe_conjuring_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flaming_axe_conjuring_4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flaming_axe_conjuring_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flaming_axe_conjuring_5" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flaming_axe_conjuring_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flaming_axe_conjuring_6" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/flaming_axe_conjuring_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/flaming_axe_conjuring_7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/frost_axe_conjuring_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/frost_axe_conjuring_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/frost_axe_conjuring_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/frost_axe_conjuring_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/frost_axe_conjuring_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/frost_axe_conjuring_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/frost_axe_conjuring_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/frost_axe_conjuring_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/frost_axe_conjuring_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/frost_axe_conjuring_4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/frost_axe_conjuring_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/frost_axe_conjuring_5" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/frost_axe_conjuring_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/frost_axe_conjuring_6" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/frost_axe_conjuring_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/frost_axe_conjuring_7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/grand_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/crystal_grand" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/healing_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/healing_crystal_block" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ice_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/ice_crystal_block" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ice_statue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/ice_statue" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/identification_scroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/identification_scroll" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/imbuement_altar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/imbuement_altar_inactive" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/jungle_bookshelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/jungle_bookshelf" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/jungle_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/gilded_jungle_wood" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/jungle_lectern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/jungle_lectern" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/large_mana_flask.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/mana_flask_large" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/lightning_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/lightning_crystal_block" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/magic_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/magic_crystal_block" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/magic_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/sea_lantern" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/magic_silk.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/magic_silk" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/medium_mana_flask.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/mana_flask_medium" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/melee_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/upgrade_melee" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/meteor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/meteor" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/necromancy_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/necromancy_crystal_block" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/oak_bookshelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/oak_bookshelf" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/oak_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/gilded_oak_wood" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/oak_lectern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/oak_lectern" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/petrified_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/stone" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/poison_bomb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/poison_bomb" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/purifying_elixir.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/purifying_elixir" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/range_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/upgrade_range" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/receptacle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/receptacle" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/resplendent_thread.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/resplendent_thread" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_arcane_frost.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_arcane_frost" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_battlemage.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_battlemage" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_blockwrangler.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_blockwrangler" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_combustion.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_combustion" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_condensing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_condensing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_conjurer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_conjurer" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_defender.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_defender" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_disintegration.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_disintegration" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_earth_biome.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_earth_biome" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_earth_melee.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_earth_melee" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_evoker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_evoker" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_extraction.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_extraction" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_fire_biome.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_fire_biome" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_fire_melee.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_fire_melee" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_full_moon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_full_moon" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_hammer" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_ice_biome.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_ice_biome" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_ice_melee.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_ice_melee" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_interdiction.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_interdiction" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_leeching.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_leeching" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_lightning_melee.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_lightning_melee" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_mana_return.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_mana_return" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_meteor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_meteor" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_mind_control.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_mind_control" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_necromancy_melee.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_necromancy_melee" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_paladin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_paladin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_poison.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_poison" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_seeking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_seeking" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_shattering.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_shattering" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_siphoning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_siphoning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_soulbinding.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_soulbinding" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_spirit_animal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_spirit_animal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_storm.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_storm" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ring_stormcloud.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ring_stormcloud" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/ruined_spell_book.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/ruined_spell_book" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_boots" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_boots_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_boots_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_boots_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_boots_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_boots_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_boots_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_boots_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_boots_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_boots_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_boots_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_boots_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_boots_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_boots_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_boots_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_hat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_hat" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_hat_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_hat_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_hat_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_hat_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_hat_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_hat_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_hat_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_hat_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_hat_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_hat_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_hat_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_hat_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_hat_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_hat_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_leggings" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_leggings_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_leggings_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_leggings_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_leggings_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_leggings_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_leggings_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_leggings_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_leggings_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_leggings_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_leggings_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_leggings_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_leggings_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_leggings_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_leggings_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_robe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_robe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_robe_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_robe_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_robe_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_robe_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_robe_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_robe_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_robe_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_robe_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_robe_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_robe_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_robe_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_robe_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sage_robe_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/sage_robe_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/siphon_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/upgrade_siphon" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/small_mana_flask.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/mana_flask_small" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/smoke_bomb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/smoke_bomb" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/snare.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:blocks/snare" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/sorcery_crystal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/sorcery_crystal_block" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spark_bomb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spark_bomb" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/spectral_block" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_boots" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_conjuring_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_conjuring_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_conjuring_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_conjuring_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_conjuring_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_conjuring_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_conjuring_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_conjuring_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_conjuring_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_conjuring_4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_conjuring_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_conjuring_5" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_conjuring_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_conjuring_6" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_conjuring_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_conjuring_7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_pulling_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_pulling_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_pulling_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_pulling_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_bow_pulling_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/bow", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_bow_pulling_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_chestplate" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_dust_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_dust_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_dust_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_dust_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_dust_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_dust_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_dust_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_dust_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_dust_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_dust_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_dust_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_dust_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_dust_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_dust_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_helmet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_leggings" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_sword_conjuring_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_sword_conjuring_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_sword_conjuring_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_sword_conjuring_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_sword_conjuring_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_sword_conjuring_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_sword_conjuring_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_sword_conjuring_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_sword_conjuring_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_sword_conjuring_4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_sword_conjuring_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_sword_conjuring_5" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_sword_conjuring_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_sword_conjuring_6" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spectral_sword_conjuring_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ebwizardry:items/spectral_sword_conjuring_7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spruce_bookshelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/spruce_bookshelf" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spruce_gilded_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/gilded_spruce_wood" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/spruce_lectern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ebwizardry:block/spruce_lectern" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/storage_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/upgrade_storage" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/thorns.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:blocks/thorns_upper_7" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/transportation_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/transportation_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/vanishing_cobweb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "blocks/web" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_boots" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_boots_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_boots_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_boots_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_boots_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_boots_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_boots_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_boots_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_boots_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_boots_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_boots_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_boots_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_boots_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_boots_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_boots_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_hood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_hood" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_hood_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_hood_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_hood_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_hood_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_hood_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_hood_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_hood_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_hood_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_hood_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_hood_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_hood_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_hood_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_hood_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_hood_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_leggings" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_leggings_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_leggings_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_leggings_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_leggings_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_leggings_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_leggings_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_leggings_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_leggings_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_leggings_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_leggings_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_leggings_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_leggings_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_leggings_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_leggings_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_robe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_robe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_robe_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_robe_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_robe_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_robe_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_robe_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_robe_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_robe_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_robe_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_robe_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_robe_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_robe_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_robe_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/warlock_robe_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/warlock_robe_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_boots" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_boots_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_boots_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_boots_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_boots_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_boots_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_boots_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_boots_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_boots_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_boots_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_boots_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_boots_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_boots_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_boots_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_boots_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_handbook.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_handbook" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_hat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_hat" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_hat_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_hat_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_hat_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_hat_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_hat_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_hat_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_hat_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_hat_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_hat_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_hat_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_hat_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_hat_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_hat_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_hat_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_leggings" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_leggings_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_leggings_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_leggings_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_leggings_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_leggings_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_leggings_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_leggings_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_leggings_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_leggings_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_leggings_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_leggings_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_leggings_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_leggings_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_leggings_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_robe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_robe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_robe_earth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_robe_earth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_robe_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_robe_fire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_robe_healing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_robe_healing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_robe_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_robe_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_robe_lightning.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_robe_lightning" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_robe_necromancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_robe_necromancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/models/item/wizard_robe_sorcery.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ebwizardry:items/wizard_robe_sorcery" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/arc1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/arc1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/arc2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/arc2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/arc3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/arc3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/aura_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/aura_end.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/aura_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/aura_loop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/aura_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/aura_start.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/beam_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/beam_end.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/beam_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/beam_loop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/beam_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/beam_start.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/book.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/book.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/buff.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/buff.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/buff_large.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/buff_large.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/chargeup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/chargeup.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/combust.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/combust.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/conjure.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/conjure.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/conjure_large.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/conjure_large.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/dark_aura_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/dark_aura_end.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/dark_aura_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/dark_aura_loop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/dark_aura_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/dark_aura_start.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/effect1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/effect1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/effect2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/effect2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/firebolt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/firebolt.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/firestorm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/firestorm.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/flames_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/flames_end.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/flames_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/flames_loop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/flames_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/flames_start.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/flash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/flash.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/force.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/force.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/forcefield.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/forcefield.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/freeze.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/freeze.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/frost_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/frost_end.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/frost_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/frost_loop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/frost_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/frost_start.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/grow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/grow.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/heal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/heal.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/hohoho.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/hohoho.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/ice.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/ice.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/ice_age.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/ice_age.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/imbue.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/imbue.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/lightning_ray_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/lightning_ray_end.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/lightning_ray_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/lightning_ray_loop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/lightning_ray_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/lightning_ray_start.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/magic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/magic.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/page1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/page1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/page2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/page2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/page3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/page3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/pull1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/pull1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/pull2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/pull2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/remnant_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/remnant_death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/remnant_hiss.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/remnant_hiss.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/remnant_hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/remnant_hurt.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/roll.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/roll.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/rumble.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/rumble.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/select.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/select.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/shockwave.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/shockwave.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/slice.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/slice.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/small_aura_end.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/small_aura_end.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/small_aura_loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/small_aura_loop.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/small_aura_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/small_aura_start.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/sparkle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/sparkle.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/spellbind.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/spellbind.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/summon1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/summon1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/summon2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/summon2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/whoosh1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/whoosh1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/whoosh2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/whoosh2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/wind.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/wind.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/zoom1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/zoom1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/zoom2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/zoom2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/sounds/zoom3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/sounds/zoom3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/library_ruins_0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/library_ruins_0.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/library_ruins_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/library_ruins_1.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/library_ruins_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/library_ruins_2.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/library_ruins_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/library_ruins_3.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/obelisk_0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/obelisk_0.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/obelisk_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/obelisk_1.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/obelisk_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/obelisk_2.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/obelisk_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/obelisk_3.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/obelisk_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/obelisk_4.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/shrine_0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/shrine_0.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/shrine_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/shrine_1.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/shrine_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/shrine_2.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/shrine_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/shrine_3.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/shrine_4.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/shrine_4.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/shrine_5.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/shrine_5.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/shrine_6.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/shrine_6.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/shrine_7.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/shrine_7.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/wizard_tower_0.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/wizard_tower_0.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/wizard_tower_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/wizard_tower_1.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/wizard_tower_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/wizard_tower_2.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/structures/wizard_tower_3.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/structures/wizard_tower_3.nbt -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/blocks/books_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/blocks/books_blue.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/blocks/books_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/blocks/books_red.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/blocks/meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/blocks/meteor.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/blocks/receptacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/blocks/receptacle.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/blocks/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/blocks/snare.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/boulder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/boulder.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/dart.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/ember.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/entrapment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/entrapment.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/fire_sigil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/fire_sigil.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/fireball.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/firebolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/firebolt.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/force_orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/force_orb.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/ice_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/ice_charge.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/ice_giant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/ice_giant.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/ice_lance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/ice_lance.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/ice_shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/ice_shard.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/ice_spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/ice_spike.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/ice_wraith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/ice_wraith.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/iceball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/iceball.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/light/ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/light/ray.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/phoenix.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/remnant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/remnant.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/spark.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/entity/wing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/entity/wing.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/gui/blink_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/gui/blink_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/gui/frost_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/gui/frost_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/gui/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/gui/logo.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/gui/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/gui/pointer.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/amulet_lich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/amulet_lich.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/arcane_tome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/arcane_tome.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/charm_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/charm_light.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/charm_storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/charm_storm.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/crystal_ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/crystal_ice.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/firebomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/firebomb.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flamecatcher_pulling_0.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flamecatcher_pulling_1.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flamecatcher_pulling_2.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flamecatcher_standby.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flaming_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/flaming_axe.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flaming_axe.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flaming_axe_conjuring_1.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flaming_axe_conjuring_2.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flaming_axe_conjuring_3.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flaming_axe_conjuring_4.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flaming_axe_conjuring_5.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flaming_axe_conjuring_6.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/flaming_axe_conjuring_7.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/frost_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/frost_axe.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/magic_silk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/magic_silk.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/poison_bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/poison_bomb.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/ring_combustion.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 2, 5 | 6 | "frames": [ 7 | 0, 8 | 1, 2, 3, 4, 5, 6, 7] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/ring_defender.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | 4 | "frametime": 40, 5 | 6 | "interpolate": true, 7 | 8 | "frames": [0, 1] 9 | 10 | } 11 | 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/ring_evoker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/ring_evoker.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/ring_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/ring_hammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/ring_meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/ring_meteor.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/ring_poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/ring_poison.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/ring_storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/ring_storm.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/sage_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/sage_boots.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/sage_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/sage_hat.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/sage_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/sage_robe.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/scroll.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/smoke_bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/smoke_bomb.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/spark_bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/spark_bomb.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/spell_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/spell_book.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/wand_master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/wand_master.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/wand_novice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/wand_novice.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/wizard_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/wizard_hat.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/items/wizard_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/items/wizard_robe.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/buff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/buff.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/cloud_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/cloud_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/cloud_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/cloud_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/cloud_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/cloud_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/cloud_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/cloud_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/ice_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/ice_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/ice_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/ice_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/ice_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/ice_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/ice_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/ice_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/ice_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/ice_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/ice_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/ice_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/ice_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/ice_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/ice_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/ice_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_10.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_11.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_12.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_13.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_14.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_15.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_8.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/leaf_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/leaf_9.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/path.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/scorch_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/scorch_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/scorch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/scorch_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/scorch_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/scorch_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/scorch_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/scorch_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/scorch_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/scorch_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/scorch_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/scorch_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/scorch_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/scorch_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/scorch_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/scorch_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/snow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/snow_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/snow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/snow_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/snow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/snow_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/particle/vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/particle/vine.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/agility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/agility.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/arc.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/banish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/banish.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/blink.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/boulder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/boulder.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/bubble.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/charge.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/cobwebs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/cobwebs.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/dart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/dart.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/decay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/decay.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/decoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/decoy.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/enrage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/enrage.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/evade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/evade.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/fangs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/fangs.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/flight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/flight.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/freeze.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/glide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/glide.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/grapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/grapple.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/heal.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/ice_age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/ice_age.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/iceball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/iceball.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/ignite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/ignite.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/leap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/leap.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/light.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/meteor.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/mine.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/mirage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/mirage.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/muffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/muffle.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/none.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/petrify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/petrify.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/poison.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/rupture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/rupture.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/satiety.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/satiety.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/slime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/slime.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/snare.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/tornado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/tornado.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/ward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/ward.png -------------------------------------------------------------------------------- /src/main/resources/assets/ebwizardry/textures/spells/wither.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Electroblob77/Wizardry/1c1e6d1e00f85012aabe36e1c26fb07b3ee81a69/src/main/resources/assets/ebwizardry/textures/spells/wither.png -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Resources for Electroblob's Wizardry", 4 | "pack_format": 3 5 | } 6 | } 7 | --------------------------------------------------------------------------------