diff --git a/migrate_achievements.py b/migrate_achievements.py new file mode 100644 index 00000000..c3d415b9 --- /dev/null +++ b/migrate_achievements.py @@ -0,0 +1,57 @@ +import os, json, sys + +modid = "ebwizardry" + +here = os.path.dirname(os.path.realpath(__file__)) +source = os.path.join(here, "src", "main", "java", "electroblob", "wizardry", "registry", "WizardryAchievements.java") +dest = os.path.join(here, "src", "main", "resources", "assets", modid, "advancements") + +if not os.path.isfile(source): + print("Can't find input file: ", source) + sys.exit(1) + +if not os.path.isdir(dest): + os.makedirs(dest) + +with open(source, "r") as src: + cheev = "" + for line in src: + if "public static final Achievement " in line: + cheev = "" + cheev = cheev.strip() + line.strip() + if "registerStat" in line: + acname, acdetails = cheev.split("=", 1) + acname = acname.strip().split(" ")[-1] + special = True if "setSpecial" in acdetails else False + acdetails = acdetails.split("(", 1)[1].split(")", 1)[0].split(",") + mod, icon = acdetails[4].strip().split(".") + mod = modid if mod == "WizardryItems" else "minecraft" + icon = mod + ":" + icon.lower() + adv = { + "display": { "icon": { "item": icon } }, + "title": { "translate": "achievement." + acname }, + "description": { "translate": "achievement." + acname + ".desc" }, + "parent": modid + ":" + acdetails[5].strip() if acdetails[5] != "null" else modid + ":root", + "criteria": { + "criteria_0": { + "trigger": modid + ":trigger_" + acname + } + } + } + with open(os.path.join(dest, acname + ".json"), "w") as out: + json.dump(adv, out, indent=4) + + +with open(os.path.join(dest, "root.json"), "w") as root: + content = { + "display": { "icon": { "item": modid + ":wizard_handbook" } }, + "title": { "translate": "itemGroup.wizardry" }, + "show_toast": False, + "announce_to_chat": False, + "criteria": { + "criteria_0": { + "trigger": modid + ":trigger_root" + } + } + } + json.dump(content, root, indent=4) diff --git a/src/main/java/electroblob/wizardry/Wizardry.java b/src/main/java/electroblob/wizardry/Wizardry.java index 6c8aa287..7dccaab6 100644 --- a/src/main/java/electroblob/wizardry/Wizardry.java +++ b/src/main/java/electroblob/wizardry/Wizardry.java @@ -160,6 +160,7 @@ public class Wizardry { // NOTE: Will need to be moved to init for 1.12, as will anything that needs to be after the registry events. WizardryTabs.sort(); + proxy.initGuiBits(); } @@ -172,6 +173,7 @@ public class Wizardry { * '|'; } } // Cuts off the last '|' entityNames = entityNames.substring(0, entityNames.length()-1); * entityNamePattern = Pattern.compile(entityNames); */ proxy.initialiseLayers(); + WizardryTabs.sort(); } @EventHandler diff --git a/src/main/java/electroblob/wizardry/WizardryEventHandler.java b/src/main/java/electroblob/wizardry/WizardryEventHandler.java index 589d3444..700d7752 100644 --- a/src/main/java/electroblob/wizardry/WizardryEventHandler.java +++ b/src/main/java/electroblob/wizardry/WizardryEventHandler.java @@ -85,7 +85,7 @@ public final class WizardryEventHandler { if(Wizardry.settings.generateLoot){ for(String location : LOOT_INJECTION_LOCATIONS){ if(event.getName().toString().matches(location)){ - event.getTable().addPool(getAdditive("wizardry:chests/dungeon_additions")); + event.getTable().addPool(getAdditive("ebwizardry:chests/dungeon_additions")); } } } diff --git a/src/main/java/electroblob/wizardry/client/GuiWizardHandbook.java b/src/main/java/electroblob/wizardry/client/GuiWizardHandbook.java index 7ced1af2..784e6acf 100644 --- a/src/main/java/electroblob/wizardry/client/GuiWizardHandbook.java +++ b/src/main/java/electroblob/wizardry/client/GuiWizardHandbook.java @@ -267,7 +267,7 @@ public class GuiWizardHandbook extends GuiScreen { BufferedReader bufferedreader = null; - String textFilepath = "wizardry:texts/handbook_" + String textFilepath = "ebwizardry:texts/handbook_" + Minecraft.getMinecraft().getLanguageManager().getCurrentLanguage().getLanguageCode() + ".txt"; try{ @@ -281,7 +281,7 @@ public class GuiWizardHandbook extends GuiScreen { Wizardry.logger.info( "Wizard handbook text file missing for the current language. Using default (English - US) instead."); - textFilepath = "wizardry:texts/handbook_en_US.txt"; + textFilepath = "ebwizardry:texts/handbook_en_US.txt"; try { diff --git a/src/main/java/electroblob/wizardry/registry/WizardryRegistry.java b/src/main/java/electroblob/wizardry/registry/WizardryRegistry.java index ba25691c..d0ad1eeb 100644 --- a/src/main/java/electroblob/wizardry/registry/WizardryRegistry.java +++ b/src/main/java/electroblob/wizardry/registry/WizardryRegistry.java @@ -1,83 +1,25 @@ package electroblob.wizardry.registry; -import java.util.List; - -import com.google.common.collect.Lists; - import electroblob.wizardry.Wizardry; import electroblob.wizardry.constants.Element; import electroblob.wizardry.constants.Tier; import electroblob.wizardry.entity.EntityArc; import electroblob.wizardry.entity.EntityMeteor; import electroblob.wizardry.entity.EntityShield; -import electroblob.wizardry.entity.construct.EntityArrowRain; -import electroblob.wizardry.entity.construct.EntityBlackHole; -import electroblob.wizardry.entity.construct.EntityBlizzard; -import electroblob.wizardry.entity.construct.EntityBubble; -import electroblob.wizardry.entity.construct.EntityDecay; -import electroblob.wizardry.entity.construct.EntityEarthquake; -import electroblob.wizardry.entity.construct.EntityFireRing; -import electroblob.wizardry.entity.construct.EntityFireSigil; -import electroblob.wizardry.entity.construct.EntityForcefield; -import electroblob.wizardry.entity.construct.EntityFrostSigil; -import electroblob.wizardry.entity.construct.EntityHailstorm; -import electroblob.wizardry.entity.construct.EntityHammer; -import electroblob.wizardry.entity.construct.EntityHealAura; -import electroblob.wizardry.entity.construct.EntityIceSpike; -import electroblob.wizardry.entity.construct.EntityLightningPulse; -import electroblob.wizardry.entity.construct.EntityLightningSigil; -import electroblob.wizardry.entity.construct.EntityTornado; -import electroblob.wizardry.entity.living.EntityBlazeMinion; -import electroblob.wizardry.entity.living.EntityDecoy; -import electroblob.wizardry.entity.living.EntityEvilWizard; -import electroblob.wizardry.entity.living.EntityIceGiant; -import electroblob.wizardry.entity.living.EntityIceWraith; -import electroblob.wizardry.entity.living.EntityLightningWraith; -import electroblob.wizardry.entity.living.EntityMagicSlime; -import electroblob.wizardry.entity.living.EntityPhoenix; -import electroblob.wizardry.entity.living.EntityShadowWraith; -import electroblob.wizardry.entity.living.EntitySilverfishMinion; -import electroblob.wizardry.entity.living.EntitySkeletonMinion; -import electroblob.wizardry.entity.living.EntitySpiderMinion; -import electroblob.wizardry.entity.living.EntitySpiritHorse; -import electroblob.wizardry.entity.living.EntitySpiritWolf; -import electroblob.wizardry.entity.living.EntityStormElemental; -import electroblob.wizardry.entity.living.EntityWitherSkeletonMinion; -import electroblob.wizardry.entity.living.EntityWizard; -import electroblob.wizardry.entity.living.EntityZombieMinion; -import electroblob.wizardry.entity.projectile.EntityDarknessOrb; -import electroblob.wizardry.entity.projectile.EntityDart; -import electroblob.wizardry.entity.projectile.EntityFirebolt; -import electroblob.wizardry.entity.projectile.EntityFirebomb; -import electroblob.wizardry.entity.projectile.EntityForceArrow; -import electroblob.wizardry.entity.projectile.EntityForceOrb; -import electroblob.wizardry.entity.projectile.EntityIceCharge; -import electroblob.wizardry.entity.projectile.EntityIceLance; -import electroblob.wizardry.entity.projectile.EntityIceShard; -import electroblob.wizardry.entity.projectile.EntityLightningArrow; -import electroblob.wizardry.entity.projectile.EntityLightningDisc; -import electroblob.wizardry.entity.projectile.EntityMagicMissile; -import electroblob.wizardry.entity.projectile.EntityPoisonBomb; -import electroblob.wizardry.entity.projectile.EntitySmokeBomb; -import electroblob.wizardry.entity.projectile.EntitySpark; -import electroblob.wizardry.entity.projectile.EntitySparkBomb; -import electroblob.wizardry.entity.projectile.EntityThunderbolt; +import electroblob.wizardry.entity.construct.*; +import electroblob.wizardry.entity.living.*; +import electroblob.wizardry.entity.projectile.*; import electroblob.wizardry.loot.RandomSpell; import electroblob.wizardry.loot.WizardSpell; -import electroblob.wizardry.tileentity.TileEntityArcaneWorkbench; -import electroblob.wizardry.tileentity.TileEntityMagicLight; -import electroblob.wizardry.tileentity.TileEntityPlayerSave; -import electroblob.wizardry.tileentity.TileEntityStatue; -import electroblob.wizardry.tileentity.TileEntityTimer; +import electroblob.wizardry.tileentity.*; import electroblob.wizardry.util.WizardryUtilities; import net.minecraft.entity.Entity; import net.minecraft.entity.EnumCreatureType; import net.minecraft.init.Biomes; -import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.inventory.EntityEquipmentSlot; import net.minecraft.item.ItemStack; -import net.minecraft.item.crafting.IRecipe; +import net.minecraft.item.crafting.Ingredient; import net.minecraft.util.ResourceLocation; import net.minecraft.world.biome.Biome; import net.minecraft.world.storage.loot.LootTableList; @@ -93,6 +35,9 @@ import net.minecraftforge.oredict.ShapedOreRecipe; import net.minecraftforge.oredict.ShapelessOreRecipe; import net.minecraftforge.registries.IForgeRegistry; +import java.util.ArrayList; +import java.util.List; + /** * Class responsible for registering all the things that don't have (or need) instances: entities, loot tables, recipes, * etc. @@ -263,61 +208,39 @@ public final class WizardryRegistry { ItemStack goldNuggetStack = new ItemStack(Items.GOLD_NUGGET); ItemStack stickStack = new ItemStack(Items.STICK); ItemStack bookStack = new ItemStack(Items.BOOK); - ItemStack stringStack = new ItemStack(Items.STRING); ItemStack spellBookStack = new ItemStack(WizardryItems.spell_book, 1, Spells.magic_missile.id()); - ItemStack arcaneWorkbenchStack = new ItemStack(WizardryBlocks.arcane_workbench); - ItemStack stoneStack = new ItemStack(Blocks.STONE); - ItemStack lapisBlockStack = new ItemStack(Blocks.LAPIS_BLOCK); - ItemStack purpleCarpetStack = new ItemStack(Blocks.CARPET, 1, 10); - ItemStack wizardHandbookStack = new ItemStack(WizardryItems.wizard_handbook); - ItemStack crystalFlowerStack = new ItemStack(WizardryBlocks.crystal_flower); + Ingredient crystalFlowerStack = Ingredient.fromStacks(new ItemStack(WizardryBlocks.crystal_flower)); ItemStack magicCrystalStack1 = new ItemStack(WizardryItems.magic_crystal, 2); ItemStack magicCrystalStack2 = new ItemStack(WizardryItems.magic_crystal, 9); - ItemStack crystalBlockStack = new ItemStack(WizardryBlocks.crystal_block); + Ingredient crystalBlockStack = Ingredient.fromStacks(new ItemStack(WizardryBlocks.crystal_block)); ItemStack manaFlaskStack = new ItemStack(WizardryItems.mana_flask); - ItemStack bottleStack = new ItemStack(Items.GLASS_BOTTLE); - ItemStack gunpowderStack = new ItemStack(Items.GUNPOWDER); - ItemStack blazePowderStack = new ItemStack(Items.BLAZE_POWDER); - ItemStack spiderEyeStack = new ItemStack(Items.SPIDER_EYE); + Ingredient bottleStack = Ingredient.fromStacks(new ItemStack(Items.GLASS_BOTTLE)); + Ingredient gunpowderStack = Ingredient.fromStacks(new ItemStack(Items.GUNPOWDER)); + Ingredient blazePowderStack = Ingredient.fromStacks(new ItemStack(Items.BLAZE_POWDER)); + Ingredient spiderEyeStack = Ingredient.fromStacks(new ItemStack(Items.SPIDER_EYE)); // Coal or charcoal is equally fine, hence the wildcard value - ItemStack coalStack = new ItemStack(Items.COAL, 1, OreDictionary.WILDCARD_VALUE); + Ingredient coalStack = Ingredient.fromStacks(new ItemStack(Items.COAL, 1, OreDictionary.WILDCARD_VALUE)); ItemStack firebombStack = new ItemStack(WizardryItems.firebomb, 3); ItemStack poisonBombStack = new ItemStack(WizardryItems.poison_bomb, 3); ItemStack smokeBombStack = new ItemStack(WizardryItems.smoke_bomb, 3); - ItemStack transportationStoneStack = new ItemStack(WizardryBlocks.transportation_stone, 2); - ItemStack silkStack = new ItemStack(WizardryItems.magic_silk); - ItemStack silkStack1 = new ItemStack(WizardryItems.magic_silk, 2); - ItemStack hatStack = new ItemStack(WizardryItems.wizard_hat); - ItemStack robeStack = new ItemStack(WizardryItems.wizard_robe); - ItemStack leggingsStack = new ItemStack(WizardryItems.wizard_leggings); - ItemStack bootsStack = new ItemStack(WizardryItems.wizard_boots); ItemStack scrollStack = new ItemStack(WizardryItems.blank_scroll); - ItemStack paperStack = new ItemStack(Items.PAPER); + Ingredient paperStack = Ingredient.fromStacks(new ItemStack(Items.PAPER)); + Ingredient stringStack = Ingredient.fromStacks(new ItemStack(Items.STRING)); - registry.register(new ShapedOreRecipe(null, magicWandStack, " x", " y ", "z ", 'x', magicCrystalStack, 'y', stickStack, 'z', goldNuggetStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "magic_wand"))); - registry.register(new ShapedOreRecipe(null, spellBookStack, " x ", "xyx", " x ", 'x', magicCrystalStack, 'y', bookStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "spellbook"))); - registry.register(new ShapedOreRecipe(null, arcaneWorkbenchStack, "vwv", "xyx", "zzz", 'v', goldNuggetStack, 'w', purpleCarpetStack, 'x', magicCrystalStack, 'y', lapisBlockStack, 'z', stoneStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "arcane_workbench"))); - registry.register(new ShapedOreRecipe(null, manaFlaskStack, "yyy", "yxy", "yyy", 'x', bottleStack, 'y', magicCrystalStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "mana_flask"))); - registry.register(new ShapedOreRecipe(null, transportationStoneStack, " x ", "xyx", " x ", 'x', stoneStack, 'y', magicCrystalStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "transportation_stone"))); - registry.register(new ShapedOreRecipe(null, hatStack, "yyy", "y y", 'y', silkStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "hat"))); - registry.register(new ShapedOreRecipe(null, robeStack, "y y", "yyy", "yyy", 'y', silkStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "robe"))); - registry.register(new ShapedOreRecipe(null, leggingsStack, "yyy", "y y", "y y", 'y', silkStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "leggings"))); - registry.register(new ShapedOreRecipe(null, bootsStack, "y y", "y y", 'y', silkStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "boots"))); - registry.register(new ShapedOreRecipe(null, silkStack1, " x ", "xyx", " x ", 'x', stringStack, 'y', magicCrystalStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "silk"))); - registry.register(new ShapedOreRecipe(null, crystalBlockStack, "zzz", "zzz", "zzz", 'z', magicCrystalStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "crystal_block"))); + registry.register(new ShapedOreRecipe(null, magicWandStack, " x", " y ", "z ", 'x', magicCrystalStack, 'y', stickStack, 'z', goldNuggetStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/magic_wand"))); + registry.register(new ShapedOreRecipe(null, spellBookStack, " x ", "xyx", " x ", 'x', magicCrystalStack, 'y', bookStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/spellbook"))); - registry.register(new ShapelessOreRecipe(null, wizardHandbookStack, bookStack, magicCrystalStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "wizard_handbook"))); - registry.register(new ShapelessOreRecipe(null, magicCrystalStack1, crystalFlowerStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "magic_crystal_1"))); - registry.register(new ShapelessOreRecipe(null, magicCrystalStack2, crystalBlockStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "magic_crystal_2"))); + registry.register(new ShapelessOreRecipe(null, magicCrystalStack1, crystalFlowerStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/magic_crystal_1"))); + registry.register(new ShapelessOreRecipe(null, magicCrystalStack2, crystalBlockStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/magic_crystal_2"))); - if(Wizardry.settings.firebombIsCraftable) registry.register(new ShapelessOreRecipe(null, firebombStack, bottleStack, gunpowderStack, blazePowderStack, blazePowderStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "fire_bomb"))); - if(Wizardry.settings.poisonBombIsCraftable) registry.register(new ShapelessOreRecipe(null, poisonBombStack, bottleStack, gunpowderStack, spiderEyeStack, spiderEyeStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "poison_bomb"))); - if(Wizardry.settings.smokeBombIsCraftable) registry.register(new ShapelessOreRecipe(null, smokeBombStack, bottleStack, gunpowderStack, coalStack, coalStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "smoke_bomb"))); + if(Wizardry.settings.firebombIsCraftable) registry.register(new ShapelessOreRecipe(null, firebombStack, bottleStack, gunpowderStack, blazePowderStack, blazePowderStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/fire_bomb"))); + if(Wizardry.settings.poisonBombIsCraftable) registry.register(new ShapelessOreRecipe(null, poisonBombStack, bottleStack, gunpowderStack, spiderEyeStack, spiderEyeStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/poison_bomb"))); + if(Wizardry.settings.smokeBombIsCraftable) registry.register(new ShapelessOreRecipe(null, smokeBombStack, bottleStack, gunpowderStack, coalStack, coalStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/smoke_bomb"))); if(Wizardry.settings.useAlternateScrollRecipe){ - registry.register(new ShapelessOreRecipe(null, scrollStack, paperStack, stringStack, magicCrystalStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "scroll_1"))); + registry.register(new ShapelessOreRecipe(null, scrollStack, paperStack, stringStack, magicCrystalStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/blank_scroll"))); }else{ - registry.register(new ShapelessOreRecipe(null, scrollStack, paperStack, stringStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "scroll_2"))); + registry.register(new ShapelessOreRecipe(null, scrollStack, paperStack, stringStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/blank_scroll"))); } // Mana flask recipes @@ -326,16 +249,17 @@ public final class WizardryRegistry { for(Element element : Element.values()){ for(Tier tier : Tier.values()){ miscWandStack = new ItemStack(WizardryUtilities.getWand(tier, element), 1, OreDictionary.WILDCARD_VALUE); - registry.register(new ShapelessOreRecipe(null, miscWandStack, miscWandStack, manaFlaskStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "misc_wand"))); + registry.register(new ShapelessOreRecipe(null, miscWandStack, miscWandStack, manaFlaskStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/flask_wand_" + element.getUnlocalisedName() + "_" + tier.getUnlocalisedName()))); } } + ItemStack miscArmourStack; for(Element element : Element.values()){ for(EntityEquipmentSlot slot : WizardryUtilities.ARMOUR_SLOTS){ miscArmourStack = new ItemStack(WizardryUtilities.getArmour(element, slot), 1, OreDictionary.WILDCARD_VALUE); - registry.register(new ShapelessOreRecipe(null, miscArmourStack, miscArmourStack, manaFlaskStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "misc_armour"))); + registry.register(new ShapelessOreRecipe(null, miscArmourStack, miscArmourStack, manaFlaskStack).setRegistryName(new ResourceLocation(Wizardry.MODID, "recipes/flask_armour_" + element.getUnlocalisedName() + "_" + slot.getName()))); } } } diff --git a/src/main/java/electroblob/wizardry/registry/WizardryTabs.java b/src/main/java/electroblob/wizardry/registry/WizardryTabs.java index 73486429..b3e46159 100644 --- a/src/main/java/electroblob/wizardry/registry/WizardryTabs.java +++ b/src/main/java/electroblob/wizardry/registry/WizardryTabs.java @@ -104,33 +104,25 @@ public final class WizardryTabs { WizardryItems.wizard_boots_sorcery, WizardryItems.wizard_hat_healing, WizardryItems.wizard_robe_healing, WizardryItems.wizard_leggings_healing, WizardryItems.wizard_boots_healing); - itemSorter = Ordering.explicit(orderedItemList).onResultOf(new Function(){ - @Override - public Item apply(ItemStack input){ - return input.getItem(); - } - }); + itemSorter = Ordering.explicit(orderedItemList).onResultOf(ItemStack::getItem); - spellItemSorter = new Comparator(){ - @Override - public int compare(ItemStack stack1, ItemStack stack2){ + spellItemSorter = (stack1, stack2) -> { - if((stack1.getItem() instanceof ItemSpellBook && stack2.getItem() instanceof ItemSpellBook) - || (stack1.getItem() instanceof ItemScroll && stack2.getItem() instanceof ItemScroll)){ + if((stack1.getItem() instanceof ItemSpellBook && stack2.getItem() instanceof ItemSpellBook) + || (stack1.getItem() instanceof ItemScroll && stack2.getItem() instanceof ItemScroll)){ - Spell spell1 = Spell.get(stack1.getItemDamage()); - Spell spell2 = Spell.get(stack2.getItemDamage()); + Spell spell1 = Spell.get(stack1.getItemDamage()); + Spell spell2 = Spell.get(stack2.getItemDamage()); - return spell1.compareTo(spell2); + return spell1.compareTo(spell2); - }else if(stack1.getItem() instanceof ItemScroll){ - return 1; - }else if(stack2.getItem() instanceof ItemScroll){ - return -1; - } - return 0; - } - }; + }else if(stack1.getItem() instanceof ItemScroll){ + return 1; + }else if(stack2.getItem() instanceof ItemScroll){ + return -1; + } + return 0; + }; } } diff --git a/src/main/resources/assets/wizardry/advancements/all_spells.json b/src/main/resources/assets/ebwizardry/advancements/all_spells.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/all_spells.json rename to src/main/resources/assets/ebwizardry/advancements/all_spells.json diff --git a/src/main/resources/assets/wizardry/advancements/anger_wizard.json b/src/main/resources/assets/ebwizardry/advancements/anger_wizard.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/anger_wizard.json rename to src/main/resources/assets/ebwizardry/advancements/anger_wizard.json diff --git a/src/main/resources/assets/wizardry/advancements/apprentice.json b/src/main/resources/assets/ebwizardry/advancements/apprentice.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/apprentice.json rename to src/main/resources/assets/ebwizardry/advancements/apprentice.json diff --git a/src/main/resources/assets/wizardry/advancements/arcane_initiate.json b/src/main/resources/assets/ebwizardry/advancements/arcane_initiate.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/arcane_initiate.json rename to src/main/resources/assets/ebwizardry/advancements/arcane_initiate.json diff --git a/src/main/resources/assets/wizardry/advancements/armour_set.json b/src/main/resources/assets/ebwizardry/advancements/armour_set.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/armour_set.json rename to src/main/resources/assets/ebwizardry/advancements/armour_set.json diff --git a/src/main/resources/assets/wizardry/advancements/buy_master_spell.json b/src/main/resources/assets/ebwizardry/advancements/buy_master_spell.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/buy_master_spell.json rename to src/main/resources/assets/ebwizardry/advancements/buy_master_spell.json diff --git a/src/main/resources/assets/wizardry/advancements/charge_creeper.json b/src/main/resources/assets/ebwizardry/advancements/charge_creeper.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/charge_creeper.json rename to src/main/resources/assets/ebwizardry/advancements/charge_creeper.json diff --git a/src/main/resources/assets/wizardry/advancements/craft_flask.json b/src/main/resources/assets/ebwizardry/advancements/craft_flask.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/craft_flask.json rename to src/main/resources/assets/ebwizardry/advancements/craft_flask.json diff --git a/src/main/resources/assets/wizardry/advancements/crystal.json b/src/main/resources/assets/ebwizardry/advancements/crystal.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/crystal.json rename to src/main/resources/assets/ebwizardry/advancements/crystal.json diff --git a/src/main/resources/assets/wizardry/advancements/defeat_evil_wizard.json b/src/main/resources/assets/ebwizardry/advancements/defeat_evil_wizard.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/defeat_evil_wizard.json rename to src/main/resources/assets/ebwizardry/advancements/defeat_evil_wizard.json diff --git a/src/main/resources/assets/wizardry/advancements/element_master.json b/src/main/resources/assets/ebwizardry/advancements/element_master.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/element_master.json rename to src/main/resources/assets/ebwizardry/advancements/element_master.json diff --git a/src/main/resources/assets/wizardry/advancements/elemental.json b/src/main/resources/assets/ebwizardry/advancements/elemental.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/elemental.json rename to src/main/resources/assets/ebwizardry/advancements/elemental.json diff --git a/src/main/resources/assets/wizardry/advancements/frankenstein.json b/src/main/resources/assets/ebwizardry/advancements/frankenstein.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/frankenstein.json rename to src/main/resources/assets/ebwizardry/advancements/frankenstein.json diff --git a/src/main/resources/assets/wizardry/advancements/freeze_blaze.json b/src/main/resources/assets/ebwizardry/advancements/freeze_blaze.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/freeze_blaze.json rename to src/main/resources/assets/ebwizardry/advancements/freeze_blaze.json diff --git a/src/main/resources/assets/wizardry/advancements/identify_spell.json b/src/main/resources/assets/ebwizardry/advancements/identify_spell.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/identify_spell.json rename to src/main/resources/assets/ebwizardry/advancements/identify_spell.json diff --git a/src/main/resources/assets/wizardry/advancements/jam_wizard.json b/src/main/resources/assets/ebwizardry/advancements/jam_wizard.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/jam_wizard.json rename to src/main/resources/assets/ebwizardry/advancements/jam_wizard.json diff --git a/src/main/resources/assets/wizardry/advancements/legendary.json b/src/main/resources/assets/ebwizardry/advancements/legendary.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/legendary.json rename to src/main/resources/assets/ebwizardry/advancements/legendary.json diff --git a/src/main/resources/assets/wizardry/advancements/master.json b/src/main/resources/assets/ebwizardry/advancements/master.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/master.json rename to src/main/resources/assets/ebwizardry/advancements/master.json diff --git a/src/main/resources/assets/wizardry/advancements/max_out_wand.json b/src/main/resources/assets/ebwizardry/advancements/max_out_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/max_out_wand.json rename to src/main/resources/assets/ebwizardry/advancements/max_out_wand.json diff --git a/src/main/resources/assets/wizardry/advancements/pig_tornado.json b/src/main/resources/assets/ebwizardry/advancements/pig_tornado.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/pig_tornado.json rename to src/main/resources/assets/ebwizardry/advancements/pig_tornado.json diff --git a/src/main/resources/assets/wizardry/advancements/root.json b/src/main/resources/assets/ebwizardry/advancements/root.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/root.json rename to src/main/resources/assets/ebwizardry/advancements/root.json diff --git a/src/main/resources/assets/wizardry/advancements/self_destruct.json b/src/main/resources/assets/ebwizardry/advancements/self_destruct.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/self_destruct.json rename to src/main/resources/assets/ebwizardry/advancements/self_destruct.json diff --git a/src/main/resources/assets/wizardry/advancements/slime_skeleton.json b/src/main/resources/assets/ebwizardry/advancements/slime_skeleton.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/slime_skeleton.json rename to src/main/resources/assets/ebwizardry/advancements/slime_skeleton.json diff --git a/src/main/resources/assets/wizardry/advancements/special_upgrade.json b/src/main/resources/assets/ebwizardry/advancements/special_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/special_upgrade.json rename to src/main/resources/assets/ebwizardry/advancements/special_upgrade.json diff --git a/src/main/resources/assets/wizardry/advancements/wizard_trade.json b/src/main/resources/assets/ebwizardry/advancements/wizard_trade.json similarity index 100% rename from src/main/resources/assets/wizardry/advancements/wizard_trade.json rename to src/main/resources/assets/ebwizardry/advancements/wizard_trade.json diff --git a/src/main/resources/assets/wizardry/blockstates/arcane_workbench.json b/src/main/resources/assets/ebwizardry/blockstates/arcane_workbench.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/arcane_workbench.json rename to src/main/resources/assets/ebwizardry/blockstates/arcane_workbench.json diff --git a/src/main/resources/assets/wizardry/blockstates/crystal_block.json b/src/main/resources/assets/ebwizardry/blockstates/crystal_block.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/crystal_block.json rename to src/main/resources/assets/ebwizardry/blockstates/crystal_block.json diff --git a/src/main/resources/assets/wizardry/blockstates/crystal_flower.json b/src/main/resources/assets/ebwizardry/blockstates/crystal_flower.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/crystal_flower.json rename to src/main/resources/assets/ebwizardry/blockstates/crystal_flower.json diff --git a/src/main/resources/assets/wizardry/blockstates/crystal_ore.json b/src/main/resources/assets/ebwizardry/blockstates/crystal_ore.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/crystal_ore.json rename to src/main/resources/assets/ebwizardry/blockstates/crystal_ore.json diff --git a/src/main/resources/assets/wizardry/blockstates/ice_statue.json b/src/main/resources/assets/ebwizardry/blockstates/ice_statue.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/ice_statue.json rename to src/main/resources/assets/ebwizardry/blockstates/ice_statue.json diff --git a/src/main/resources/assets/wizardry/blockstates/magic_light.json b/src/main/resources/assets/ebwizardry/blockstates/magic_light.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/magic_light.json rename to src/main/resources/assets/ebwizardry/blockstates/magic_light.json diff --git a/src/main/resources/assets/wizardry/blockstates/meteor.json b/src/main/resources/assets/ebwizardry/blockstates/meteor.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/meteor.json rename to src/main/resources/assets/ebwizardry/blockstates/meteor.json diff --git a/src/main/resources/assets/wizardry/blockstates/petrified_stone.json b/src/main/resources/assets/ebwizardry/blockstates/petrified_stone.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/petrified_stone.json rename to src/main/resources/assets/ebwizardry/blockstates/petrified_stone.json diff --git a/src/main/resources/assets/wizardry/blockstates/snare.json b/src/main/resources/assets/ebwizardry/blockstates/snare.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/snare.json rename to src/main/resources/assets/ebwizardry/blockstates/snare.json diff --git a/src/main/resources/assets/wizardry/blockstates/spectral_block.json b/src/main/resources/assets/ebwizardry/blockstates/spectral_block.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/spectral_block.json rename to src/main/resources/assets/ebwizardry/blockstates/spectral_block.json diff --git a/src/main/resources/assets/wizardry/blockstates/transportation_stone.json b/src/main/resources/assets/ebwizardry/blockstates/transportation_stone.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/transportation_stone.json rename to src/main/resources/assets/ebwizardry/blockstates/transportation_stone.json diff --git a/src/main/resources/assets/wizardry/blockstates/vanishing_cobweb.json b/src/main/resources/assets/ebwizardry/blockstates/vanishing_cobweb.json similarity index 100% rename from src/main/resources/assets/wizardry/blockstates/vanishing_cobweb.json rename to src/main/resources/assets/ebwizardry/blockstates/vanishing_cobweb.json diff --git a/src/main/resources/assets/wizardry/lang/en_gb.lang b/src/main/resources/assets/ebwizardry/lang/en_gb.lang similarity index 100% rename from src/main/resources/assets/wizardry/lang/en_gb.lang rename to src/main/resources/assets/ebwizardry/lang/en_gb.lang diff --git a/src/main/resources/assets/wizardry/lang/en_us.lang b/src/main/resources/assets/ebwizardry/lang/en_us.lang similarity index 100% rename from src/main/resources/assets/wizardry/lang/en_us.lang rename to src/main/resources/assets/ebwizardry/lang/en_us.lang diff --git a/src/main/resources/assets/wizardry/lang/es_es.lang b/src/main/resources/assets/ebwizardry/lang/es_es.lang similarity index 100% rename from src/main/resources/assets/wizardry/lang/es_es.lang rename to src/main/resources/assets/ebwizardry/lang/es_es.lang diff --git a/src/main/resources/assets/wizardry/lang/es_mx.lang b/src/main/resources/assets/ebwizardry/lang/es_mx.lang similarity index 100% rename from src/main/resources/assets/wizardry/lang/es_mx.lang rename to src/main/resources/assets/ebwizardry/lang/es_mx.lang diff --git a/src/main/resources/assets/wizardry/lang/ru_ru.lang b/src/main/resources/assets/ebwizardry/lang/ru_ru.lang similarity index 100% rename from src/main/resources/assets/wizardry/lang/ru_ru.lang rename to src/main/resources/assets/ebwizardry/lang/ru_ru.lang diff --git a/src/main/resources/assets/wizardry/loot_tables/chests/dungeon_additions.json b/src/main/resources/assets/ebwizardry/loot_tables/chests/dungeon_additions.json similarity index 100% rename from src/main/resources/assets/wizardry/loot_tables/chests/dungeon_additions.json rename to src/main/resources/assets/ebwizardry/loot_tables/chests/dungeon_additions.json diff --git a/src/main/resources/assets/wizardry/loot_tables/chests/wizard_tower.json b/src/main/resources/assets/ebwizardry/loot_tables/chests/wizard_tower.json similarity index 100% rename from src/main/resources/assets/wizardry/loot_tables/chests/wizard_tower.json rename to src/main/resources/assets/ebwizardry/loot_tables/chests/wizard_tower.json diff --git a/src/main/resources/assets/wizardry/loot_tables/entities/evil_wizard.json b/src/main/resources/assets/ebwizardry/loot_tables/entities/evil_wizard.json similarity index 100% rename from src/main/resources/assets/wizardry/loot_tables/entities/evil_wizard.json rename to src/main/resources/assets/ebwizardry/loot_tables/entities/evil_wizard.json diff --git a/src/main/resources/assets/wizardry/loot_tables/entities/mob_additions.json b/src/main/resources/assets/ebwizardry/loot_tables/entities/mob_additions.json similarity index 100% rename from src/main/resources/assets/wizardry/loot_tables/entities/mob_additions.json rename to src/main/resources/assets/ebwizardry/loot_tables/entities/mob_additions.json diff --git a/src/main/resources/assets/wizardry/loot_tables/subsets/arcane_tomes.json b/src/main/resources/assets/ebwizardry/loot_tables/subsets/arcane_tomes.json similarity index 100% rename from src/main/resources/assets/wizardry/loot_tables/subsets/arcane_tomes.json rename to src/main/resources/assets/ebwizardry/loot_tables/subsets/arcane_tomes.json diff --git a/src/main/resources/assets/wizardry/loot_tables/subsets/novice_wands.json b/src/main/resources/assets/ebwizardry/loot_tables/subsets/novice_wands.json similarity index 100% rename from src/main/resources/assets/wizardry/loot_tables/subsets/novice_wands.json rename to src/main/resources/assets/ebwizardry/loot_tables/subsets/novice_wands.json diff --git a/src/main/resources/assets/wizardry/loot_tables/subsets/wand_upgrades.json b/src/main/resources/assets/ebwizardry/loot_tables/subsets/wand_upgrades.json similarity index 100% rename from src/main/resources/assets/wizardry/loot_tables/subsets/wand_upgrades.json rename to src/main/resources/assets/ebwizardry/loot_tables/subsets/wand_upgrades.json diff --git a/src/main/resources/assets/wizardry/loot_tables/subsets/wizard_armour.json b/src/main/resources/assets/ebwizardry/loot_tables/subsets/wizard_armour.json similarity index 100% rename from src/main/resources/assets/wizardry/loot_tables/subsets/wizard_armour.json rename to src/main/resources/assets/ebwizardry/loot_tables/subsets/wizard_armour.json diff --git a/src/main/resources/assets/wizardry/models/block/arcane_workbench.json b/src/main/resources/assets/ebwizardry/models/block/arcane_workbench.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/arcane_workbench.json rename to src/main/resources/assets/ebwizardry/models/block/arcane_workbench.json diff --git a/src/main/resources/assets/wizardry/models/block/crystal_block.json b/src/main/resources/assets/ebwizardry/models/block/crystal_block.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/crystal_block.json rename to src/main/resources/assets/ebwizardry/models/block/crystal_block.json diff --git a/src/main/resources/assets/wizardry/models/block/crystal_flower.json b/src/main/resources/assets/ebwizardry/models/block/crystal_flower.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/crystal_flower.json rename to src/main/resources/assets/ebwizardry/models/block/crystal_flower.json diff --git a/src/main/resources/assets/wizardry/models/block/crystal_ore.json b/src/main/resources/assets/ebwizardry/models/block/crystal_ore.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/crystal_ore.json rename to src/main/resources/assets/ebwizardry/models/block/crystal_ore.json diff --git a/src/main/resources/assets/wizardry/models/block/ice_statue.json b/src/main/resources/assets/ebwizardry/models/block/ice_statue.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/ice_statue.json rename to src/main/resources/assets/ebwizardry/models/block/ice_statue.json diff --git a/src/main/resources/assets/wizardry/models/block/magic_light.json b/src/main/resources/assets/ebwizardry/models/block/magic_light.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/magic_light.json rename to src/main/resources/assets/ebwizardry/models/block/magic_light.json diff --git a/src/main/resources/assets/wizardry/models/block/meteor.json b/src/main/resources/assets/ebwizardry/models/block/meteor.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/meteor.json rename to src/main/resources/assets/ebwizardry/models/block/meteor.json diff --git a/src/main/resources/assets/wizardry/models/block/petrified_stone.json b/src/main/resources/assets/ebwizardry/models/block/petrified_stone.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/petrified_stone.json rename to src/main/resources/assets/ebwizardry/models/block/petrified_stone.json diff --git a/src/main/resources/assets/wizardry/models/block/snare.json b/src/main/resources/assets/ebwizardry/models/block/snare.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/snare.json rename to src/main/resources/assets/ebwizardry/models/block/snare.json diff --git a/src/main/resources/assets/wizardry/models/block/spectral_block.json b/src/main/resources/assets/ebwizardry/models/block/spectral_block.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/spectral_block.json rename to src/main/resources/assets/ebwizardry/models/block/spectral_block.json diff --git a/src/main/resources/assets/wizardry/models/block/transportation_stone.json b/src/main/resources/assets/ebwizardry/models/block/transportation_stone.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/transportation_stone.json rename to src/main/resources/assets/ebwizardry/models/block/transportation_stone.json diff --git a/src/main/resources/assets/wizardry/models/block/vanishing_cobweb.json b/src/main/resources/assets/ebwizardry/models/block/vanishing_cobweb.json similarity index 100% rename from src/main/resources/assets/wizardry/models/block/vanishing_cobweb.json rename to src/main/resources/assets/ebwizardry/models/block/vanishing_cobweb.json diff --git a/src/main/resources/assets/wizardry/models/item/advanced_earth_wand.json b/src/main/resources/assets/ebwizardry/models/item/advanced_earth_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/advanced_earth_wand.json rename to src/main/resources/assets/ebwizardry/models/item/advanced_earth_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/advanced_fire_wand.json b/src/main/resources/assets/ebwizardry/models/item/advanced_fire_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/advanced_fire_wand.json rename to src/main/resources/assets/ebwizardry/models/item/advanced_fire_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/advanced_healing_wand.json b/src/main/resources/assets/ebwizardry/models/item/advanced_healing_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/advanced_healing_wand.json rename to src/main/resources/assets/ebwizardry/models/item/advanced_healing_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/advanced_ice_wand.json b/src/main/resources/assets/ebwizardry/models/item/advanced_ice_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/advanced_ice_wand.json rename to src/main/resources/assets/ebwizardry/models/item/advanced_ice_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/advanced_lightning_wand.json b/src/main/resources/assets/ebwizardry/models/item/advanced_lightning_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/advanced_lightning_wand.json rename to src/main/resources/assets/ebwizardry/models/item/advanced_lightning_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/advanced_necromancy_wand.json b/src/main/resources/assets/ebwizardry/models/item/advanced_necromancy_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/advanced_necromancy_wand.json rename to src/main/resources/assets/ebwizardry/models/item/advanced_necromancy_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/advanced_sorcery_wand.json b/src/main/resources/assets/ebwizardry/models/item/advanced_sorcery_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/advanced_sorcery_wand.json rename to src/main/resources/assets/ebwizardry/models/item/advanced_sorcery_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/advanced_wand.json b/src/main/resources/assets/ebwizardry/models/item/advanced_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/advanced_wand.json rename to src/main/resources/assets/ebwizardry/models/item/advanced_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/apprentice_earth_wand.json b/src/main/resources/assets/ebwizardry/models/item/apprentice_earth_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/apprentice_earth_wand.json rename to src/main/resources/assets/ebwizardry/models/item/apprentice_earth_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/apprentice_fire_wand.json b/src/main/resources/assets/ebwizardry/models/item/apprentice_fire_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/apprentice_fire_wand.json rename to src/main/resources/assets/ebwizardry/models/item/apprentice_fire_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/apprentice_healing_wand.json b/src/main/resources/assets/ebwizardry/models/item/apprentice_healing_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/apprentice_healing_wand.json rename to src/main/resources/assets/ebwizardry/models/item/apprentice_healing_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/apprentice_ice_wand.json b/src/main/resources/assets/ebwizardry/models/item/apprentice_ice_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/apprentice_ice_wand.json rename to src/main/resources/assets/ebwizardry/models/item/apprentice_ice_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/apprentice_lightning_wand.json b/src/main/resources/assets/ebwizardry/models/item/apprentice_lightning_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/apprentice_lightning_wand.json rename to src/main/resources/assets/ebwizardry/models/item/apprentice_lightning_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/apprentice_necromancy_wand.json b/src/main/resources/assets/ebwizardry/models/item/apprentice_necromancy_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/apprentice_necromancy_wand.json rename to src/main/resources/assets/ebwizardry/models/item/apprentice_necromancy_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/apprentice_sorcery_wand.json b/src/main/resources/assets/ebwizardry/models/item/apprentice_sorcery_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/apprentice_sorcery_wand.json rename to src/main/resources/assets/ebwizardry/models/item/apprentice_sorcery_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/apprentice_wand.json b/src/main/resources/assets/ebwizardry/models/item/apprentice_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/apprentice_wand.json rename to src/main/resources/assets/ebwizardry/models/item/apprentice_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/arcane_tome.json b/src/main/resources/assets/ebwizardry/models/item/arcane_tome.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/arcane_tome.json rename to src/main/resources/assets/ebwizardry/models/item/arcane_tome.json diff --git a/src/main/resources/assets/wizardry/models/item/arcane_workbench.json b/src/main/resources/assets/ebwizardry/models/item/arcane_workbench.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/arcane_workbench.json rename to src/main/resources/assets/ebwizardry/models/item/arcane_workbench.json diff --git a/src/main/resources/assets/wizardry/models/item/armour_upgrade.json b/src/main/resources/assets/ebwizardry/models/item/armour_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/armour_upgrade.json rename to src/main/resources/assets/ebwizardry/models/item/armour_upgrade.json diff --git a/src/main/resources/assets/wizardry/models/item/attunement_upgrade.json b/src/main/resources/assets/ebwizardry/models/item/attunement_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/attunement_upgrade.json rename to src/main/resources/assets/ebwizardry/models/item/attunement_upgrade.json diff --git a/src/main/resources/assets/wizardry/models/item/basic_earth_wand.json b/src/main/resources/assets/ebwizardry/models/item/basic_earth_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/basic_earth_wand.json rename to src/main/resources/assets/ebwizardry/models/item/basic_earth_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/basic_fire_wand.json b/src/main/resources/assets/ebwizardry/models/item/basic_fire_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/basic_fire_wand.json rename to src/main/resources/assets/ebwizardry/models/item/basic_fire_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/basic_healing_wand.json b/src/main/resources/assets/ebwizardry/models/item/basic_healing_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/basic_healing_wand.json rename to src/main/resources/assets/ebwizardry/models/item/basic_healing_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/basic_ice_wand.json b/src/main/resources/assets/ebwizardry/models/item/basic_ice_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/basic_ice_wand.json rename to src/main/resources/assets/ebwizardry/models/item/basic_ice_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/basic_lightning_wand.json b/src/main/resources/assets/ebwizardry/models/item/basic_lightning_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/basic_lightning_wand.json rename to src/main/resources/assets/ebwizardry/models/item/basic_lightning_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/basic_necromancy_wand.json b/src/main/resources/assets/ebwizardry/models/item/basic_necromancy_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/basic_necromancy_wand.json rename to src/main/resources/assets/ebwizardry/models/item/basic_necromancy_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/basic_sorcery_wand.json b/src/main/resources/assets/ebwizardry/models/item/basic_sorcery_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/basic_sorcery_wand.json rename to src/main/resources/assets/ebwizardry/models/item/basic_sorcery_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/blank_scroll.json b/src/main/resources/assets/ebwizardry/models/item/blank_scroll.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/blank_scroll.json rename to src/main/resources/assets/ebwizardry/models/item/blank_scroll.json diff --git a/src/main/resources/assets/wizardry/models/item/blast_upgrade.json b/src/main/resources/assets/ebwizardry/models/item/blast_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/blast_upgrade.json rename to src/main/resources/assets/ebwizardry/models/item/blast_upgrade.json diff --git a/src/main/resources/assets/wizardry/models/item/condenser_upgrade.json b/src/main/resources/assets/ebwizardry/models/item/condenser_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/condenser_upgrade.json rename to src/main/resources/assets/ebwizardry/models/item/condenser_upgrade.json diff --git a/src/main/resources/assets/wizardry/models/item/cooldown_upgrade.json b/src/main/resources/assets/ebwizardry/models/item/cooldown_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/cooldown_upgrade.json rename to src/main/resources/assets/ebwizardry/models/item/cooldown_upgrade.json diff --git a/src/main/resources/assets/wizardry/models/item/crystal_block.json b/src/main/resources/assets/ebwizardry/models/item/crystal_block.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/crystal_block.json rename to src/main/resources/assets/ebwizardry/models/item/crystal_block.json diff --git a/src/main/resources/assets/wizardry/models/item/crystal_flower.json b/src/main/resources/assets/ebwizardry/models/item/crystal_flower.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/crystal_flower.json rename to src/main/resources/assets/ebwizardry/models/item/crystal_flower.json diff --git a/src/main/resources/assets/wizardry/models/item/crystal_ore.json b/src/main/resources/assets/ebwizardry/models/item/crystal_ore.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/crystal_ore.json rename to src/main/resources/assets/ebwizardry/models/item/crystal_ore.json diff --git a/src/main/resources/assets/wizardry/models/item/duration_upgrade.json b/src/main/resources/assets/ebwizardry/models/item/duration_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/duration_upgrade.json rename to src/main/resources/assets/ebwizardry/models/item/duration_upgrade.json diff --git a/src/main/resources/assets/wizardry/models/item/firebomb.json b/src/main/resources/assets/ebwizardry/models/item/firebomb.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/firebomb.json rename to src/main/resources/assets/ebwizardry/models/item/firebomb.json diff --git a/src/main/resources/assets/wizardry/models/item/flaming_axe.json b/src/main/resources/assets/ebwizardry/models/item/flaming_axe.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/flaming_axe.json rename to src/main/resources/assets/ebwizardry/models/item/flaming_axe.json diff --git a/src/main/resources/assets/wizardry/models/item/frost_axe.json b/src/main/resources/assets/ebwizardry/models/item/frost_axe.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/frost_axe.json rename to src/main/resources/assets/ebwizardry/models/item/frost_axe.json diff --git a/src/main/resources/assets/wizardry/models/item/ice_statue.json b/src/main/resources/assets/ebwizardry/models/item/ice_statue.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/ice_statue.json rename to src/main/resources/assets/ebwizardry/models/item/ice_statue.json diff --git a/src/main/resources/assets/wizardry/models/item/identification_scroll.json b/src/main/resources/assets/ebwizardry/models/item/identification_scroll.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/identification_scroll.json rename to src/main/resources/assets/ebwizardry/models/item/identification_scroll.json diff --git a/src/main/resources/assets/wizardry/models/item/magic_crystal.json b/src/main/resources/assets/ebwizardry/models/item/magic_crystal.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/magic_crystal.json rename to src/main/resources/assets/ebwizardry/models/item/magic_crystal.json diff --git a/src/main/resources/assets/wizardry/models/item/magic_light.json b/src/main/resources/assets/ebwizardry/models/item/magic_light.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/magic_light.json rename to src/main/resources/assets/ebwizardry/models/item/magic_light.json diff --git a/src/main/resources/assets/wizardry/models/item/magic_silk.json b/src/main/resources/assets/ebwizardry/models/item/magic_silk.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/magic_silk.json rename to src/main/resources/assets/ebwizardry/models/item/magic_silk.json diff --git a/src/main/resources/assets/wizardry/models/item/magic_wand.json b/src/main/resources/assets/ebwizardry/models/item/magic_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/magic_wand.json rename to src/main/resources/assets/ebwizardry/models/item/magic_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/mana_flask.json b/src/main/resources/assets/ebwizardry/models/item/mana_flask.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/mana_flask.json rename to src/main/resources/assets/ebwizardry/models/item/mana_flask.json diff --git a/src/main/resources/assets/wizardry/models/item/master_earth_wand.json b/src/main/resources/assets/ebwizardry/models/item/master_earth_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/master_earth_wand.json rename to src/main/resources/assets/ebwizardry/models/item/master_earth_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/master_fire_wand.json b/src/main/resources/assets/ebwizardry/models/item/master_fire_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/master_fire_wand.json rename to src/main/resources/assets/ebwizardry/models/item/master_fire_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/master_healing_wand.json b/src/main/resources/assets/ebwizardry/models/item/master_healing_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/master_healing_wand.json rename to src/main/resources/assets/ebwizardry/models/item/master_healing_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/master_ice_wand.json b/src/main/resources/assets/ebwizardry/models/item/master_ice_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/master_ice_wand.json rename to src/main/resources/assets/ebwizardry/models/item/master_ice_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/master_lightning_wand.json b/src/main/resources/assets/ebwizardry/models/item/master_lightning_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/master_lightning_wand.json rename to src/main/resources/assets/ebwizardry/models/item/master_lightning_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/master_necromancy_wand.json b/src/main/resources/assets/ebwizardry/models/item/master_necromancy_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/master_necromancy_wand.json rename to src/main/resources/assets/ebwizardry/models/item/master_necromancy_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/master_sorcery_wand.json b/src/main/resources/assets/ebwizardry/models/item/master_sorcery_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/master_sorcery_wand.json rename to src/main/resources/assets/ebwizardry/models/item/master_sorcery_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/master_wand.json b/src/main/resources/assets/ebwizardry/models/item/master_wand.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/master_wand.json rename to src/main/resources/assets/ebwizardry/models/item/master_wand.json diff --git a/src/main/resources/assets/wizardry/models/item/meteor.json b/src/main/resources/assets/ebwizardry/models/item/meteor.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/meteor.json rename to src/main/resources/assets/ebwizardry/models/item/meteor.json diff --git a/src/main/resources/assets/wizardry/models/item/petrified_stone.json b/src/main/resources/assets/ebwizardry/models/item/petrified_stone.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/petrified_stone.json rename to src/main/resources/assets/ebwizardry/models/item/petrified_stone.json diff --git a/src/main/resources/assets/wizardry/models/item/poison_bomb.json b/src/main/resources/assets/ebwizardry/models/item/poison_bomb.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/poison_bomb.json rename to src/main/resources/assets/ebwizardry/models/item/poison_bomb.json diff --git a/src/main/resources/assets/wizardry/models/item/range_upgrade.json b/src/main/resources/assets/ebwizardry/models/item/range_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/range_upgrade.json rename to src/main/resources/assets/ebwizardry/models/item/range_upgrade.json diff --git a/src/main/resources/assets/wizardry/models/item/scroll.json b/src/main/resources/assets/ebwizardry/models/item/scroll.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/scroll.json rename to src/main/resources/assets/ebwizardry/models/item/scroll.json diff --git a/src/main/resources/assets/wizardry/models/item/siphon_upgrade.json b/src/main/resources/assets/ebwizardry/models/item/siphon_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/siphon_upgrade.json rename to src/main/resources/assets/ebwizardry/models/item/siphon_upgrade.json diff --git a/src/main/resources/assets/wizardry/models/item/smoke_bomb.json b/src/main/resources/assets/ebwizardry/models/item/smoke_bomb.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/smoke_bomb.json rename to src/main/resources/assets/ebwizardry/models/item/smoke_bomb.json diff --git a/src/main/resources/assets/wizardry/models/item/snare.json b/src/main/resources/assets/ebwizardry/models/item/snare.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/snare.json rename to src/main/resources/assets/ebwizardry/models/item/snare.json diff --git a/src/main/resources/assets/wizardry/models/item/spawn_wizard.json b/src/main/resources/assets/ebwizardry/models/item/spawn_wizard.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spawn_wizard.json rename to src/main/resources/assets/ebwizardry/models/item/spawn_wizard.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_block.json b/src/main/resources/assets/ebwizardry/models/item/spectral_block.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_block.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_block.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_boots.json b/src/main/resources/assets/ebwizardry/models/item/spectral_boots.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_boots.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_boots.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_bow.json b/src/main/resources/assets/ebwizardry/models/item/spectral_bow.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_bow.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_bow.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_bow_pulling_0.json b/src/main/resources/assets/ebwizardry/models/item/spectral_bow_pulling_0.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_bow_pulling_0.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_bow_pulling_0.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_bow_pulling_1.json b/src/main/resources/assets/ebwizardry/models/item/spectral_bow_pulling_1.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_bow_pulling_1.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_bow_pulling_1.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_bow_pulling_2.json b/src/main/resources/assets/ebwizardry/models/item/spectral_bow_pulling_2.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_bow_pulling_2.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_bow_pulling_2.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_chestplate.json b/src/main/resources/assets/ebwizardry/models/item/spectral_chestplate.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_chestplate.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_chestplate.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_helmet.json b/src/main/resources/assets/ebwizardry/models/item/spectral_helmet.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_helmet.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_helmet.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_leggings.json b/src/main/resources/assets/ebwizardry/models/item/spectral_leggings.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_leggings.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_leggings.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_pickaxe.json b/src/main/resources/assets/ebwizardry/models/item/spectral_pickaxe.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_pickaxe.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_pickaxe.json diff --git a/src/main/resources/assets/wizardry/models/item/spectral_sword.json b/src/main/resources/assets/ebwizardry/models/item/spectral_sword.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spectral_sword.json rename to src/main/resources/assets/ebwizardry/models/item/spectral_sword.json diff --git a/src/main/resources/assets/wizardry/models/item/spell_book.json b/src/main/resources/assets/ebwizardry/models/item/spell_book.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/spell_book.json rename to src/main/resources/assets/ebwizardry/models/item/spell_book.json diff --git a/src/main/resources/assets/wizardry/models/item/storage_upgrade.json b/src/main/resources/assets/ebwizardry/models/item/storage_upgrade.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/storage_upgrade.json rename to src/main/resources/assets/ebwizardry/models/item/storage_upgrade.json diff --git a/src/main/resources/assets/wizardry/models/item/transportation_stone.json b/src/main/resources/assets/ebwizardry/models/item/transportation_stone.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/transportation_stone.json rename to src/main/resources/assets/ebwizardry/models/item/transportation_stone.json diff --git a/src/main/resources/assets/wizardry/models/item/vanishing_cobweb.json b/src/main/resources/assets/ebwizardry/models/item/vanishing_cobweb.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/vanishing_cobweb.json rename to src/main/resources/assets/ebwizardry/models/item/vanishing_cobweb.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_boots.json b/src/main/resources/assets/ebwizardry/models/item/wizard_boots.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_boots.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_boots.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_boots_earth.json b/src/main/resources/assets/ebwizardry/models/item/wizard_boots_earth.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_boots_earth.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_boots_earth.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_boots_fire.json b/src/main/resources/assets/ebwizardry/models/item/wizard_boots_fire.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_boots_fire.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_boots_fire.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_boots_healing.json b/src/main/resources/assets/ebwizardry/models/item/wizard_boots_healing.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_boots_healing.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_boots_healing.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_boots_ice.json b/src/main/resources/assets/ebwizardry/models/item/wizard_boots_ice.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_boots_ice.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_boots_ice.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_boots_lightning.json b/src/main/resources/assets/ebwizardry/models/item/wizard_boots_lightning.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_boots_lightning.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_boots_lightning.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_boots_necromancy.json b/src/main/resources/assets/ebwizardry/models/item/wizard_boots_necromancy.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_boots_necromancy.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_boots_necromancy.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_boots_sorcery.json b/src/main/resources/assets/ebwizardry/models/item/wizard_boots_sorcery.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_boots_sorcery.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_boots_sorcery.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_handbook.json b/src/main/resources/assets/ebwizardry/models/item/wizard_handbook.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_handbook.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_handbook.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_hat.json b/src/main/resources/assets/ebwizardry/models/item/wizard_hat.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_hat.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_hat.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_hat_earth.json b/src/main/resources/assets/ebwizardry/models/item/wizard_hat_earth.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_hat_earth.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_hat_earth.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_hat_fire.json b/src/main/resources/assets/ebwizardry/models/item/wizard_hat_fire.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_hat_fire.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_hat_fire.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_hat_healing.json b/src/main/resources/assets/ebwizardry/models/item/wizard_hat_healing.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_hat_healing.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_hat_healing.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_hat_ice.json b/src/main/resources/assets/ebwizardry/models/item/wizard_hat_ice.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_hat_ice.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_hat_ice.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_hat_lightning.json b/src/main/resources/assets/ebwizardry/models/item/wizard_hat_lightning.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_hat_lightning.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_hat_lightning.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_hat_necromancy.json b/src/main/resources/assets/ebwizardry/models/item/wizard_hat_necromancy.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_hat_necromancy.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_hat_necromancy.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_hat_sorcery.json b/src/main/resources/assets/ebwizardry/models/item/wizard_hat_sorcery.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_hat_sorcery.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_hat_sorcery.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_leggings.json b/src/main/resources/assets/ebwizardry/models/item/wizard_leggings.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_leggings.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_leggings.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_leggings_earth.json b/src/main/resources/assets/ebwizardry/models/item/wizard_leggings_earth.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_leggings_earth.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_leggings_earth.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_leggings_fire.json b/src/main/resources/assets/ebwizardry/models/item/wizard_leggings_fire.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_leggings_fire.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_leggings_fire.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_leggings_healing.json b/src/main/resources/assets/ebwizardry/models/item/wizard_leggings_healing.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_leggings_healing.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_leggings_healing.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_leggings_ice.json b/src/main/resources/assets/ebwizardry/models/item/wizard_leggings_ice.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_leggings_ice.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_leggings_ice.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_leggings_lightning.json b/src/main/resources/assets/ebwizardry/models/item/wizard_leggings_lightning.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_leggings_lightning.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_leggings_lightning.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_leggings_necromancy.json b/src/main/resources/assets/ebwizardry/models/item/wizard_leggings_necromancy.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_leggings_necromancy.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_leggings_necromancy.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_leggings_sorcery.json b/src/main/resources/assets/ebwizardry/models/item/wizard_leggings_sorcery.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_leggings_sorcery.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_leggings_sorcery.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_robe.json b/src/main/resources/assets/ebwizardry/models/item/wizard_robe.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_robe.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_robe.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_robe_earth.json b/src/main/resources/assets/ebwizardry/models/item/wizard_robe_earth.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_robe_earth.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_robe_earth.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_robe_fire.json b/src/main/resources/assets/ebwizardry/models/item/wizard_robe_fire.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_robe_fire.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_robe_fire.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_robe_healing.json b/src/main/resources/assets/ebwizardry/models/item/wizard_robe_healing.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_robe_healing.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_robe_healing.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_robe_ice.json b/src/main/resources/assets/ebwizardry/models/item/wizard_robe_ice.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_robe_ice.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_robe_ice.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_robe_lightning.json b/src/main/resources/assets/ebwizardry/models/item/wizard_robe_lightning.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_robe_lightning.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_robe_lightning.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_robe_necromancy.json b/src/main/resources/assets/ebwizardry/models/item/wizard_robe_necromancy.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_robe_necromancy.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_robe_necromancy.json diff --git a/src/main/resources/assets/wizardry/models/item/wizard_robe_sorcery.json b/src/main/resources/assets/ebwizardry/models/item/wizard_robe_sorcery.json similarity index 100% rename from src/main/resources/assets/wizardry/models/item/wizard_robe_sorcery.json rename to src/main/resources/assets/ebwizardry/models/item/wizard_robe_sorcery.json diff --git a/src/main/resources/assets/ebwizardry/recipes/arcane_workbench.json b/src/main/resources/assets/ebwizardry/recipes/arcane_workbench.json new file mode 100644 index 00000000..dfe6e470 --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/arcane_workbench.json @@ -0,0 +1,30 @@ +{ + "type": "forge:ore_shaped", + "pattern": [ + "vwv", + "xyx", + "zzz" + ], + "key": { + "v": { + "item": "minecraft:gold_nugget" + }, + "w": { + "item": "minecraft:carpet", + "meta": 10 + }, + "x": { + "item": "ebwizardry:magic_crystal" + }, + "y": { + "item": "minecraft:lapis_block" + }, + "z": { + "type": "forge:ore_dict", + "ore": "stone" + } + }, + "result": { + "item": "ebwizardry:arcane_workbench" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/crystal_block.json b/src/main/resources/assets/ebwizardry/recipes/crystal_block.json new file mode 100644 index 00000000..e70bb53c --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/crystal_block.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "zzz", + "zzz", + "zzz" + ], + "key": { + "z": { + "item": "ebwizardry:magic_crystal" + } + }, + "result": { + "item": "ebwizardry:crystal_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/magic_crystal.json b/src/main/resources/assets/ebwizardry/recipes/magic_crystal.json new file mode 100644 index 00000000..28effaf4 --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/magic_crystal.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ebwizardry:crystal_block" + } + ], + "result": { + "item": "ebwizardry:magic_crystal", + "amount": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/magic_silk.json b/src/main/resources/assets/ebwizardry/recipes/magic_silk.json new file mode 100644 index 00000000..12fab051 --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/magic_silk.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " x ", + "xyx", + " x " + ], + "key": { + "x": { + "item": "minecraft:string" + }, + "y": { + "item": "ebwizardry:magic_crystal" + } + }, + "result": { + "item": "ebwizardry:magic_silk", + "amount": 2 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/mana_flask.json b/src/main/resources/assets/ebwizardry/recipes/mana_flask.json new file mode 100644 index 00000000..af183c45 --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/mana_flask.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "yyy", + "yxy", + "yyy" + ], + "key": { + "x": { + "item": "minecraft:glass_bottle" + }, + "y": { + "item": "ebwizardry:magic_crystal" + } + }, + "result": { + "item": "ebwizardry:mana_flask" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/transportation_stone.json b/src/main/resources/assets/ebwizardry/recipes/transportation_stone.json new file mode 100644 index 00000000..5a4398fe --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/transportation_stone.json @@ -0,0 +1,21 @@ +{ + "type": "forge:ore_shaped", + "pattern": [ + " x ", + "xyx", + " x " + ], + "key": { + "x": { + "type": "forge:ore_dict", + "ore": "stone" + }, + "y": { + "item": "ebwizardry:magic_crystal" + } + }, + "result": { + "item": "ebwizardry:transportation_stone", + "amount": 2 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/wizard_boots.json b/src/main/resources/assets/ebwizardry/recipes/wizard_boots.json new file mode 100644 index 00000000..d667c96d --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/wizard_boots.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "y y", + "y y" + ], + "key": { + "y": { + "item": "ebwizardry:magic_silk" + } + }, + "result": { + "item": "ebwizardry:wizard_boots" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/wizard_handbook.json b/src/main/resources/assets/ebwizardry/recipes/wizard_handbook.json new file mode 100644 index 00000000..f9bee5da --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/wizard_handbook.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:book" + }, + { + "item": "ebwizardry:magic_crystal" + } + ], + "result": { + "item": "ebwizardry:wizard_handbook" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/wizard_hat.json b/src/main/resources/assets/ebwizardry/recipes/wizard_hat.json new file mode 100644 index 00000000..fcf8dea8 --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/wizard_hat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "yyy", + "y y" + ], + "key": { + "y": { + "item": "ebwizardry:magic_silk" + } + }, + "result": { + "item": "ebwizardry:wizard_hat" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/wizard_leggings.json b/src/main/resources/assets/ebwizardry/recipes/wizard_leggings.json new file mode 100644 index 00000000..f5ce4e2c --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/wizard_leggings.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "yyy", + "y y", + "y y" + ], + "key": { + "y": { + "item": "ebwizardry:magic_silk" + } + }, + "result": { + "item": "ebwizardry:wizard_leggings" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ebwizardry/recipes/wizard_robe.json b/src/main/resources/assets/ebwizardry/recipes/wizard_robe.json new file mode 100644 index 00000000..9ee7039c --- /dev/null +++ b/src/main/resources/assets/ebwizardry/recipes/wizard_robe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "y y", + "yyy", + "yyy" + ], + "key": { + "y": { + "item": "ebwizardry:magic_silk" + } + }, + "result": { + "item": "ebwizardry:wizard_robe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/wizardry/sounds.json b/src/main/resources/assets/ebwizardry/sounds.json similarity index 100% rename from src/main/resources/assets/wizardry/sounds.json rename to src/main/resources/assets/ebwizardry/sounds.json diff --git a/src/main/resources/assets/wizardry/sounds/arc1.ogg b/src/main/resources/assets/ebwizardry/sounds/arc1.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/arc1.ogg rename to src/main/resources/assets/ebwizardry/sounds/arc1.ogg diff --git a/src/main/resources/assets/wizardry/sounds/arc2.ogg b/src/main/resources/assets/ebwizardry/sounds/arc2.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/arc2.ogg rename to src/main/resources/assets/ebwizardry/sounds/arc2.ogg diff --git a/src/main/resources/assets/wizardry/sounds/arc3.ogg b/src/main/resources/assets/ebwizardry/sounds/arc3.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/arc3.ogg rename to src/main/resources/assets/ebwizardry/sounds/arc3.ogg diff --git a/src/main/resources/assets/wizardry/sounds/aura.ogg b/src/main/resources/assets/ebwizardry/sounds/aura.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/aura.ogg rename to src/main/resources/assets/ebwizardry/sounds/aura.ogg diff --git a/src/main/resources/assets/wizardry/sounds/boom.ogg b/src/main/resources/assets/ebwizardry/sounds/boom.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/boom.ogg rename to src/main/resources/assets/ebwizardry/sounds/boom.ogg diff --git a/src/main/resources/assets/wizardry/sounds/crackle.ogg b/src/main/resources/assets/ebwizardry/sounds/crackle.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/crackle.ogg rename to src/main/resources/assets/ebwizardry/sounds/crackle.ogg diff --git a/src/main/resources/assets/wizardry/sounds/darkaura1.ogg b/src/main/resources/assets/ebwizardry/sounds/darkaura1.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/darkaura1.ogg rename to src/main/resources/assets/ebwizardry/sounds/darkaura1.ogg diff --git a/src/main/resources/assets/wizardry/sounds/darkaura2.ogg b/src/main/resources/assets/ebwizardry/sounds/darkaura2.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/darkaura2.ogg rename to src/main/resources/assets/ebwizardry/sounds/darkaura2.ogg diff --git a/src/main/resources/assets/wizardry/sounds/effect1.ogg b/src/main/resources/assets/ebwizardry/sounds/effect1.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/effect1.ogg rename to src/main/resources/assets/ebwizardry/sounds/effect1.ogg diff --git a/src/main/resources/assets/wizardry/sounds/effect2.ogg b/src/main/resources/assets/ebwizardry/sounds/effect2.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/effect2.ogg rename to src/main/resources/assets/ebwizardry/sounds/effect2.ogg diff --git a/src/main/resources/assets/wizardry/sounds/electricitya.ogg b/src/main/resources/assets/ebwizardry/sounds/electricitya.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/electricitya.ogg rename to src/main/resources/assets/ebwizardry/sounds/electricitya.ogg diff --git a/src/main/resources/assets/wizardry/sounds/electricityb.ogg b/src/main/resources/assets/ebwizardry/sounds/electricityb.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/electricityb.ogg rename to src/main/resources/assets/ebwizardry/sounds/electricityb.ogg diff --git a/src/main/resources/assets/wizardry/sounds/flameray1.ogg b/src/main/resources/assets/ebwizardry/sounds/flameray1.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/flameray1.ogg rename to src/main/resources/assets/ebwizardry/sounds/flameray1.ogg diff --git a/src/main/resources/assets/wizardry/sounds/flameray2.ogg b/src/main/resources/assets/ebwizardry/sounds/flameray2.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/flameray2.ogg rename to src/main/resources/assets/ebwizardry/sounds/flameray2.ogg diff --git a/src/main/resources/assets/wizardry/sounds/force.ogg b/src/main/resources/assets/ebwizardry/sounds/force.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/force.ogg rename to src/main/resources/assets/ebwizardry/sounds/force.ogg diff --git a/src/main/resources/assets/wizardry/sounds/freeze.ogg b/src/main/resources/assets/ebwizardry/sounds/freeze.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/freeze.ogg rename to src/main/resources/assets/ebwizardry/sounds/freeze.ogg diff --git a/src/main/resources/assets/wizardry/sounds/frostray.ogg b/src/main/resources/assets/ebwizardry/sounds/frostray.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/frostray.ogg rename to src/main/resources/assets/ebwizardry/sounds/frostray.ogg diff --git a/src/main/resources/assets/wizardry/sounds/heal.ogg b/src/main/resources/assets/ebwizardry/sounds/heal.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/heal.ogg rename to src/main/resources/assets/ebwizardry/sounds/heal.ogg diff --git a/src/main/resources/assets/wizardry/sounds/ice.ogg b/src/main/resources/assets/ebwizardry/sounds/ice.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/ice.ogg rename to src/main/resources/assets/ebwizardry/sounds/ice.ogg diff --git a/src/main/resources/assets/wizardry/sounds/largeaura.ogg b/src/main/resources/assets/ebwizardry/sounds/largeaura.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/largeaura.ogg rename to src/main/resources/assets/ebwizardry/sounds/largeaura.ogg diff --git a/src/main/resources/assets/wizardry/sounds/magic1.ogg b/src/main/resources/assets/ebwizardry/sounds/magic1.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/magic1.ogg rename to src/main/resources/assets/ebwizardry/sounds/magic1.ogg diff --git a/src/main/resources/assets/wizardry/sounds/magic2.ogg b/src/main/resources/assets/ebwizardry/sounds/magic2.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/magic2.ogg rename to src/main/resources/assets/ebwizardry/sounds/magic2.ogg diff --git a/src/main/resources/assets/wizardry/sounds/magic3.ogg b/src/main/resources/assets/ebwizardry/sounds/magic3.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/magic3.ogg rename to src/main/resources/assets/ebwizardry/sounds/magic3.ogg diff --git a/src/main/resources/assets/wizardry/sounds/magic4.ogg b/src/main/resources/assets/ebwizardry/sounds/magic4.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/magic4.ogg rename to src/main/resources/assets/ebwizardry/sounds/magic4.ogg diff --git a/src/main/resources/assets/wizardry/sounds/rumble.ogg b/src/main/resources/assets/ebwizardry/sounds/rumble.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/rumble.ogg rename to src/main/resources/assets/ebwizardry/sounds/rumble.ogg diff --git a/src/main/resources/assets/wizardry/sounds/sparkle.ogg b/src/main/resources/assets/ebwizardry/sounds/sparkle.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/sparkle.ogg rename to src/main/resources/assets/ebwizardry/sounds/sparkle.ogg diff --git a/src/main/resources/assets/wizardry/sounds/wind.ogg b/src/main/resources/assets/ebwizardry/sounds/wind.ogg similarity index 100% rename from src/main/resources/assets/wizardry/sounds/wind.ogg rename to src/main/resources/assets/ebwizardry/sounds/wind.ogg diff --git a/src/main/resources/assets/wizardry/texts/handbook_en_gb.txt b/src/main/resources/assets/ebwizardry/texts/handbook_en_gb.txt similarity index 100% rename from src/main/resources/assets/wizardry/texts/handbook_en_gb.txt rename to src/main/resources/assets/ebwizardry/texts/handbook_en_gb.txt diff --git a/src/main/resources/assets/wizardry/texts/handbook_en_us.txt b/src/main/resources/assets/ebwizardry/texts/handbook_en_us.txt similarity index 100% rename from src/main/resources/assets/wizardry/texts/handbook_en_us.txt rename to src/main/resources/assets/ebwizardry/texts/handbook_en_us.txt diff --git a/src/main/resources/assets/wizardry/texts/handbook_es_es.txt b/src/main/resources/assets/ebwizardry/texts/handbook_es_es.txt similarity index 100% rename from src/main/resources/assets/wizardry/texts/handbook_es_es.txt rename to src/main/resources/assets/ebwizardry/texts/handbook_es_es.txt diff --git a/src/main/resources/assets/wizardry/texts/handbook_es_mx.txt b/src/main/resources/assets/ebwizardry/texts/handbook_es_mx.txt similarity index 100% rename from src/main/resources/assets/wizardry/texts/handbook_es_mx.txt rename to src/main/resources/assets/ebwizardry/texts/handbook_es_mx.txt diff --git a/src/main/resources/assets/wizardry/texts/handbook_ru_ru.txt b/src/main/resources/assets/ebwizardry/texts/handbook_ru_ru.txt similarity index 100% rename from src/main/resources/assets/wizardry/texts/handbook_ru_ru.txt rename to src/main/resources/assets/ebwizardry/texts/handbook_ru_ru.txt diff --git a/src/main/resources/assets/wizardry/textures/armour/invisible_armour.png b/src/main/resources/assets/ebwizardry/textures/armour/invisible_armour.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/invisible_armour.png rename to src/main/resources/assets/ebwizardry/textures/armour/invisible_armour.png diff --git a/src/main/resources/assets/wizardry/textures/armour/spectral_armour.png b/src/main/resources/assets/ebwizardry/textures/armour/spectral_armour.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/spectral_armour.png rename to src/main/resources/assets/ebwizardry/textures/armour/spectral_armour.png diff --git a/src/main/resources/assets/wizardry/textures/armour/spectral_armour_legs.png b/src/main/resources/assets/ebwizardry/textures/armour/spectral_armour_legs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/spectral_armour_legs.png rename to src/main/resources/assets/ebwizardry/textures/armour/spectral_armour_legs.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_earth.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_earth.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_earth.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_earth_legs.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_earth_legs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_earth_legs.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_earth_legs.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_fire.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_fire.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_fire.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_fire_legs.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_fire_legs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_fire_legs.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_fire_legs.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_healing.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_healing.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_healing.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_healing_legs.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_healing_legs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_healing_legs.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_healing_legs.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_ice.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_ice.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_ice.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_ice_legs.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_ice_legs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_ice_legs.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_ice_legs.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_legs.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_legs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_legs.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_legs.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_lightning.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_lightning.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_lightning_legs.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_lightning_legs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_lightning_legs.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_lightning_legs.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_necromancy.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_necromancy_legs.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_necromancy_legs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_necromancy_legs.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_necromancy_legs.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_sorcery.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/armour/wizard_armour_sorcery_legs.png b/src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_sorcery_legs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/armour/wizard_armour_sorcery_legs.png rename to src/main/resources/assets/ebwizardry/textures/armour/wizard_armour_sorcery_legs.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/arcane_workbench_bottom.png b/src/main/resources/assets/ebwizardry/textures/blocks/arcane_workbench_bottom.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/arcane_workbench_bottom.png rename to src/main/resources/assets/ebwizardry/textures/blocks/arcane_workbench_bottom.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/arcane_workbench_side.png b/src/main/resources/assets/ebwizardry/textures/blocks/arcane_workbench_side.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/arcane_workbench_side.png rename to src/main/resources/assets/ebwizardry/textures/blocks/arcane_workbench_side.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/arcane_workbench_top.png b/src/main/resources/assets/ebwizardry/textures/blocks/arcane_workbench_top.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/arcane_workbench_top.png rename to src/main/resources/assets/ebwizardry/textures/blocks/arcane_workbench_top.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/crystal_block.png b/src/main/resources/assets/ebwizardry/textures/blocks/crystal_block.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/crystal_block.png rename to src/main/resources/assets/ebwizardry/textures/blocks/crystal_block.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/crystal_flower.png b/src/main/resources/assets/ebwizardry/textures/blocks/crystal_flower.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/crystal_flower.png rename to src/main/resources/assets/ebwizardry/textures/blocks/crystal_flower.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/crystal_ore.png b/src/main/resources/assets/ebwizardry/textures/blocks/crystal_ore.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/crystal_ore.png rename to src/main/resources/assets/ebwizardry/textures/blocks/crystal_ore.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/meteor.png b/src/main/resources/assets/ebwizardry/textures/blocks/meteor.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/meteor.png rename to src/main/resources/assets/ebwizardry/textures/blocks/meteor.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/snare.png b/src/main/resources/assets/ebwizardry/textures/blocks/snare.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/snare.png rename to src/main/resources/assets/ebwizardry/textures/blocks/snare.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/spectral_block.png b/src/main/resources/assets/ebwizardry/textures/blocks/spectral_block.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/spectral_block.png rename to src/main/resources/assets/ebwizardry/textures/blocks/spectral_block.png diff --git a/src/main/resources/assets/wizardry/textures/blocks/transportation_stone.png b/src/main/resources/assets/ebwizardry/textures/blocks/transportation_stone.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/blocks/transportation_stone.png rename to src/main/resources/assets/ebwizardry/textures/blocks/transportation_stone.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_0.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_0.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_0.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_0.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_1.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_1.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_1.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_1.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_10.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_10.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_10.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_10.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_11.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_11.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_11.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_11.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_12.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_12.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_12.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_12.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_13.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_13.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_13.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_13.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_14.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_14.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_14.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_14.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_15.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_15.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_15.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_15.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_2.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_2.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_2.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_2.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_3.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_3.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_3.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_3.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_4.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_4.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_4.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_4.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_5.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_5.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_5.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_5.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_6.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_6.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_6.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_6.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_7.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_7.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_7.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_7.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_8.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_8.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_8.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_8.png diff --git a/src/main/resources/assets/wizardry/textures/entity/arc_9.png b/src/main/resources/assets/ebwizardry/textures/entity/arc_9.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/arc_9.png rename to src/main/resources/assets/ebwizardry/textures/entity/arc_9.png diff --git a/src/main/resources/assets/wizardry/textures/entity/aura.png b/src/main/resources/assets/ebwizardry/textures/entity/aura.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/aura.png rename to src/main/resources/assets/ebwizardry/textures/entity/aura.png diff --git a/src/main/resources/assets/wizardry/textures/entity/black_hole.png b/src/main/resources/assets/ebwizardry/textures/entity/black_hole.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/black_hole.png rename to src/main/resources/assets/ebwizardry/textures/entity/black_hole.png diff --git a/src/main/resources/assets/wizardry/textures/entity/dark_orb.png b/src/main/resources/assets/ebwizardry/textures/entity/dark_orb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/dark_orb.png rename to src/main/resources/assets/ebwizardry/textures/entity/dark_orb.png diff --git a/src/main/resources/assets/wizardry/textures/entity/dark_ray.png b/src/main/resources/assets/ebwizardry/textures/entity/dark_ray.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/dark_ray.png rename to src/main/resources/assets/ebwizardry/textures/entity/dark_ray.png diff --git a/src/main/resources/assets/wizardry/textures/entity/darkness_orb.png b/src/main/resources/assets/ebwizardry/textures/entity/darkness_orb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/darkness_orb.png rename to src/main/resources/assets/ebwizardry/textures/entity/darkness_orb.png diff --git a/src/main/resources/assets/wizardry/textures/entity/dart.png b/src/main/resources/assets/ebwizardry/textures/entity/dart.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/dart.png rename to src/main/resources/assets/ebwizardry/textures/entity/dart.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_0.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_0.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_0.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_0.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_1.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_1.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_1.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_1.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_2.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_2.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_2.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_2.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_3.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_3.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_3.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_3.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_4.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_4.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_4.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_4.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_5.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_5.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_5.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_5.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_6.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_6.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_6.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_6.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_7.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_7.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_7.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_7.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_8.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_8.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_8.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_8.png diff --git a/src/main/resources/assets/wizardry/textures/entity/decay_9.png b/src/main/resources/assets/ebwizardry/textures/entity/decay_9.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/decay_9.png rename to src/main/resources/assets/ebwizardry/textures/entity/decay_9.png diff --git a/src/main/resources/assets/wizardry/textures/entity/evil_wizard_0.png b/src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_0.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/evil_wizard_0.png rename to src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_0.png diff --git a/src/main/resources/assets/wizardry/textures/entity/evil_wizard_1.png b/src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_1.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/evil_wizard_1.png rename to src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_1.png diff --git a/src/main/resources/assets/wizardry/textures/entity/evil_wizard_2.png b/src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_2.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/evil_wizard_2.png rename to src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_2.png diff --git a/src/main/resources/assets/wizardry/textures/entity/evil_wizard_3.png b/src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_3.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/evil_wizard_3.png rename to src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_3.png diff --git a/src/main/resources/assets/wizardry/textures/entity/evil_wizard_4.png b/src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_4.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/evil_wizard_4.png rename to src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_4.png diff --git a/src/main/resources/assets/wizardry/textures/entity/evil_wizard_5.png b/src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_5.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/evil_wizard_5.png rename to src/main/resources/assets/ebwizardry/textures/entity/evil_wizard_5.png diff --git a/src/main/resources/assets/wizardry/textures/entity/fire_sigil.png b/src/main/resources/assets/ebwizardry/textures/entity/fire_sigil.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/fire_sigil.png rename to src/main/resources/assets/ebwizardry/textures/entity/fire_sigil.png diff --git a/src/main/resources/assets/wizardry/textures/entity/firebolt.png b/src/main/resources/assets/ebwizardry/textures/entity/firebolt.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/firebolt.png rename to src/main/resources/assets/ebwizardry/textures/entity/firebolt.png diff --git a/src/main/resources/assets/wizardry/textures/entity/force_arrow.png b/src/main/resources/assets/ebwizardry/textures/entity/force_arrow.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/force_arrow.png rename to src/main/resources/assets/ebwizardry/textures/entity/force_arrow.png diff --git a/src/main/resources/assets/wizardry/textures/entity/force_orb.png b/src/main/resources/assets/ebwizardry/textures/entity/force_orb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/force_orb.png rename to src/main/resources/assets/ebwizardry/textures/entity/force_orb.png diff --git a/src/main/resources/assets/wizardry/textures/entity/frost_sigil.png b/src/main/resources/assets/ebwizardry/textures/entity/frost_sigil.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/frost_sigil.png rename to src/main/resources/assets/ebwizardry/textures/entity/frost_sigil.png diff --git a/src/main/resources/assets/wizardry/textures/entity/healing_aura.png b/src/main/resources/assets/ebwizardry/textures/entity/healing_aura.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/healing_aura.png rename to src/main/resources/assets/ebwizardry/textures/entity/healing_aura.png diff --git a/src/main/resources/assets/wizardry/textures/entity/ice_charge.png b/src/main/resources/assets/ebwizardry/textures/entity/ice_charge.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/ice_charge.png rename to src/main/resources/assets/ebwizardry/textures/entity/ice_charge.png diff --git a/src/main/resources/assets/wizardry/textures/entity/ice_giant.png b/src/main/resources/assets/ebwizardry/textures/entity/ice_giant.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/ice_giant.png rename to src/main/resources/assets/ebwizardry/textures/entity/ice_giant.png diff --git a/src/main/resources/assets/wizardry/textures/entity/ice_lance.png b/src/main/resources/assets/ebwizardry/textures/entity/ice_lance.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/ice_lance.png rename to src/main/resources/assets/ebwizardry/textures/entity/ice_lance.png diff --git a/src/main/resources/assets/wizardry/textures/entity/ice_shard.png b/src/main/resources/assets/ebwizardry/textures/entity/ice_shard.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/ice_shard.png rename to src/main/resources/assets/ebwizardry/textures/entity/ice_shard.png diff --git a/src/main/resources/assets/wizardry/textures/entity/ice_spike.png b/src/main/resources/assets/ebwizardry/textures/entity/ice_spike.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/ice_spike.png rename to src/main/resources/assets/ebwizardry/textures/entity/ice_spike.png diff --git a/src/main/resources/assets/wizardry/textures/entity/ice_wraith.png b/src/main/resources/assets/ebwizardry/textures/entity/ice_wraith.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/ice_wraith.png rename to src/main/resources/assets/ebwizardry/textures/entity/ice_wraith.png diff --git a/src/main/resources/assets/wizardry/textures/entity/light_aura.png b/src/main/resources/assets/ebwizardry/textures/entity/light_aura.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/light_aura.png rename to src/main/resources/assets/ebwizardry/textures/entity/light_aura.png diff --git a/src/main/resources/assets/wizardry/textures/entity/light_ray.png b/src/main/resources/assets/ebwizardry/textures/entity/light_ray.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/light_ray.png rename to src/main/resources/assets/ebwizardry/textures/entity/light_ray.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_arrow.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_arrow.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_arrow.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_arrow.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_hammer.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_hammer.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_hammer.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_hammer.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_pulse_0.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_0.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_pulse_0.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_0.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_pulse_1.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_1.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_pulse_1.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_1.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_pulse_2.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_2.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_pulse_2.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_2.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_pulse_3.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_3.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_pulse_3.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_3.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_pulse_4.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_4.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_pulse_4.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_4.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_pulse_5.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_5.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_pulse_5.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_5.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_pulse_6.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_6.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_pulse_6.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_6.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_pulse_7.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_7.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_pulse_7.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_pulse_7.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_sigil.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_sigil.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_sigil.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_sigil.png diff --git a/src/main/resources/assets/wizardry/textures/entity/lightning_wraith.png b/src/main/resources/assets/ebwizardry/textures/entity/lightning_wraith.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/lightning_wraith.png rename to src/main/resources/assets/ebwizardry/textures/entity/lightning_wraith.png diff --git a/src/main/resources/assets/wizardry/textures/entity/magic_missile.png b/src/main/resources/assets/ebwizardry/textures/entity/magic_missile.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/magic_missile.png rename to src/main/resources/assets/ebwizardry/textures/entity/magic_missile.png diff --git a/src/main/resources/assets/wizardry/textures/entity/phoenix.png b/src/main/resources/assets/ebwizardry/textures/entity/phoenix.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/phoenix.png rename to src/main/resources/assets/ebwizardry/textures/entity/phoenix.png diff --git a/src/main/resources/assets/wizardry/textures/entity/pointer.png b/src/main/resources/assets/ebwizardry/textures/entity/pointer.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/pointer.png rename to src/main/resources/assets/ebwizardry/textures/entity/pointer.png diff --git a/src/main/resources/assets/wizardry/textures/entity/ring_of_fire.png b/src/main/resources/assets/ebwizardry/textures/entity/ring_of_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/ring_of_fire.png rename to src/main/resources/assets/ebwizardry/textures/entity/ring_of_fire.png diff --git a/src/main/resources/assets/wizardry/textures/entity/rune.png b/src/main/resources/assets/ebwizardry/textures/entity/rune.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/rune.png rename to src/main/resources/assets/ebwizardry/textures/entity/rune.png diff --git a/src/main/resources/assets/wizardry/textures/entity/shadow_ward.png b/src/main/resources/assets/ebwizardry/textures/entity/shadow_ward.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/shadow_ward.png rename to src/main/resources/assets/ebwizardry/textures/entity/shadow_ward.png diff --git a/src/main/resources/assets/wizardry/textures/entity/shield.png b/src/main/resources/assets/ebwizardry/textures/entity/shield.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/shield.png rename to src/main/resources/assets/ebwizardry/textures/entity/shield.png diff --git a/src/main/resources/assets/wizardry/textures/entity/sixth_sense.png b/src/main/resources/assets/ebwizardry/textures/entity/sixth_sense.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/sixth_sense.png rename to src/main/resources/assets/ebwizardry/textures/entity/sixth_sense.png diff --git a/src/main/resources/assets/wizardry/textures/entity/spark.png b/src/main/resources/assets/ebwizardry/textures/entity/spark.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/spark.png rename to src/main/resources/assets/ebwizardry/textures/entity/spark.png diff --git a/src/main/resources/assets/wizardry/textures/entity/spark_bomb.png b/src/main/resources/assets/ebwizardry/textures/entity/spark_bomb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/spark_bomb.png rename to src/main/resources/assets/ebwizardry/textures/entity/spark_bomb.png diff --git a/src/main/resources/assets/wizardry/textures/entity/spirit_horse.png b/src/main/resources/assets/ebwizardry/textures/entity/spirit_horse.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/spirit_horse.png rename to src/main/resources/assets/ebwizardry/textures/entity/spirit_horse.png diff --git a/src/main/resources/assets/wizardry/textures/entity/spirit_wolf.png b/src/main/resources/assets/ebwizardry/textures/entity/spirit_wolf.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/spirit_wolf.png rename to src/main/resources/assets/ebwizardry/textures/entity/spirit_wolf.png diff --git a/src/main/resources/assets/wizardry/textures/entity/stone_statue_32.png b/src/main/resources/assets/ebwizardry/textures/entity/stone_statue_32.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/stone_statue_32.png rename to src/main/resources/assets/ebwizardry/textures/entity/stone_statue_32.png diff --git a/src/main/resources/assets/wizardry/textures/entity/stone_statue_64.png b/src/main/resources/assets/ebwizardry/textures/entity/stone_statue_64.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/stone_statue_64.png rename to src/main/resources/assets/ebwizardry/textures/entity/stone_statue_64.png diff --git a/src/main/resources/assets/wizardry/textures/entity/target_pointer.png b/src/main/resources/assets/ebwizardry/textures/entity/target_pointer.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/target_pointer.png rename to src/main/resources/assets/ebwizardry/textures/entity/target_pointer.png diff --git a/src/main/resources/assets/wizardry/textures/entity/wing.png b/src/main/resources/assets/ebwizardry/textures/entity/wing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/wing.png rename to src/main/resources/assets/ebwizardry/textures/entity/wing.png diff --git a/src/main/resources/assets/wizardry/textures/entity/wizard_0.png b/src/main/resources/assets/ebwizardry/textures/entity/wizard_0.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/wizard_0.png rename to src/main/resources/assets/ebwizardry/textures/entity/wizard_0.png diff --git a/src/main/resources/assets/wizardry/textures/entity/wizard_1.png b/src/main/resources/assets/ebwizardry/textures/entity/wizard_1.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/wizard_1.png rename to src/main/resources/assets/ebwizardry/textures/entity/wizard_1.png diff --git a/src/main/resources/assets/wizardry/textures/entity/wizard_2.png b/src/main/resources/assets/ebwizardry/textures/entity/wizard_2.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/wizard_2.png rename to src/main/resources/assets/ebwizardry/textures/entity/wizard_2.png diff --git a/src/main/resources/assets/wizardry/textures/entity/wizard_3.png b/src/main/resources/assets/ebwizardry/textures/entity/wizard_3.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/wizard_3.png rename to src/main/resources/assets/ebwizardry/textures/entity/wizard_3.png diff --git a/src/main/resources/assets/wizardry/textures/entity/wizard_4.png b/src/main/resources/assets/ebwizardry/textures/entity/wizard_4.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/wizard_4.png rename to src/main/resources/assets/ebwizardry/textures/entity/wizard_4.png diff --git a/src/main/resources/assets/wizardry/textures/entity/wizard_5.png b/src/main/resources/assets/ebwizardry/textures/entity/wizard_5.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/entity/wizard_5.png rename to src/main/resources/assets/ebwizardry/textures/entity/wizard_5.png diff --git a/src/main/resources/assets/wizardry/textures/gui/arcane_workbench.png b/src/main/resources/assets/ebwizardry/textures/gui/arcane_workbench.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/arcane_workbench.png rename to src/main/resources/assets/ebwizardry/textures/gui/arcane_workbench.png diff --git a/src/main/resources/assets/wizardry/textures/gui/decay_icon.png b/src/main/resources/assets/ebwizardry/textures/gui/decay_icon.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/decay_icon.png rename to src/main/resources/assets/ebwizardry/textures/gui/decay_icon.png diff --git a/src/main/resources/assets/wizardry/textures/gui/element_icon_earth.png b/src/main/resources/assets/ebwizardry/textures/gui/element_icon_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/element_icon_earth.png rename to src/main/resources/assets/ebwizardry/textures/gui/element_icon_earth.png diff --git a/src/main/resources/assets/wizardry/textures/gui/element_icon_fire.png b/src/main/resources/assets/ebwizardry/textures/gui/element_icon_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/element_icon_fire.png rename to src/main/resources/assets/ebwizardry/textures/gui/element_icon_fire.png diff --git a/src/main/resources/assets/wizardry/textures/gui/element_icon_healing.png b/src/main/resources/assets/ebwizardry/textures/gui/element_icon_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/element_icon_healing.png rename to src/main/resources/assets/ebwizardry/textures/gui/element_icon_healing.png diff --git a/src/main/resources/assets/wizardry/textures/gui/element_icon_ice.png b/src/main/resources/assets/ebwizardry/textures/gui/element_icon_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/element_icon_ice.png rename to src/main/resources/assets/ebwizardry/textures/gui/element_icon_ice.png diff --git a/src/main/resources/assets/wizardry/textures/gui/element_icon_lightning.png b/src/main/resources/assets/ebwizardry/textures/gui/element_icon_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/element_icon_lightning.png rename to src/main/resources/assets/ebwizardry/textures/gui/element_icon_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/gui/element_icon_necromancy.png b/src/main/resources/assets/ebwizardry/textures/gui/element_icon_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/element_icon_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/gui/element_icon_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/gui/element_icon_simple.png b/src/main/resources/assets/ebwizardry/textures/gui/element_icon_simple.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/element_icon_simple.png rename to src/main/resources/assets/ebwizardry/textures/gui/element_icon_simple.png diff --git a/src/main/resources/assets/wizardry/textures/gui/element_icon_sorcery.png b/src/main/resources/assets/ebwizardry/textures/gui/element_icon_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/element_icon_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/gui/element_icon_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/gui/empty_slot_crystal.png b/src/main/resources/assets/ebwizardry/textures/gui/empty_slot_crystal.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/empty_slot_crystal.png rename to src/main/resources/assets/ebwizardry/textures/gui/empty_slot_crystal.png diff --git a/src/main/resources/assets/wizardry/textures/gui/empty_slot_upgrade.png b/src/main/resources/assets/ebwizardry/textures/gui/empty_slot_upgrade.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/empty_slot_upgrade.png rename to src/main/resources/assets/ebwizardry/textures/gui/empty_slot_upgrade.png diff --git a/src/main/resources/assets/wizardry/textures/gui/frost_icon.png b/src/main/resources/assets/ebwizardry/textures/gui/frost_icon.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/frost_icon.png rename to src/main/resources/assets/ebwizardry/textures/gui/frost_icon.png diff --git a/src/main/resources/assets/wizardry/textures/gui/frost_overlay.png b/src/main/resources/assets/ebwizardry/textures/gui/frost_overlay.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/frost_overlay.png rename to src/main/resources/assets/ebwizardry/textures/gui/frost_overlay.png diff --git a/src/main/resources/assets/wizardry/textures/gui/handbook.png b/src/main/resources/assets/ebwizardry/textures/gui/handbook.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/handbook.png rename to src/main/resources/assets/ebwizardry/textures/gui/handbook.png diff --git a/src/main/resources/assets/wizardry/textures/gui/handbook_recipes.png b/src/main/resources/assets/ebwizardry/textures/gui/handbook_recipes.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/handbook_recipes.png rename to src/main/resources/assets/ebwizardry/textures/gui/handbook_recipes.png diff --git a/src/main/resources/assets/wizardry/textures/gui/logo.png b/src/main/resources/assets/ebwizardry/textures/gui/logo.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/logo.png rename to src/main/resources/assets/ebwizardry/textures/gui/logo.png diff --git a/src/main/resources/assets/wizardry/textures/gui/ore_picture.png b/src/main/resources/assets/ebwizardry/textures/gui/ore_picture.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/ore_picture.png rename to src/main/resources/assets/ebwizardry/textures/gui/ore_picture.png diff --git a/src/main/resources/assets/wizardry/textures/gui/potion_icons.png b/src/main/resources/assets/ebwizardry/textures/gui/potion_icons.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/potion_icons.png rename to src/main/resources/assets/ebwizardry/textures/gui/potion_icons.png diff --git a/src/main/resources/assets/wizardry/textures/gui/sixth_sense_overlay.png b/src/main/resources/assets/ebwizardry/textures/gui/sixth_sense_overlay.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/sixth_sense_overlay.png rename to src/main/resources/assets/ebwizardry/textures/gui/sixth_sense_overlay.png diff --git a/src/main/resources/assets/wizardry/textures/gui/spell_hud.png b/src/main/resources/assets/ebwizardry/textures/gui/spell_hud.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/spell_hud.png rename to src/main/resources/assets/ebwizardry/textures/gui/spell_hud.png diff --git a/src/main/resources/assets/wizardry/textures/gui/spellbook.png b/src/main/resources/assets/ebwizardry/textures/gui/spellbook.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/gui/spellbook.png rename to src/main/resources/assets/ebwizardry/textures/gui/spellbook.png diff --git a/src/main/resources/assets/wizardry/textures/items/arcane_tome.png b/src/main/resources/assets/ebwizardry/textures/items/arcane_tome.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/arcane_tome.png rename to src/main/resources/assets/ebwizardry/textures/items/arcane_tome.png diff --git a/src/main/resources/assets/wizardry/textures/items/armour_upgrade.png b/src/main/resources/assets/ebwizardry/textures/items/armour_upgrade.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/armour_upgrade.png rename to src/main/resources/assets/ebwizardry/textures/items/armour_upgrade.png diff --git a/src/main/resources/assets/wizardry/textures/items/firebomb.png b/src/main/resources/assets/ebwizardry/textures/items/firebomb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/firebomb.png rename to src/main/resources/assets/ebwizardry/textures/items/firebomb.png diff --git a/src/main/resources/assets/wizardry/textures/items/flaming_axe.png b/src/main/resources/assets/ebwizardry/textures/items/flaming_axe.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/flaming_axe.png rename to src/main/resources/assets/ebwizardry/textures/items/flaming_axe.png diff --git a/src/main/resources/assets/wizardry/textures/items/flaming_axe.png.mcmeta b/src/main/resources/assets/ebwizardry/textures/items/flaming_axe.png.mcmeta similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/flaming_axe.png.mcmeta rename to src/main/resources/assets/ebwizardry/textures/items/flaming_axe.png.mcmeta diff --git a/src/main/resources/assets/wizardry/textures/items/frost_axe.png b/src/main/resources/assets/ebwizardry/textures/items/frost_axe.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/frost_axe.png rename to src/main/resources/assets/ebwizardry/textures/items/frost_axe.png diff --git a/src/main/resources/assets/wizardry/textures/items/identification_scroll.png b/src/main/resources/assets/ebwizardry/textures/items/identification_scroll.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/identification_scroll.png rename to src/main/resources/assets/ebwizardry/textures/items/identification_scroll.png diff --git a/src/main/resources/assets/wizardry/textures/items/magic_crystal.png b/src/main/resources/assets/ebwizardry/textures/items/magic_crystal.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/magic_crystal.png rename to src/main/resources/assets/ebwizardry/textures/items/magic_crystal.png diff --git a/src/main/resources/assets/wizardry/textures/items/magic_silk.png b/src/main/resources/assets/ebwizardry/textures/items/magic_silk.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/magic_silk.png rename to src/main/resources/assets/ebwizardry/textures/items/magic_silk.png diff --git a/src/main/resources/assets/wizardry/textures/items/mana_flask.png b/src/main/resources/assets/ebwizardry/textures/items/mana_flask.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/mana_flask.png rename to src/main/resources/assets/ebwizardry/textures/items/mana_flask.png diff --git a/src/main/resources/assets/wizardry/textures/items/poison_bomb.png b/src/main/resources/assets/ebwizardry/textures/items/poison_bomb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/poison_bomb.png rename to src/main/resources/assets/ebwizardry/textures/items/poison_bomb.png diff --git a/src/main/resources/assets/wizardry/textures/items/scroll.png b/src/main/resources/assets/ebwizardry/textures/items/scroll.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/scroll.png rename to src/main/resources/assets/ebwizardry/textures/items/scroll.png diff --git a/src/main/resources/assets/wizardry/textures/items/smoke_bomb.png b/src/main/resources/assets/ebwizardry/textures/items/smoke_bomb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/smoke_bomb.png rename to src/main/resources/assets/ebwizardry/textures/items/smoke_bomb.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_boots.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_boots.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_boots.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_boots.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_bow_pulling_0.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_bow_pulling_0.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_bow_pulling_0.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_bow_pulling_0.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_bow_pulling_1.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_bow_pulling_1.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_bow_pulling_1.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_bow_pulling_1.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_bow_pulling_2.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_bow_pulling_2.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_bow_pulling_2.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_bow_pulling_2.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_bow_standby.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_bow_standby.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_bow_standby.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_bow_standby.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_chestplate.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_chestplate.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_chestplate.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_chestplate.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_helmet.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_helmet.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_helmet.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_helmet.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_leggings.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_leggings.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_leggings.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_leggings.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_pickaxe.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_pickaxe.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_pickaxe.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_pickaxe.png diff --git a/src/main/resources/assets/wizardry/textures/items/spectral_sword.png b/src/main/resources/assets/ebwizardry/textures/items/spectral_sword.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spectral_sword.png rename to src/main/resources/assets/ebwizardry/textures/items/spectral_sword.png diff --git a/src/main/resources/assets/wizardry/textures/items/spell_book.png b/src/main/resources/assets/ebwizardry/textures/items/spell_book.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/spell_book.png rename to src/main/resources/assets/ebwizardry/textures/items/spell_book.png diff --git a/src/main/resources/assets/wizardry/textures/items/transportation_stone.png b/src/main/resources/assets/ebwizardry/textures/items/transportation_stone.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/transportation_stone.png rename to src/main/resources/assets/ebwizardry/textures/items/transportation_stone.png diff --git a/src/main/resources/assets/wizardry/textures/items/upgrade_attunement.png b/src/main/resources/assets/ebwizardry/textures/items/upgrade_attunement.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/upgrade_attunement.png rename to src/main/resources/assets/ebwizardry/textures/items/upgrade_attunement.png diff --git a/src/main/resources/assets/wizardry/textures/items/upgrade_blast.png b/src/main/resources/assets/ebwizardry/textures/items/upgrade_blast.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/upgrade_blast.png rename to src/main/resources/assets/ebwizardry/textures/items/upgrade_blast.png diff --git a/src/main/resources/assets/wizardry/textures/items/upgrade_condenser.png b/src/main/resources/assets/ebwizardry/textures/items/upgrade_condenser.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/upgrade_condenser.png rename to src/main/resources/assets/ebwizardry/textures/items/upgrade_condenser.png diff --git a/src/main/resources/assets/wizardry/textures/items/upgrade_cooldown.png b/src/main/resources/assets/ebwizardry/textures/items/upgrade_cooldown.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/upgrade_cooldown.png rename to src/main/resources/assets/ebwizardry/textures/items/upgrade_cooldown.png diff --git a/src/main/resources/assets/wizardry/textures/items/upgrade_duration.png b/src/main/resources/assets/ebwizardry/textures/items/upgrade_duration.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/upgrade_duration.png rename to src/main/resources/assets/ebwizardry/textures/items/upgrade_duration.png diff --git a/src/main/resources/assets/wizardry/textures/items/upgrade_range.png b/src/main/resources/assets/ebwizardry/textures/items/upgrade_range.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/upgrade_range.png rename to src/main/resources/assets/ebwizardry/textures/items/upgrade_range.png diff --git a/src/main/resources/assets/wizardry/textures/items/upgrade_siphon.png b/src/main/resources/assets/ebwizardry/textures/items/upgrade_siphon.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/upgrade_siphon.png rename to src/main/resources/assets/ebwizardry/textures/items/upgrade_siphon.png diff --git a/src/main/resources/assets/wizardry/textures/items/upgrade_storage.png b/src/main/resources/assets/ebwizardry/textures/items/upgrade_storage.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/upgrade_storage.png rename to src/main/resources/assets/ebwizardry/textures/items/upgrade_storage.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_advanced.png b/src/main/resources/assets/ebwizardry/textures/items/wand_advanced.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_advanced.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_advanced.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_advanced_earth.png b/src/main/resources/assets/ebwizardry/textures/items/wand_advanced_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_advanced_earth.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_advanced_earth.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_advanced_fire.png b/src/main/resources/assets/ebwizardry/textures/items/wand_advanced_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_advanced_fire.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_advanced_fire.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_advanced_healing.png b/src/main/resources/assets/ebwizardry/textures/items/wand_advanced_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_advanced_healing.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_advanced_healing.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_advanced_ice.png b/src/main/resources/assets/ebwizardry/textures/items/wand_advanced_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_advanced_ice.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_advanced_ice.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_advanced_lightning.png b/src/main/resources/assets/ebwizardry/textures/items/wand_advanced_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_advanced_lightning.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_advanced_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_advanced_necromancy.png b/src/main/resources/assets/ebwizardry/textures/items/wand_advanced_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_advanced_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_advanced_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_advanced_sorcery.png b/src/main/resources/assets/ebwizardry/textures/items/wand_advanced_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_advanced_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_advanced_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_apprentice.png b/src/main/resources/assets/ebwizardry/textures/items/wand_apprentice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_apprentice.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_apprentice.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_apprentice_earth.png b/src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_apprentice_earth.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_earth.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_apprentice_fire.png b/src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_apprentice_fire.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_fire.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_apprentice_healing.png b/src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_apprentice_healing.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_healing.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_apprentice_ice.png b/src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_apprentice_ice.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_ice.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_apprentice_lightning.png b/src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_apprentice_lightning.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_apprentice_necromancy.png b/src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_apprentice_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_apprentice_sorcery.png b/src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_apprentice_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_apprentice_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_basic.png b/src/main/resources/assets/ebwizardry/textures/items/wand_basic.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_basic.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_basic.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_basic_earth.png b/src/main/resources/assets/ebwizardry/textures/items/wand_basic_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_basic_earth.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_basic_earth.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_basic_fire.png b/src/main/resources/assets/ebwizardry/textures/items/wand_basic_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_basic_fire.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_basic_fire.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_basic_healing.png b/src/main/resources/assets/ebwizardry/textures/items/wand_basic_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_basic_healing.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_basic_healing.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_basic_ice.png b/src/main/resources/assets/ebwizardry/textures/items/wand_basic_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_basic_ice.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_basic_ice.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_basic_lightning.png b/src/main/resources/assets/ebwizardry/textures/items/wand_basic_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_basic_lightning.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_basic_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_basic_necromancy.png b/src/main/resources/assets/ebwizardry/textures/items/wand_basic_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_basic_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_basic_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_basic_sorcery.png b/src/main/resources/assets/ebwizardry/textures/items/wand_basic_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_basic_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_basic_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_master.png b/src/main/resources/assets/ebwizardry/textures/items/wand_master.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_master.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_master.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_master_earth.png b/src/main/resources/assets/ebwizardry/textures/items/wand_master_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_master_earth.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_master_earth.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_master_fire.png b/src/main/resources/assets/ebwizardry/textures/items/wand_master_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_master_fire.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_master_fire.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_master_healing.png b/src/main/resources/assets/ebwizardry/textures/items/wand_master_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_master_healing.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_master_healing.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_master_ice.png b/src/main/resources/assets/ebwizardry/textures/items/wand_master_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_master_ice.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_master_ice.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_master_lightning.png b/src/main/resources/assets/ebwizardry/textures/items/wand_master_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_master_lightning.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_master_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_master_necromancy.png b/src/main/resources/assets/ebwizardry/textures/items/wand_master_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_master_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_master_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/items/wand_master_sorcery.png b/src/main/resources/assets/ebwizardry/textures/items/wand_master_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wand_master_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/items/wand_master_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_boots.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_boots.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_boots.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_boots.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_boots_earth.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_boots_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_boots_earth.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_boots_earth.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_boots_fire.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_boots_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_boots_fire.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_boots_fire.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_boots_healing.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_boots_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_boots_healing.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_boots_healing.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_boots_ice.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_boots_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_boots_ice.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_boots_ice.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_boots_lightning.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_boots_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_boots_lightning.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_boots_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_boots_necromancy.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_boots_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_boots_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_boots_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_boots_sorcery.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_boots_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_boots_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_boots_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_handbook.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_handbook.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_handbook.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_handbook.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_hat.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_hat.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_hat.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_hat.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_hat_earth.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_hat_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_hat_earth.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_hat_earth.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_hat_fire.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_hat_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_hat_fire.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_hat_fire.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_hat_healing.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_hat_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_hat_healing.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_hat_healing.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_hat_ice.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_hat_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_hat_ice.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_hat_ice.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_hat_lightning.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_hat_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_hat_lightning.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_hat_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_hat_necromancy.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_hat_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_hat_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_hat_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_hat_sorcery.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_hat_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_hat_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_hat_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_leggings.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_leggings.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_leggings.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_leggings.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_leggings_earth.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_leggings_earth.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_earth.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_leggings_fire.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_leggings_fire.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_fire.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_leggings_healing.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_leggings_healing.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_healing.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_leggings_ice.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_leggings_ice.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_ice.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_leggings_lightning.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_leggings_lightning.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_leggings_necromancy.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_leggings_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_leggings_sorcery.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_leggings_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_leggings_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_robe.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_robe.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_robe.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_robe.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_robe_earth.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_robe_earth.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_robe_earth.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_robe_earth.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_robe_fire.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_robe_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_robe_fire.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_robe_fire.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_robe_healing.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_robe_healing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_robe_healing.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_robe_healing.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_robe_ice.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_robe_ice.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_robe_ice.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_robe_ice.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_robe_lightning.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_robe_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_robe_lightning.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_robe_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_robe_necromancy.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_robe_necromancy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_robe_necromancy.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_robe_necromancy.png diff --git a/src/main/resources/assets/wizardry/textures/items/wizard_robe_sorcery.png b/src/main/resources/assets/ebwizardry/textures/items/wizard_robe_sorcery.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/items/wizard_robe_sorcery.png rename to src/main/resources/assets/ebwizardry/textures/items/wizard_robe_sorcery.png diff --git a/src/main/resources/assets/wizardry/textures/particle/ice_particles.png b/src/main/resources/assets/ebwizardry/textures/particle/ice_particles.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/particle/ice_particles.png rename to src/main/resources/assets/ebwizardry/textures/particle/ice_particles.png diff --git a/src/main/resources/assets/wizardry/textures/particle/leaf_particles.png b/src/main/resources/assets/ebwizardry/textures/particle/leaf_particles.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/particle/leaf_particles.png rename to src/main/resources/assets/ebwizardry/textures/particle/leaf_particles.png diff --git a/src/main/resources/assets/wizardry/textures/particle/lightning_particles.png b/src/main/resources/assets/ebwizardry/textures/particle/lightning_particles.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/particle/lightning_particles.png rename to src/main/resources/assets/ebwizardry/textures/particle/lightning_particles.png diff --git a/src/main/resources/assets/wizardry/textures/particle/path_particles.png b/src/main/resources/assets/ebwizardry/textures/particle/path_particles.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/particle/path_particles.png rename to src/main/resources/assets/ebwizardry/textures/particle/path_particles.png diff --git a/src/main/resources/assets/wizardry/textures/particle/snow_particles.png b/src/main/resources/assets/ebwizardry/textures/particle/snow_particles.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/particle/snow_particles.png rename to src/main/resources/assets/ebwizardry/textures/particle/snow_particles.png diff --git a/src/main/resources/assets/wizardry/textures/particle/sparkle_particles.png b/src/main/resources/assets/ebwizardry/textures/particle/sparkle_particles.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/particle/sparkle_particles.png rename to src/main/resources/assets/ebwizardry/textures/particle/sparkle_particles.png diff --git a/src/main/resources/assets/wizardry/textures/spells/agility.png b/src/main/resources/assets/ebwizardry/textures/spells/agility.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/agility.png rename to src/main/resources/assets/ebwizardry/textures/spells/agility.png diff --git a/src/main/resources/assets/wizardry/textures/spells/arc.png b/src/main/resources/assets/ebwizardry/textures/spells/arc.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/arc.png rename to src/main/resources/assets/ebwizardry/textures/spells/arc.png diff --git a/src/main/resources/assets/wizardry/textures/spells/arcane_jammer.png b/src/main/resources/assets/ebwizardry/textures/spells/arcane_jammer.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/arcane_jammer.png rename to src/main/resources/assets/ebwizardry/textures/spells/arcane_jammer.png diff --git a/src/main/resources/assets/wizardry/textures/spells/arrow_rain.png b/src/main/resources/assets/ebwizardry/textures/spells/arrow_rain.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/arrow_rain.png rename to src/main/resources/assets/ebwizardry/textures/spells/arrow_rain.png diff --git a/src/main/resources/assets/wizardry/textures/spells/banish.png b/src/main/resources/assets/ebwizardry/textures/spells/banish.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/banish.png rename to src/main/resources/assets/ebwizardry/textures/spells/banish.png diff --git a/src/main/resources/assets/wizardry/textures/spells/black_hole.png b/src/main/resources/assets/ebwizardry/textures/spells/black_hole.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/black_hole.png rename to src/main/resources/assets/ebwizardry/textures/spells/black_hole.png diff --git a/src/main/resources/assets/wizardry/textures/spells/blink.png b/src/main/resources/assets/ebwizardry/textures/spells/blink.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/blink.png rename to src/main/resources/assets/ebwizardry/textures/spells/blink.png diff --git a/src/main/resources/assets/wizardry/textures/spells/blizzard.png b/src/main/resources/assets/ebwizardry/textures/spells/blizzard.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/blizzard.png rename to src/main/resources/assets/ebwizardry/textures/spells/blizzard.png diff --git a/src/main/resources/assets/wizardry/textures/spells/bubble.png b/src/main/resources/assets/ebwizardry/textures/spells/bubble.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/bubble.png rename to src/main/resources/assets/ebwizardry/textures/spells/bubble.png diff --git a/src/main/resources/assets/wizardry/textures/spells/chain_lightning.png b/src/main/resources/assets/ebwizardry/textures/spells/chain_lightning.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/chain_lightning.png rename to src/main/resources/assets/ebwizardry/textures/spells/chain_lightning.png diff --git a/src/main/resources/assets/wizardry/textures/spells/clairvoyance.png b/src/main/resources/assets/ebwizardry/textures/spells/clairvoyance.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/clairvoyance.png rename to src/main/resources/assets/ebwizardry/textures/spells/clairvoyance.png diff --git a/src/main/resources/assets/wizardry/textures/spells/cobwebs.png b/src/main/resources/assets/ebwizardry/textures/spells/cobwebs.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/cobwebs.png rename to src/main/resources/assets/ebwizardry/textures/spells/cobwebs.png diff --git a/src/main/resources/assets/wizardry/textures/spells/conjure_armour.png b/src/main/resources/assets/ebwizardry/textures/spells/conjure_armour.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/conjure_armour.png rename to src/main/resources/assets/ebwizardry/textures/spells/conjure_armour.png diff --git a/src/main/resources/assets/wizardry/textures/spells/conjure_bow.png b/src/main/resources/assets/ebwizardry/textures/spells/conjure_bow.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/conjure_bow.png rename to src/main/resources/assets/ebwizardry/textures/spells/conjure_bow.png diff --git a/src/main/resources/assets/wizardry/textures/spells/conjure_pickaxe.png b/src/main/resources/assets/ebwizardry/textures/spells/conjure_pickaxe.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/conjure_pickaxe.png rename to src/main/resources/assets/ebwizardry/textures/spells/conjure_pickaxe.png diff --git a/src/main/resources/assets/wizardry/textures/spells/conjure_sword.png b/src/main/resources/assets/ebwizardry/textures/spells/conjure_sword.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/conjure_sword.png rename to src/main/resources/assets/ebwizardry/textures/spells/conjure_sword.png diff --git a/src/main/resources/assets/wizardry/textures/spells/cure_effects.png b/src/main/resources/assets/ebwizardry/textures/spells/cure_effects.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/cure_effects.png rename to src/main/resources/assets/ebwizardry/textures/spells/cure_effects.png diff --git a/src/main/resources/assets/wizardry/textures/spells/curse_of_soulbinding.png b/src/main/resources/assets/ebwizardry/textures/spells/curse_of_soulbinding.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/curse_of_soulbinding.png rename to src/main/resources/assets/ebwizardry/textures/spells/curse_of_soulbinding.png diff --git a/src/main/resources/assets/wizardry/textures/spells/darkness_orb.png b/src/main/resources/assets/ebwizardry/textures/spells/darkness_orb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/darkness_orb.png rename to src/main/resources/assets/ebwizardry/textures/spells/darkness_orb.png diff --git a/src/main/resources/assets/wizardry/textures/spells/darkvision.png b/src/main/resources/assets/ebwizardry/textures/spells/darkvision.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/darkvision.png rename to src/main/resources/assets/ebwizardry/textures/spells/darkvision.png diff --git a/src/main/resources/assets/wizardry/textures/spells/dart.png b/src/main/resources/assets/ebwizardry/textures/spells/dart.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/dart.png rename to src/main/resources/assets/ebwizardry/textures/spells/dart.png diff --git a/src/main/resources/assets/wizardry/textures/spells/decay.png b/src/main/resources/assets/ebwizardry/textures/spells/decay.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/decay.png rename to src/main/resources/assets/ebwizardry/textures/spells/decay.png diff --git a/src/main/resources/assets/wizardry/textures/spells/decoy.png b/src/main/resources/assets/ebwizardry/textures/spells/decoy.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/decoy.png rename to src/main/resources/assets/ebwizardry/textures/spells/decoy.png diff --git a/src/main/resources/assets/wizardry/textures/spells/detonate.png b/src/main/resources/assets/ebwizardry/textures/spells/detonate.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/detonate.png rename to src/main/resources/assets/ebwizardry/textures/spells/detonate.png diff --git a/src/main/resources/assets/wizardry/textures/spells/diamondflesh.png b/src/main/resources/assets/ebwizardry/textures/spells/diamondflesh.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/diamondflesh.png rename to src/main/resources/assets/ebwizardry/textures/spells/diamondflesh.png diff --git a/src/main/resources/assets/wizardry/textures/spells/earthquake.png b/src/main/resources/assets/ebwizardry/textures/spells/earthquake.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/earthquake.png rename to src/main/resources/assets/ebwizardry/textures/spells/earthquake.png diff --git a/src/main/resources/assets/wizardry/textures/spells/entrapment.png b/src/main/resources/assets/ebwizardry/textures/spells/entrapment.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/entrapment.png rename to src/main/resources/assets/ebwizardry/textures/spells/entrapment.png diff --git a/src/main/resources/assets/wizardry/textures/spells/fire_resistance.png b/src/main/resources/assets/ebwizardry/textures/spells/fire_resistance.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/fire_resistance.png rename to src/main/resources/assets/ebwizardry/textures/spells/fire_resistance.png diff --git a/src/main/resources/assets/wizardry/textures/spells/fire_sigil.png b/src/main/resources/assets/ebwizardry/textures/spells/fire_sigil.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/fire_sigil.png rename to src/main/resources/assets/ebwizardry/textures/spells/fire_sigil.png diff --git a/src/main/resources/assets/wizardry/textures/spells/fireball.png b/src/main/resources/assets/ebwizardry/textures/spells/fireball.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/fireball.png rename to src/main/resources/assets/ebwizardry/textures/spells/fireball.png diff --git a/src/main/resources/assets/wizardry/textures/spells/firebolt.png b/src/main/resources/assets/ebwizardry/textures/spells/firebolt.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/firebolt.png rename to src/main/resources/assets/ebwizardry/textures/spells/firebolt.png diff --git a/src/main/resources/assets/wizardry/textures/spells/firebomb.png b/src/main/resources/assets/ebwizardry/textures/spells/firebomb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/firebomb.png rename to src/main/resources/assets/ebwizardry/textures/spells/firebomb.png diff --git a/src/main/resources/assets/wizardry/textures/spells/fireskin.png b/src/main/resources/assets/ebwizardry/textures/spells/fireskin.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/fireskin.png rename to src/main/resources/assets/ebwizardry/textures/spells/fireskin.png diff --git a/src/main/resources/assets/wizardry/textures/spells/firestorm.png b/src/main/resources/assets/ebwizardry/textures/spells/firestorm.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/firestorm.png rename to src/main/resources/assets/ebwizardry/textures/spells/firestorm.png diff --git a/src/main/resources/assets/wizardry/textures/spells/flame_ray.png b/src/main/resources/assets/ebwizardry/textures/spells/flame_ray.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/flame_ray.png rename to src/main/resources/assets/ebwizardry/textures/spells/flame_ray.png diff --git a/src/main/resources/assets/wizardry/textures/spells/flaming_axe.png b/src/main/resources/assets/ebwizardry/textures/spells/flaming_axe.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/flaming_axe.png rename to src/main/resources/assets/ebwizardry/textures/spells/flaming_axe.png diff --git a/src/main/resources/assets/wizardry/textures/spells/flaming_weapon.png b/src/main/resources/assets/ebwizardry/textures/spells/flaming_weapon.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/flaming_weapon.png rename to src/main/resources/assets/ebwizardry/textures/spells/flaming_weapon.png diff --git a/src/main/resources/assets/wizardry/textures/spells/flight.png b/src/main/resources/assets/ebwizardry/textures/spells/flight.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/flight.png rename to src/main/resources/assets/ebwizardry/textures/spells/flight.png diff --git a/src/main/resources/assets/wizardry/textures/spells/font_of_mana.png b/src/main/resources/assets/ebwizardry/textures/spells/font_of_mana.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/font_of_mana.png rename to src/main/resources/assets/ebwizardry/textures/spells/font_of_mana.png diff --git a/src/main/resources/assets/wizardry/textures/spells/font_of_vitality.png b/src/main/resources/assets/ebwizardry/textures/spells/font_of_vitality.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/font_of_vitality.png rename to src/main/resources/assets/ebwizardry/textures/spells/font_of_vitality.png diff --git a/src/main/resources/assets/wizardry/textures/spells/force_arrow.png b/src/main/resources/assets/ebwizardry/textures/spells/force_arrow.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/force_arrow.png rename to src/main/resources/assets/ebwizardry/textures/spells/force_arrow.png diff --git a/src/main/resources/assets/wizardry/textures/spells/force_orb.png b/src/main/resources/assets/ebwizardry/textures/spells/force_orb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/force_orb.png rename to src/main/resources/assets/ebwizardry/textures/spells/force_orb.png diff --git a/src/main/resources/assets/wizardry/textures/spells/forcefield.png b/src/main/resources/assets/ebwizardry/textures/spells/forcefield.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/forcefield.png rename to src/main/resources/assets/ebwizardry/textures/spells/forcefield.png diff --git a/src/main/resources/assets/wizardry/textures/spells/forests_curse.png b/src/main/resources/assets/ebwizardry/textures/spells/forests_curse.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/forests_curse.png rename to src/main/resources/assets/ebwizardry/textures/spells/forests_curse.png diff --git a/src/main/resources/assets/wizardry/textures/spells/freeze.png b/src/main/resources/assets/ebwizardry/textures/spells/freeze.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/freeze.png rename to src/main/resources/assets/ebwizardry/textures/spells/freeze.png diff --git a/src/main/resources/assets/wizardry/textures/spells/freezing_weapon.png b/src/main/resources/assets/ebwizardry/textures/spells/freezing_weapon.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/freezing_weapon.png rename to src/main/resources/assets/ebwizardry/textures/spells/freezing_weapon.png diff --git a/src/main/resources/assets/wizardry/textures/spells/frost_axe.png b/src/main/resources/assets/ebwizardry/textures/spells/frost_axe.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/frost_axe.png rename to src/main/resources/assets/ebwizardry/textures/spells/frost_axe.png diff --git a/src/main/resources/assets/wizardry/textures/spells/frost_ray.png b/src/main/resources/assets/ebwizardry/textures/spells/frost_ray.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/frost_ray.png rename to src/main/resources/assets/ebwizardry/textures/spells/frost_ray.png diff --git a/src/main/resources/assets/wizardry/textures/spells/frost_sigil.png b/src/main/resources/assets/ebwizardry/textures/spells/frost_sigil.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/frost_sigil.png rename to src/main/resources/assets/ebwizardry/textures/spells/frost_sigil.png diff --git a/src/main/resources/assets/wizardry/textures/spells/glide.png b/src/main/resources/assets/ebwizardry/textures/spells/glide.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/glide.png rename to src/main/resources/assets/ebwizardry/textures/spells/glide.png diff --git a/src/main/resources/assets/wizardry/textures/spells/greater_fireball.png b/src/main/resources/assets/ebwizardry/textures/spells/greater_fireball.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/greater_fireball.png rename to src/main/resources/assets/ebwizardry/textures/spells/greater_fireball.png diff --git a/src/main/resources/assets/wizardry/textures/spells/greater_heal.png b/src/main/resources/assets/ebwizardry/textures/spells/greater_heal.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/greater_heal.png rename to src/main/resources/assets/ebwizardry/textures/spells/greater_heal.png diff --git a/src/main/resources/assets/wizardry/textures/spells/group_heal.png b/src/main/resources/assets/ebwizardry/textures/spells/group_heal.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/group_heal.png rename to src/main/resources/assets/ebwizardry/textures/spells/group_heal.png diff --git a/src/main/resources/assets/wizardry/textures/spells/growth_aura.png b/src/main/resources/assets/ebwizardry/textures/spells/growth_aura.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/growth_aura.png rename to src/main/resources/assets/ebwizardry/textures/spells/growth_aura.png diff --git a/src/main/resources/assets/wizardry/textures/spells/hailstorm.png b/src/main/resources/assets/ebwizardry/textures/spells/hailstorm.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/hailstorm.png rename to src/main/resources/assets/ebwizardry/textures/spells/hailstorm.png diff --git a/src/main/resources/assets/wizardry/textures/spells/heal.png b/src/main/resources/assets/ebwizardry/textures/spells/heal.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/heal.png rename to src/main/resources/assets/ebwizardry/textures/spells/heal.png diff --git a/src/main/resources/assets/wizardry/textures/spells/heal_ally.png b/src/main/resources/assets/ebwizardry/textures/spells/heal_ally.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/heal_ally.png rename to src/main/resources/assets/ebwizardry/textures/spells/heal_ally.png diff --git a/src/main/resources/assets/wizardry/textures/spells/healing_aura.png b/src/main/resources/assets/ebwizardry/textures/spells/healing_aura.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/healing_aura.png rename to src/main/resources/assets/ebwizardry/textures/spells/healing_aura.png diff --git a/src/main/resources/assets/wizardry/textures/spells/homing_spark.png b/src/main/resources/assets/ebwizardry/textures/spells/homing_spark.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/homing_spark.png rename to src/main/resources/assets/ebwizardry/textures/spells/homing_spark.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ice_age.png b/src/main/resources/assets/ebwizardry/textures/spells/ice_age.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ice_age.png rename to src/main/resources/assets/ebwizardry/textures/spells/ice_age.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ice_charge.png b/src/main/resources/assets/ebwizardry/textures/spells/ice_charge.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ice_charge.png rename to src/main/resources/assets/ebwizardry/textures/spells/ice_charge.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ice_lance.png b/src/main/resources/assets/ebwizardry/textures/spells/ice_lance.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ice_lance.png rename to src/main/resources/assets/ebwizardry/textures/spells/ice_lance.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ice_shard.png b/src/main/resources/assets/ebwizardry/textures/spells/ice_shard.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ice_shard.png rename to src/main/resources/assets/ebwizardry/textures/spells/ice_shard.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ice_shroud.png b/src/main/resources/assets/ebwizardry/textures/spells/ice_shroud.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ice_shroud.png rename to src/main/resources/assets/ebwizardry/textures/spells/ice_shroud.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ice_spikes.png b/src/main/resources/assets/ebwizardry/textures/spells/ice_spikes.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ice_spikes.png rename to src/main/resources/assets/ebwizardry/textures/spells/ice_spikes.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ice_statue.png b/src/main/resources/assets/ebwizardry/textures/spells/ice_statue.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ice_statue.png rename to src/main/resources/assets/ebwizardry/textures/spells/ice_statue.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ignite.png b/src/main/resources/assets/ebwizardry/textures/spells/ignite.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ignite.png rename to src/main/resources/assets/ebwizardry/textures/spells/ignite.png diff --git a/src/main/resources/assets/wizardry/textures/spells/imbue_weapon.png b/src/main/resources/assets/ebwizardry/textures/spells/imbue_weapon.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/imbue_weapon.png rename to src/main/resources/assets/ebwizardry/textures/spells/imbue_weapon.png diff --git a/src/main/resources/assets/wizardry/textures/spells/intimidate.png b/src/main/resources/assets/ebwizardry/textures/spells/intimidate.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/intimidate.png rename to src/main/resources/assets/ebwizardry/textures/spells/intimidate.png diff --git a/src/main/resources/assets/wizardry/textures/spells/invigorating_presence.png b/src/main/resources/assets/ebwizardry/textures/spells/invigorating_presence.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/invigorating_presence.png rename to src/main/resources/assets/ebwizardry/textures/spells/invigorating_presence.png diff --git a/src/main/resources/assets/wizardry/textures/spells/invisibility.png b/src/main/resources/assets/ebwizardry/textures/spells/invisibility.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/invisibility.png rename to src/main/resources/assets/ebwizardry/textures/spells/invisibility.png diff --git a/src/main/resources/assets/wizardry/textures/spells/invoke_weather.png b/src/main/resources/assets/ebwizardry/textures/spells/invoke_weather.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/invoke_weather.png rename to src/main/resources/assets/ebwizardry/textures/spells/invoke_weather.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ironflesh.png b/src/main/resources/assets/ebwizardry/textures/spells/ironflesh.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ironflesh.png rename to src/main/resources/assets/ebwizardry/textures/spells/ironflesh.png diff --git a/src/main/resources/assets/wizardry/textures/spells/leap.png b/src/main/resources/assets/ebwizardry/textures/spells/leap.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/leap.png rename to src/main/resources/assets/ebwizardry/textures/spells/leap.png diff --git a/src/main/resources/assets/wizardry/textures/spells/levitation.png b/src/main/resources/assets/ebwizardry/textures/spells/levitation.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/levitation.png rename to src/main/resources/assets/ebwizardry/textures/spells/levitation.png diff --git a/src/main/resources/assets/wizardry/textures/spells/life_drain.png b/src/main/resources/assets/ebwizardry/textures/spells/life_drain.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/life_drain.png rename to src/main/resources/assets/ebwizardry/textures/spells/life_drain.png diff --git a/src/main/resources/assets/wizardry/textures/spells/light.png b/src/main/resources/assets/ebwizardry/textures/spells/light.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/light.png rename to src/main/resources/assets/ebwizardry/textures/spells/light.png diff --git a/src/main/resources/assets/wizardry/textures/spells/lightning_arrow.png b/src/main/resources/assets/ebwizardry/textures/spells/lightning_arrow.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/lightning_arrow.png rename to src/main/resources/assets/ebwizardry/textures/spells/lightning_arrow.png diff --git a/src/main/resources/assets/wizardry/textures/spells/lightning_bolt.png b/src/main/resources/assets/ebwizardry/textures/spells/lightning_bolt.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/lightning_bolt.png rename to src/main/resources/assets/ebwizardry/textures/spells/lightning_bolt.png diff --git a/src/main/resources/assets/wizardry/textures/spells/lightning_disc.png b/src/main/resources/assets/ebwizardry/textures/spells/lightning_disc.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/lightning_disc.png rename to src/main/resources/assets/ebwizardry/textures/spells/lightning_disc.png diff --git a/src/main/resources/assets/wizardry/textures/spells/lightning_hammer.png b/src/main/resources/assets/ebwizardry/textures/spells/lightning_hammer.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/lightning_hammer.png rename to src/main/resources/assets/ebwizardry/textures/spells/lightning_hammer.png diff --git a/src/main/resources/assets/wizardry/textures/spells/lightning_pulse.png b/src/main/resources/assets/ebwizardry/textures/spells/lightning_pulse.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/lightning_pulse.png rename to src/main/resources/assets/ebwizardry/textures/spells/lightning_pulse.png diff --git a/src/main/resources/assets/wizardry/textures/spells/lightning_ray.png b/src/main/resources/assets/ebwizardry/textures/spells/lightning_ray.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/lightning_ray.png rename to src/main/resources/assets/ebwizardry/textures/spells/lightning_ray.png diff --git a/src/main/resources/assets/wizardry/textures/spells/lightning_sigil.png b/src/main/resources/assets/ebwizardry/textures/spells/lightning_sigil.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/lightning_sigil.png rename to src/main/resources/assets/ebwizardry/textures/spells/lightning_sigil.png diff --git a/src/main/resources/assets/wizardry/textures/spells/lightning_web.png b/src/main/resources/assets/ebwizardry/textures/spells/lightning_web.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/lightning_web.png rename to src/main/resources/assets/ebwizardry/textures/spells/lightning_web.png diff --git a/src/main/resources/assets/wizardry/textures/spells/magic_missile.png b/src/main/resources/assets/ebwizardry/textures/spells/magic_missile.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/magic_missile.png rename to src/main/resources/assets/ebwizardry/textures/spells/magic_missile.png diff --git a/src/main/resources/assets/wizardry/textures/spells/metamorphosis.png b/src/main/resources/assets/ebwizardry/textures/spells/metamorphosis.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/metamorphosis.png rename to src/main/resources/assets/ebwizardry/textures/spells/metamorphosis.png diff --git a/src/main/resources/assets/wizardry/textures/spells/meteor.png b/src/main/resources/assets/ebwizardry/textures/spells/meteor.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/meteor.png rename to src/main/resources/assets/ebwizardry/textures/spells/meteor.png diff --git a/src/main/resources/assets/wizardry/textures/spells/mind_control.png b/src/main/resources/assets/ebwizardry/textures/spells/mind_control.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/mind_control.png rename to src/main/resources/assets/ebwizardry/textures/spells/mind_control.png diff --git a/src/main/resources/assets/wizardry/textures/spells/mind_trick.png b/src/main/resources/assets/ebwizardry/textures/spells/mind_trick.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/mind_trick.png rename to src/main/resources/assets/ebwizardry/textures/spells/mind_trick.png diff --git a/src/main/resources/assets/wizardry/textures/spells/none.png b/src/main/resources/assets/ebwizardry/textures/spells/none.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/none.png rename to src/main/resources/assets/ebwizardry/textures/spells/none.png diff --git a/src/main/resources/assets/wizardry/textures/spells/oakflesh.png b/src/main/resources/assets/ebwizardry/textures/spells/oakflesh.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/oakflesh.png rename to src/main/resources/assets/ebwizardry/textures/spells/oakflesh.png diff --git a/src/main/resources/assets/wizardry/textures/spells/petrify.png b/src/main/resources/assets/ebwizardry/textures/spells/petrify.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/petrify.png rename to src/main/resources/assets/ebwizardry/textures/spells/petrify.png diff --git a/src/main/resources/assets/wizardry/textures/spells/phase_step.png b/src/main/resources/assets/ebwizardry/textures/spells/phase_step.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/phase_step.png rename to src/main/resources/assets/ebwizardry/textures/spells/phase_step.png diff --git a/src/main/resources/assets/wizardry/textures/spells/plague_of_darkness.png b/src/main/resources/assets/ebwizardry/textures/spells/plague_of_darkness.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/plague_of_darkness.png rename to src/main/resources/assets/ebwizardry/textures/spells/plague_of_darkness.png diff --git a/src/main/resources/assets/wizardry/textures/spells/pocket_furnace.png b/src/main/resources/assets/ebwizardry/textures/spells/pocket_furnace.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/pocket_furnace.png rename to src/main/resources/assets/ebwizardry/textures/spells/pocket_furnace.png diff --git a/src/main/resources/assets/wizardry/textures/spells/pocket_workbench.png b/src/main/resources/assets/ebwizardry/textures/spells/pocket_workbench.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/pocket_workbench.png rename to src/main/resources/assets/ebwizardry/textures/spells/pocket_workbench.png diff --git a/src/main/resources/assets/wizardry/textures/spells/poison.png b/src/main/resources/assets/ebwizardry/textures/spells/poison.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/poison.png rename to src/main/resources/assets/ebwizardry/textures/spells/poison.png diff --git a/src/main/resources/assets/wizardry/textures/spells/poison_bomb.png b/src/main/resources/assets/ebwizardry/textures/spells/poison_bomb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/poison_bomb.png rename to src/main/resources/assets/ebwizardry/textures/spells/poison_bomb.png diff --git a/src/main/resources/assets/wizardry/textures/spells/replenish_hunger.png b/src/main/resources/assets/ebwizardry/textures/spells/replenish_hunger.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/replenish_hunger.png rename to src/main/resources/assets/ebwizardry/textures/spells/replenish_hunger.png diff --git a/src/main/resources/assets/wizardry/textures/spells/ring_of_fire.png b/src/main/resources/assets/ebwizardry/textures/spells/ring_of_fire.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/ring_of_fire.png rename to src/main/resources/assets/ebwizardry/textures/spells/ring_of_fire.png diff --git a/src/main/resources/assets/wizardry/textures/spells/shadow_ward.png b/src/main/resources/assets/ebwizardry/textures/spells/shadow_ward.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/shadow_ward.png rename to src/main/resources/assets/ebwizardry/textures/spells/shadow_ward.png diff --git a/src/main/resources/assets/wizardry/textures/spells/shield.png b/src/main/resources/assets/ebwizardry/textures/spells/shield.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/shield.png rename to src/main/resources/assets/ebwizardry/textures/spells/shield.png diff --git a/src/main/resources/assets/wizardry/textures/spells/shockwave.png b/src/main/resources/assets/ebwizardry/textures/spells/shockwave.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/shockwave.png rename to src/main/resources/assets/ebwizardry/textures/spells/shockwave.png diff --git a/src/main/resources/assets/wizardry/textures/spells/silverfish_swarm.png b/src/main/resources/assets/ebwizardry/textures/spells/silverfish_swarm.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/silverfish_swarm.png rename to src/main/resources/assets/ebwizardry/textures/spells/silverfish_swarm.png diff --git a/src/main/resources/assets/wizardry/textures/spells/sixth_sense.png b/src/main/resources/assets/ebwizardry/textures/spells/sixth_sense.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/sixth_sense.png rename to src/main/resources/assets/ebwizardry/textures/spells/sixth_sense.png diff --git a/src/main/resources/assets/wizardry/textures/spells/slime.png b/src/main/resources/assets/ebwizardry/textures/spells/slime.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/slime.png rename to src/main/resources/assets/ebwizardry/textures/spells/slime.png diff --git a/src/main/resources/assets/wizardry/textures/spells/smoke_bomb.png b/src/main/resources/assets/ebwizardry/textures/spells/smoke_bomb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/smoke_bomb.png rename to src/main/resources/assets/ebwizardry/textures/spells/smoke_bomb.png diff --git a/src/main/resources/assets/wizardry/textures/spells/snare.png b/src/main/resources/assets/ebwizardry/textures/spells/snare.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/snare.png rename to src/main/resources/assets/ebwizardry/textures/spells/snare.png diff --git a/src/main/resources/assets/wizardry/textures/spells/snowball.png b/src/main/resources/assets/ebwizardry/textures/spells/snowball.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/snowball.png rename to src/main/resources/assets/ebwizardry/textures/spells/snowball.png diff --git a/src/main/resources/assets/wizardry/textures/spells/spark_bomb.png b/src/main/resources/assets/ebwizardry/textures/spells/spark_bomb.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/spark_bomb.png rename to src/main/resources/assets/ebwizardry/textures/spells/spark_bomb.png diff --git a/src/main/resources/assets/wizardry/textures/spells/spectral_pathway.png b/src/main/resources/assets/ebwizardry/textures/spells/spectral_pathway.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/spectral_pathway.png rename to src/main/resources/assets/ebwizardry/textures/spells/spectral_pathway.png diff --git a/src/main/resources/assets/wizardry/textures/spells/spider_swarm.png b/src/main/resources/assets/ebwizardry/textures/spells/spider_swarm.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/spider_swarm.png rename to src/main/resources/assets/ebwizardry/textures/spells/spider_swarm.png diff --git a/src/main/resources/assets/wizardry/textures/spells/static_aura.png b/src/main/resources/assets/ebwizardry/textures/spells/static_aura.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/static_aura.png rename to src/main/resources/assets/ebwizardry/textures/spells/static_aura.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_blaze.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_blaze.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_blaze.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_blaze.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_ice_giant.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_ice_giant.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_ice_giant.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_ice_giant.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_ice_wraith.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_ice_wraith.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_ice_wraith.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_ice_wraith.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_iron_golem.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_iron_golem.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_iron_golem.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_iron_golem.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_lightning_wraith.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_lightning_wraith.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_lightning_wraith.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_lightning_wraith.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_phoenix.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_phoenix.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_phoenix.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_phoenix.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_shadow_wraith.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_shadow_wraith.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_shadow_wraith.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_shadow_wraith.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_skeleton.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_skeleton.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_skeleton.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_skeleton.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_skeleton_legion.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_skeleton_legion.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_skeleton_legion.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_skeleton_legion.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_snow_golem.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_snow_golem.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_snow_golem.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_snow_golem.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_spirit_horse.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_spirit_horse.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_spirit_horse.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_spirit_horse.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_spirit_wolf.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_spirit_wolf.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_spirit_wolf.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_spirit_wolf.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_storm_elemental.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_storm_elemental.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_storm_elemental.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_storm_elemental.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_wither_skeleton.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_wither_skeleton.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_wither_skeleton.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_wither_skeleton.png diff --git a/src/main/resources/assets/wizardry/textures/spells/summon_zombie.png b/src/main/resources/assets/ebwizardry/textures/spells/summon_zombie.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/summon_zombie.png rename to src/main/resources/assets/ebwizardry/textures/spells/summon_zombie.png diff --git a/src/main/resources/assets/wizardry/textures/spells/telekinesis.png b/src/main/resources/assets/ebwizardry/textures/spells/telekinesis.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/telekinesis.png rename to src/main/resources/assets/ebwizardry/textures/spells/telekinesis.png diff --git a/src/main/resources/assets/wizardry/textures/spells/thunderbolt.png b/src/main/resources/assets/ebwizardry/textures/spells/thunderbolt.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/thunderbolt.png rename to src/main/resources/assets/ebwizardry/textures/spells/thunderbolt.png diff --git a/src/main/resources/assets/wizardry/textures/spells/thunderstorm.png b/src/main/resources/assets/ebwizardry/textures/spells/thunderstorm.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/thunderstorm.png rename to src/main/resources/assets/ebwizardry/textures/spells/thunderstorm.png diff --git a/src/main/resources/assets/wizardry/textures/spells/tornado.png b/src/main/resources/assets/ebwizardry/textures/spells/tornado.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/tornado.png rename to src/main/resources/assets/ebwizardry/textures/spells/tornado.png diff --git a/src/main/resources/assets/wizardry/textures/spells/transience.png b/src/main/resources/assets/ebwizardry/textures/spells/transience.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/transience.png rename to src/main/resources/assets/ebwizardry/textures/spells/transience.png diff --git a/src/main/resources/assets/wizardry/textures/spells/transportation.png b/src/main/resources/assets/ebwizardry/textures/spells/transportation.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/transportation.png rename to src/main/resources/assets/ebwizardry/textures/spells/transportation.png diff --git a/src/main/resources/assets/wizardry/textures/spells/vanishing_box.png b/src/main/resources/assets/ebwizardry/textures/spells/vanishing_box.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/vanishing_box.png rename to src/main/resources/assets/ebwizardry/textures/spells/vanishing_box.png diff --git a/src/main/resources/assets/wizardry/textures/spells/wall_of_frost.png b/src/main/resources/assets/ebwizardry/textures/spells/wall_of_frost.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/wall_of_frost.png rename to src/main/resources/assets/ebwizardry/textures/spells/wall_of_frost.png diff --git a/src/main/resources/assets/wizardry/textures/spells/water_breathing.png b/src/main/resources/assets/ebwizardry/textures/spells/water_breathing.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/water_breathing.png rename to src/main/resources/assets/ebwizardry/textures/spells/water_breathing.png diff --git a/src/main/resources/assets/wizardry/textures/spells/whirlwind.png b/src/main/resources/assets/ebwizardry/textures/spells/whirlwind.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/whirlwind.png rename to src/main/resources/assets/ebwizardry/textures/spells/whirlwind.png diff --git a/src/main/resources/assets/wizardry/textures/spells/wither.png b/src/main/resources/assets/ebwizardry/textures/spells/wither.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/wither.png rename to src/main/resources/assets/ebwizardry/textures/spells/wither.png diff --git a/src/main/resources/assets/wizardry/textures/spells/wither_skull.png b/src/main/resources/assets/ebwizardry/textures/spells/wither_skull.png similarity index 100% rename from src/main/resources/assets/wizardry/textures/spells/wither_skull.png rename to src/main/resources/assets/ebwizardry/textures/spells/wither_skull.png