├── .github ├── title.png └── workflows │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── common ├── build.gradle └── src │ └── main │ ├── generated │ ├── assets │ │ └── wizards │ │ │ └── sounds.json │ └── data │ │ ├── minecraft │ │ └── tags │ │ │ └── item │ │ │ ├── chest_armor.json │ │ │ ├── foot_armor.json │ │ │ ├── head_armor.json │ │ │ └── leg_armor.json │ │ ├── rpg_series │ │ └── tags │ │ │ └── item │ │ │ ├── armor_type │ │ │ └── magic.json │ │ │ ├── loot_theme │ │ │ └── aether.json │ │ │ ├── loot_tier │ │ │ ├── tier_0_weapons.json │ │ │ ├── tier_1_armors.json │ │ │ ├── tier_1_weapons.json │ │ │ ├── tier_2_armors.json │ │ │ ├── tier_2_weapons.json │ │ │ ├── tier_3_armors.json │ │ │ ├── tier_3_weapons.json │ │ │ └── tier_4_weapons.json │ │ │ └── weapon_type │ │ │ ├── damage_staff.json │ │ │ └── damage_wand.json │ │ └── wizards │ │ ├── advancement │ │ └── recipes │ │ │ ├── combat │ │ │ ├── arcane_robe_chest.json │ │ │ ├── arcane_robe_feet.json │ │ │ ├── arcane_robe_head.json │ │ │ ├── arcane_robe_legs.json │ │ │ ├── fire_robe_chest.json │ │ │ ├── fire_robe_feet.json │ │ │ ├── fire_robe_head.json │ │ │ ├── fire_robe_legs.json │ │ │ ├── frost_robe_chest.json │ │ │ ├── frost_robe_feet.json │ │ │ ├── frost_robe_head.json │ │ │ ├── frost_robe_legs.json │ │ │ ├── netherite_arcane_robe_chest_smithing.json │ │ │ ├── netherite_arcane_robe_feet_smithing.json │ │ │ ├── netherite_arcane_robe_head_smithing.json │ │ │ ├── netherite_arcane_robe_legs_smithing.json │ │ │ ├── netherite_fire_robe_chest_smithing.json │ │ │ ├── netherite_fire_robe_feet_smithing.json │ │ │ ├── netherite_fire_robe_head_smithing.json │ │ │ ├── netherite_fire_robe_legs_smithing.json │ │ │ ├── netherite_frost_robe_chest_smithing.json │ │ │ ├── netherite_frost_robe_feet_smithing.json │ │ │ ├── netherite_frost_robe_head_smithing.json │ │ │ ├── netherite_frost_robe_legs_smithing.json │ │ │ ├── staff_arcane.json │ │ │ ├── staff_fire.json │ │ │ ├── staff_frost.json │ │ │ ├── staff_netherite_arcane_smithing.json │ │ │ ├── staff_netherite_fire_smithing.json │ │ │ ├── staff_netherite_frost_smithing.json │ │ │ ├── staff_wizard.json │ │ │ ├── wand_arcane.json │ │ │ ├── wand_fire.json │ │ │ ├── wand_frost.json │ │ │ ├── wand_netherite_arcane_smithing.json │ │ │ ├── wand_netherite_fire_smithing.json │ │ │ ├── wand_netherite_frost_smithing.json │ │ │ ├── wand_novice.json │ │ │ ├── wizard_robe_chest.json │ │ │ ├── wizard_robe_feet.json │ │ │ ├── wizard_robe_head.json │ │ │ └── wizard_robe_legs.json │ │ │ └── misc │ │ │ ├── amethyst_shard_from_blasting_staff_arcane.json │ │ │ ├── amethyst_shard_from_smelting_staff_arcane.json │ │ │ ├── blaze_powder_from_blasting_fire_robe_chest.json │ │ │ ├── blaze_powder_from_blasting_fire_robe_feet.json │ │ │ ├── blaze_powder_from_blasting_fire_robe_head.json │ │ │ ├── blaze_powder_from_blasting_fire_robe_legs.json │ │ │ ├── blaze_powder_from_blasting_staff_fire.json │ │ │ ├── blaze_powder_from_smelting_fire_robe_chest.json │ │ │ ├── blaze_powder_from_smelting_fire_robe_feet.json │ │ │ ├── blaze_powder_from_smelting_fire_robe_head.json │ │ │ ├── blaze_powder_from_smelting_fire_robe_legs.json │ │ │ ├── blaze_powder_from_smelting_staff_fire.json │ │ │ ├── ender_pearl_from_blasting_arcane_robe_chest.json │ │ │ ├── ender_pearl_from_blasting_arcane_robe_feet.json │ │ │ ├── ender_pearl_from_blasting_arcane_robe_head.json │ │ │ ├── ender_pearl_from_blasting_arcane_robe_legs.json │ │ │ ├── ender_pearl_from_smelting_arcane_robe_chest.json │ │ │ ├── ender_pearl_from_smelting_arcane_robe_feet.json │ │ │ ├── ender_pearl_from_smelting_arcane_robe_head.json │ │ │ ├── ender_pearl_from_smelting_arcane_robe_legs.json │ │ │ ├── gold_nugget_from_blasting_wand_arcane.json │ │ │ ├── gold_nugget_from_blasting_wand_fire.json │ │ │ ├── gold_nugget_from_smelting_wand_arcane.json │ │ │ ├── gold_nugget_from_smelting_wand_fire.json │ │ │ ├── iron_nugget_from_blasting_wand_frost.json │ │ │ ├── iron_nugget_from_smelting_wand_frost.json │ │ │ ├── lapis_lazuli_from_blasting_wizard_robe_chest.json │ │ │ ├── lapis_lazuli_from_blasting_wizard_robe_feet.json │ │ │ ├── lapis_lazuli_from_blasting_wizard_robe_head.json │ │ │ ├── lapis_lazuli_from_blasting_wizard_robe_legs.json │ │ │ ├── lapis_lazuli_from_smelting_wizard_robe_chest.json │ │ │ ├── lapis_lazuli_from_smelting_wizard_robe_feet.json │ │ │ ├── lapis_lazuli_from_smelting_wizard_robe_head.json │ │ │ ├── lapis_lazuli_from_smelting_wizard_robe_legs.json │ │ │ ├── netherite_scrap_from_blasting_netherite_arcane_robe_chest.json │ │ │ ├── netherite_scrap_from_blasting_netherite_arcane_robe_feet.json │ │ │ ├── netherite_scrap_from_blasting_netherite_arcane_robe_head.json │ │ │ ├── netherite_scrap_from_blasting_netherite_arcane_robe_legs.json │ │ │ ├── netherite_scrap_from_blasting_netherite_fire_robe_chest.json │ │ │ ├── netherite_scrap_from_blasting_netherite_fire_robe_feet.json │ │ │ ├── netherite_scrap_from_blasting_netherite_fire_robe_head.json │ │ │ ├── netherite_scrap_from_blasting_netherite_fire_robe_legs.json │ │ │ ├── netherite_scrap_from_blasting_netherite_frost_robe_chest.json │ │ │ ├── netherite_scrap_from_blasting_netherite_frost_robe_feet.json │ │ │ ├── netherite_scrap_from_blasting_netherite_frost_robe_head.json │ │ │ ├── netherite_scrap_from_blasting_netherite_frost_robe_legs.json │ │ │ ├── netherite_scrap_from_blasting_staff_netherite_arcane.json │ │ │ ├── netherite_scrap_from_blasting_staff_netherite_fire.json │ │ │ ├── netherite_scrap_from_blasting_staff_netherite_frost.json │ │ │ ├── netherite_scrap_from_blasting_wand_netherite_arcane.json │ │ │ ├── netherite_scrap_from_blasting_wand_netherite_fire.json │ │ │ ├── netherite_scrap_from_blasting_wand_netherite_frost.json │ │ │ ├── netherite_scrap_from_smelting_netherite_arcane_robe_chest.json │ │ │ ├── netherite_scrap_from_smelting_netherite_arcane_robe_feet.json │ │ │ ├── netherite_scrap_from_smelting_netherite_arcane_robe_head.json │ │ │ ├── netherite_scrap_from_smelting_netherite_arcane_robe_legs.json │ │ │ ├── netherite_scrap_from_smelting_netherite_fire_robe_chest.json │ │ │ ├── netherite_scrap_from_smelting_netherite_fire_robe_feet.json │ │ │ ├── netherite_scrap_from_smelting_netherite_fire_robe_head.json │ │ │ ├── netherite_scrap_from_smelting_netherite_fire_robe_legs.json │ │ │ ├── netherite_scrap_from_smelting_netherite_frost_robe_chest.json │ │ │ ├── netherite_scrap_from_smelting_netherite_frost_robe_feet.json │ │ │ ├── netherite_scrap_from_smelting_netherite_frost_robe_head.json │ │ │ ├── netherite_scrap_from_smelting_netherite_frost_robe_legs.json │ │ │ ├── netherite_scrap_from_smelting_staff_netherite_arcane.json │ │ │ ├── netherite_scrap_from_smelting_staff_netherite_fire.json │ │ │ ├── netherite_scrap_from_smelting_staff_netherite_frost.json │ │ │ ├── netherite_scrap_from_smelting_wand_netherite_arcane.json │ │ │ ├── netherite_scrap_from_smelting_wand_netherite_fire.json │ │ │ ├── netherite_scrap_from_smelting_wand_netherite_frost.json │ │ │ ├── prismarine_crystals_from_blasting_staff_frost.json │ │ │ ├── prismarine_crystals_from_smelting_staff_frost.json │ │ │ ├── prismarine_shard_from_blasting_frost_robe_chest.json │ │ │ ├── prismarine_shard_from_blasting_frost_robe_feet.json │ │ │ ├── prismarine_shard_from_blasting_frost_robe_head.json │ │ │ ├── prismarine_shard_from_blasting_frost_robe_legs.json │ │ │ ├── prismarine_shard_from_smelting_frost_robe_chest.json │ │ │ ├── prismarine_shard_from_smelting_frost_robe_feet.json │ │ │ ├── prismarine_shard_from_smelting_frost_robe_head.json │ │ │ └── prismarine_shard_from_smelting_frost_robe_legs.json │ │ ├── recipe │ │ ├── amethyst_shard_from_blasting_staff_arcane.json │ │ ├── amethyst_shard_from_smelting_staff_arcane.json │ │ ├── arcane_robe_chest.json │ │ ├── arcane_robe_feet.json │ │ ├── arcane_robe_head.json │ │ ├── arcane_robe_legs.json │ │ ├── blaze_powder_from_blasting_fire_robe_chest.json │ │ ├── blaze_powder_from_blasting_fire_robe_feet.json │ │ ├── blaze_powder_from_blasting_fire_robe_head.json │ │ ├── blaze_powder_from_blasting_fire_robe_legs.json │ │ ├── blaze_powder_from_blasting_staff_fire.json │ │ ├── blaze_powder_from_smelting_fire_robe_chest.json │ │ ├── blaze_powder_from_smelting_fire_robe_feet.json │ │ ├── blaze_powder_from_smelting_fire_robe_head.json │ │ ├── blaze_powder_from_smelting_fire_robe_legs.json │ │ ├── blaze_powder_from_smelting_staff_fire.json │ │ ├── ender_pearl_from_blasting_arcane_robe_chest.json │ │ ├── ender_pearl_from_blasting_arcane_robe_feet.json │ │ ├── ender_pearl_from_blasting_arcane_robe_head.json │ │ ├── ender_pearl_from_blasting_arcane_robe_legs.json │ │ ├── ender_pearl_from_smelting_arcane_robe_chest.json │ │ ├── ender_pearl_from_smelting_arcane_robe_feet.json │ │ ├── ender_pearl_from_smelting_arcane_robe_head.json │ │ ├── ender_pearl_from_smelting_arcane_robe_legs.json │ │ ├── fire_robe_chest.json │ │ ├── fire_robe_feet.json │ │ ├── fire_robe_head.json │ │ ├── fire_robe_legs.json │ │ ├── frost_robe_chest.json │ │ ├── frost_robe_feet.json │ │ ├── frost_robe_head.json │ │ ├── frost_robe_legs.json │ │ ├── gold_nugget_from_blasting_wand_arcane.json │ │ ├── gold_nugget_from_blasting_wand_fire.json │ │ ├── gold_nugget_from_smelting_wand_arcane.json │ │ ├── gold_nugget_from_smelting_wand_fire.json │ │ ├── iron_nugget_from_blasting_wand_frost.json │ │ ├── iron_nugget_from_smelting_wand_frost.json │ │ ├── lapis_lazuli_from_blasting_wizard_robe_chest.json │ │ ├── lapis_lazuli_from_blasting_wizard_robe_feet.json │ │ ├── lapis_lazuli_from_blasting_wizard_robe_head.json │ │ ├── lapis_lazuli_from_blasting_wizard_robe_legs.json │ │ ├── lapis_lazuli_from_smelting_wizard_robe_chest.json │ │ ├── lapis_lazuli_from_smelting_wizard_robe_feet.json │ │ ├── lapis_lazuli_from_smelting_wizard_robe_head.json │ │ ├── lapis_lazuli_from_smelting_wizard_robe_legs.json │ │ ├── netherite_arcane_robe_chest_smithing.json │ │ ├── netherite_arcane_robe_feet_smithing.json │ │ ├── netherite_arcane_robe_head_smithing.json │ │ ├── netherite_arcane_robe_legs_smithing.json │ │ ├── netherite_fire_robe_chest_smithing.json │ │ ├── netherite_fire_robe_feet_smithing.json │ │ ├── netherite_fire_robe_head_smithing.json │ │ ├── netherite_fire_robe_legs_smithing.json │ │ ├── netherite_frost_robe_chest_smithing.json │ │ ├── netherite_frost_robe_feet_smithing.json │ │ ├── netherite_frost_robe_head_smithing.json │ │ ├── netherite_frost_robe_legs_smithing.json │ │ ├── netherite_scrap_from_blasting_netherite_arcane_robe_chest.json │ │ ├── netherite_scrap_from_blasting_netherite_arcane_robe_feet.json │ │ ├── netherite_scrap_from_blasting_netherite_arcane_robe_head.json │ │ ├── netherite_scrap_from_blasting_netherite_arcane_robe_legs.json │ │ ├── netherite_scrap_from_blasting_netherite_fire_robe_chest.json │ │ ├── netherite_scrap_from_blasting_netherite_fire_robe_feet.json │ │ ├── netherite_scrap_from_blasting_netherite_fire_robe_head.json │ │ ├── netherite_scrap_from_blasting_netherite_fire_robe_legs.json │ │ ├── netherite_scrap_from_blasting_netherite_frost_robe_chest.json │ │ ├── netherite_scrap_from_blasting_netherite_frost_robe_feet.json │ │ ├── netherite_scrap_from_blasting_netherite_frost_robe_head.json │ │ ├── netherite_scrap_from_blasting_netherite_frost_robe_legs.json │ │ ├── netherite_scrap_from_blasting_staff_netherite_arcane.json │ │ ├── netherite_scrap_from_blasting_staff_netherite_fire.json │ │ ├── netherite_scrap_from_blasting_staff_netherite_frost.json │ │ ├── netherite_scrap_from_blasting_wand_netherite_arcane.json │ │ ├── netherite_scrap_from_blasting_wand_netherite_fire.json │ │ ├── netherite_scrap_from_blasting_wand_netherite_frost.json │ │ ├── netherite_scrap_from_smelting_netherite_arcane_robe_chest.json │ │ ├── netherite_scrap_from_smelting_netherite_arcane_robe_feet.json │ │ ├── netherite_scrap_from_smelting_netherite_arcane_robe_head.json │ │ ├── netherite_scrap_from_smelting_netherite_arcane_robe_legs.json │ │ ├── netherite_scrap_from_smelting_netherite_fire_robe_chest.json │ │ ├── netherite_scrap_from_smelting_netherite_fire_robe_feet.json │ │ ├── netherite_scrap_from_smelting_netherite_fire_robe_head.json │ │ ├── netherite_scrap_from_smelting_netherite_fire_robe_legs.json │ │ ├── netherite_scrap_from_smelting_netherite_frost_robe_chest.json │ │ ├── netherite_scrap_from_smelting_netherite_frost_robe_feet.json │ │ ├── netherite_scrap_from_smelting_netherite_frost_robe_head.json │ │ ├── netherite_scrap_from_smelting_netherite_frost_robe_legs.json │ │ ├── netherite_scrap_from_smelting_staff_netherite_arcane.json │ │ ├── netherite_scrap_from_smelting_staff_netherite_fire.json │ │ ├── netherite_scrap_from_smelting_staff_netherite_frost.json │ │ ├── netherite_scrap_from_smelting_wand_netherite_arcane.json │ │ ├── netherite_scrap_from_smelting_wand_netherite_fire.json │ │ ├── netherite_scrap_from_smelting_wand_netherite_frost.json │ │ ├── prismarine_crystals_from_blasting_staff_frost.json │ │ ├── prismarine_crystals_from_smelting_staff_frost.json │ │ ├── prismarine_shard_from_blasting_frost_robe_chest.json │ │ ├── prismarine_shard_from_blasting_frost_robe_feet.json │ │ ├── prismarine_shard_from_blasting_frost_robe_head.json │ │ ├── prismarine_shard_from_blasting_frost_robe_legs.json │ │ ├── prismarine_shard_from_smelting_frost_robe_chest.json │ │ ├── prismarine_shard_from_smelting_frost_robe_feet.json │ │ ├── prismarine_shard_from_smelting_frost_robe_head.json │ │ ├── prismarine_shard_from_smelting_frost_robe_legs.json │ │ ├── staff_arcane.json │ │ ├── staff_fire.json │ │ ├── staff_frost.json │ │ ├── staff_netherite_arcane_smithing.json │ │ ├── staff_netherite_fire_smithing.json │ │ ├── staff_netherite_frost_smithing.json │ │ ├── staff_wizard.json │ │ ├── wand_arcane.json │ │ ├── wand_fire.json │ │ ├── wand_frost.json │ │ ├── wand_netherite_arcane_smithing.json │ │ ├── wand_netherite_fire_smithing.json │ │ ├── wand_netherite_frost_smithing.json │ │ ├── wand_novice.json │ │ ├── wizard_robe_chest.json │ │ ├── wizard_robe_feet.json │ │ ├── wizard_robe_head.json │ │ └── wizard_robe_legs.json │ │ └── spell │ │ ├── arcane_beam.json │ │ ├── arcane_blast.json │ │ ├── arcane_blink.json │ │ ├── arcane_bolt.json │ │ ├── arcane_missile.json │ │ ├── fire_blast.json │ │ ├── fire_breath.json │ │ ├── fire_meteor.json │ │ ├── fire_scorch.json │ │ ├── fire_wall.json │ │ ├── fireball.json │ │ ├── frost_blizzard.json │ │ ├── frost_nova.json │ │ ├── frost_shard.json │ │ ├── frost_shield.json │ │ └── frostbolt.json │ ├── java │ └── net │ │ └── wizards │ │ ├── WizardsMod.java │ │ ├── client │ │ ├── WizardsClientMod.java │ │ ├── armor │ │ │ └── WizardArmorRenderer.java │ │ └── effect │ │ │ ├── ArcaneChargeRenderer.java │ │ │ ├── FrostShieldRenderer.java │ │ │ ├── FrozenParticles.java │ │ │ └── FrozenRenderer.java │ │ ├── config │ │ ├── Default.java │ │ └── TweaksConfig.java │ │ ├── content │ │ ├── WizardSpells.java │ │ └── WizardsSounds.java │ │ ├── effect │ │ ├── FrostShieldStatusEffect.java │ │ ├── FrostShielded.java │ │ ├── FrozenStatusEffect.java │ │ └── WizardsEffects.java │ │ ├── item │ │ ├── Group.java │ │ ├── WizardArmor.java │ │ ├── WizardArmors.java │ │ ├── WizardBooks.java │ │ ├── WizardItems.java │ │ └── WizardWeapons.java │ │ ├── mixin │ │ └── effect │ │ │ ├── LivingEntityFrostShield.java │ │ │ ├── LivingEntityFrozen.java │ │ │ └── ServerWorldFrostShield.java │ │ ├── util │ │ └── SoundHelper.java │ │ └── villager │ │ └── WizardVillagers.java │ └── resources │ ├── assets │ ├── merchantmarkers │ │ └── textures │ │ │ └── entity │ │ │ └── villager │ │ │ └── markers │ │ │ └── wizards__wizard_merchant.png │ ├── minecraft │ │ └── atlases │ │ │ └── armor_trims.json │ └── wizards │ │ ├── animations │ │ └── armor_idle.json │ │ ├── geo │ │ └── wizard_robes.geo.json │ │ ├── lang │ │ ├── en_us.json │ │ ├── es_ar.json │ │ ├── es_es.json │ │ ├── fr_fr.json │ │ ├── it_it.json │ │ ├── ko_kr.json │ │ ├── pt_br.json │ │ ├── ru_ru.json │ │ ├── uk_ua.json │ │ └── zh_cn.json │ │ ├── models │ │ ├── effect │ │ │ ├── arcane_charge.json │ │ │ ├── frost_shield_base.json │ │ │ ├── frost_shield_overlay.json │ │ │ └── frost_trap.json │ │ ├── item │ │ │ ├── aether_wizard_staff.json │ │ │ ├── arcane_robe_chest.json │ │ │ ├── arcane_robe_feet.json │ │ │ ├── arcane_robe_head.json │ │ │ ├── arcane_robe_legs.json │ │ │ ├── arcane_scroll.json │ │ │ ├── arcane_spell_book.json │ │ │ ├── fire_robe_chest.json │ │ │ ├── fire_robe_feet.json │ │ │ ├── fire_robe_head.json │ │ │ ├── fire_robe_legs.json │ │ │ ├── fire_scroll.json │ │ │ ├── fire_spell_book.json │ │ │ ├── frost_robe_chest.json │ │ │ ├── frost_robe_feet.json │ │ │ ├── frost_robe_head.json │ │ │ ├── frost_robe_legs.json │ │ │ ├── frost_scroll.json │ │ │ ├── frost_spell_book.json │ │ │ ├── medium_staff.json │ │ │ ├── netherite_arcane_robe_chest.json │ │ │ ├── netherite_arcane_robe_feet.json │ │ │ ├── netherite_arcane_robe_head.json │ │ │ ├── netherite_arcane_robe_legs.json │ │ │ ├── netherite_fire_robe_chest.json │ │ │ ├── netherite_fire_robe_feet.json │ │ │ ├── netherite_fire_robe_head.json │ │ │ ├── netherite_fire_robe_legs.json │ │ │ ├── netherite_frost_robe_chest.json │ │ │ ├── netherite_frost_robe_feet.json │ │ │ ├── netherite_frost_robe_head.json │ │ │ ├── netherite_frost_robe_legs.json │ │ │ ├── staff_arcane.json │ │ │ ├── staff_crystal_arcane.json │ │ │ ├── staff_fire.json │ │ │ ├── staff_frost.json │ │ │ ├── staff_netherite_arcane.json │ │ │ ├── staff_netherite_fire.json │ │ │ ├── staff_netherite_frost.json │ │ │ ├── staff_ruby_fire.json │ │ │ ├── staff_smaragdant_frost.json │ │ │ ├── staff_wizard.json │ │ │ ├── wand_arcane.json │ │ │ ├── wand_fire.json │ │ │ ├── wand_frost.json │ │ │ ├── wand_netherite_arcane.json │ │ │ ├── wand_netherite_fire.json │ │ │ ├── wand_netherite_frost.json │ │ │ ├── wand_novice.json │ │ │ ├── wizard_robe_chest.json │ │ │ ├── wizard_robe_feet.json │ │ │ ├── wizard_robe_head.json │ │ │ └── wizard_robe_legs.json │ │ └── projectile │ │ │ ├── arcane_bolt.json │ │ │ ├── arcane_missile.json │ │ │ ├── fire_blast.json │ │ │ ├── fire_meteor.json │ │ │ ├── fireball.json │ │ │ ├── frost_shard.json │ │ │ └── frostbolt.json │ │ ├── sounds │ │ ├── arcane_beam_casting.ogg │ │ ├── arcane_beam_impact.ogg │ │ ├── arcane_beam_release.ogg │ │ ├── arcane_beam_start.ogg │ │ ├── arcane_blast_impact.ogg │ │ ├── arcane_blast_release.ogg │ │ ├── arcane_missile_impact.ogg │ │ ├── arcane_missile_release.ogg │ │ ├── arcane_shoot_small.ogg │ │ ├── fire_breath_casting.ogg │ │ ├── fire_breath_impact.ogg │ │ ├── fire_breath_release.ogg │ │ ├── fire_breath_start.ogg │ │ ├── fire_meteor_impact.ogg │ │ ├── fire_meteor_release.ogg │ │ ├── fire_scorch_impact.ogg │ │ ├── fire_wall_ignite.ogg │ │ ├── fireball_impact.ogg │ │ ├── frost_blizzard_casting.ogg │ │ ├── frost_nova_damage_impact.ogg │ │ ├── frost_nova_effect_impact.ogg │ │ ├── frost_nova_release.ogg │ │ ├── frost_shard_impact.ogg │ │ ├── frost_shield_impact.ogg │ │ ├── frost_shield_release.ogg │ │ ├── wizard_robes_equip_1.ogg │ │ ├── wizard_robes_equip_2.ogg │ │ └── wizard_robes_equip_3.ogg │ │ └── textures │ │ ├── armor │ │ ├── arcane_robe.png │ │ ├── fire_robe.png │ │ ├── frost_robe.png │ │ ├── netherite_arcane_robe.png │ │ ├── netherite_fire_robe.png │ │ ├── netherite_frost_robe.png │ │ ├── trim │ │ │ ├── netherite_spec_robe_generic.png │ │ │ ├── spec_robe_generic.png │ │ │ └── wizard_robe_generic.png │ │ └── wizard_robe.png │ │ ├── entity │ │ ├── villager │ │ │ └── profession │ │ │ │ ├── wizard_merchant.png │ │ │ │ └── wizard_merchant.png.mcmeta │ │ └── zombie_villager │ │ │ └── profession │ │ │ └── wizard_merchant.png │ │ ├── item │ │ ├── aether_wizard_staff.png │ │ ├── aether_wizard_staff_e.png │ │ ├── arcane_robe_chest.png │ │ ├── arcane_robe_feet.png │ │ ├── arcane_robe_head.png │ │ ├── arcane_robe_legs.png │ │ ├── arcane_scroll.png │ │ ├── arcane_spell_book.png │ │ ├── fire_robe_chest.png │ │ ├── fire_robe_feet.png │ │ ├── fire_robe_head.png │ │ ├── fire_robe_legs.png │ │ ├── fire_scroll.png │ │ ├── fire_spell_book.png │ │ ├── frost_robe_chest.png │ │ ├── frost_robe_feet.png │ │ ├── frost_robe_head.png │ │ ├── frost_robe_legs.png │ │ ├── frost_scroll.png │ │ ├── frost_spell_book.png │ │ ├── netherite_arcane_robe_chest.png │ │ ├── netherite_arcane_robe_feet.png │ │ ├── netherite_arcane_robe_head.png │ │ ├── netherite_arcane_robe_legs.png │ │ ├── netherite_fire_robe_chest.png │ │ ├── netherite_fire_robe_feet.png │ │ ├── netherite_fire_robe_head.png │ │ ├── netherite_fire_robe_legs.png │ │ ├── netherite_frost_robe_chest.png │ │ ├── netherite_frost_robe_feet.png │ │ ├── netherite_frost_robe_head.png │ │ ├── netherite_frost_robe_legs.png │ │ ├── staff_arcane.png │ │ ├── staff_arcane_e.png │ │ ├── staff_crystal_arcane.png │ │ ├── staff_crystal_arcane_e.png │ │ ├── staff_fire.png │ │ ├── staff_fire_e.png │ │ ├── staff_frost.png │ │ ├── staff_frost_e.png │ │ ├── staff_netherite_arcane.png │ │ ├── staff_netherite_arcane_e.png │ │ ├── staff_netherite_fire.png │ │ ├── staff_netherite_fire_e.png │ │ ├── staff_netherite_frost.png │ │ ├── staff_netherite_frost_e.png │ │ ├── staff_ruby_fire.png │ │ ├── staff_ruby_fire_e.png │ │ ├── staff_smaragdant_frost.png │ │ ├── staff_smaragdant_frost_e.png │ │ ├── staff_wizard.png │ │ ├── staff_wizard_e.png │ │ ├── wand_arcane.png │ │ ├── wand_arcane_e.png │ │ ├── wand_fire.png │ │ ├── wand_fire_e.png │ │ ├── wand_frost.png │ │ ├── wand_frost_e.png │ │ ├── wand_netherite_arcane.png │ │ ├── wand_netherite_arcane_e.png │ │ ├── wand_netherite_fire.png │ │ ├── wand_netherite_fire_e.png │ │ ├── wand_netherite_frost.png │ │ ├── wand_netherite_frost_e.png │ │ ├── wand_novice.png │ │ ├── wizard_robe_chest.png │ │ ├── wizard_robe_feet.png │ │ ├── wizard_robe_head.png │ │ └── wizard_robe_legs.png │ │ ├── mob_effect │ │ ├── arcane_charge.png │ │ ├── frost_shield.png │ │ ├── frost_slowness.png │ │ └── frozen.png │ │ ├── spell │ │ ├── arcane_beam.png │ │ ├── arcane_blast.png │ │ ├── arcane_blink.png │ │ ├── arcane_bolt.png │ │ ├── arcane_missile.png │ │ ├── fire_blast.png │ │ ├── fire_breath.png │ │ ├── fire_meteor.png │ │ ├── fire_scorch.png │ │ ├── fire_wall.png │ │ ├── fireball.png │ │ ├── frost_blizzard.png │ │ ├── frost_nova.png │ │ ├── frost_shard.png │ │ ├── frost_shield.png │ │ └── frostbolt.png │ │ ├── spell_effect │ │ ├── arcane_charge.png │ │ ├── frost_shield_base.png │ │ ├── frost_shield_overlay.png │ │ └── ice.png │ │ └── spell_projectile │ │ ├── arcane_bolt.png │ │ ├── arcane_missile.png │ │ ├── fire_blast.png │ │ ├── fire_meteor.png │ │ ├── fireball.png │ │ ├── frost_shard.png │ │ └── frostbolt.png │ ├── data │ ├── minecraft │ │ └── tags │ │ │ └── point_of_interest_type │ │ │ └── acquirable_job_site.json │ ├── rpg_series │ │ └── advancement │ │ │ ├── obtain_wizard_robes.json │ │ │ ├── path_choose_arcane.json │ │ │ ├── path_choose_fire.json │ │ │ ├── path_choose_frost.json │ │ │ ├── spell_cast_arcane_book.json │ │ │ ├── spell_cast_arcane_wand.json │ │ │ ├── spell_cast_fire_book.json │ │ │ ├── spell_cast_fire_wand.json │ │ │ ├── spell_cast_frost_book.json │ │ │ ├── spell_cast_frost_wand.json │ │ │ ├── spell_master_arcane.json │ │ │ ├── spell_master_fire.json │ │ │ ├── spell_master_frost.json │ │ │ ├── spell_novice_arcane.json │ │ │ ├── spell_novice_fire.json │ │ │ ├── spell_novice_frost.json │ │ │ └── trade_wizard.json │ ├── spell_engine │ │ └── tags │ │ │ ├── item │ │ │ └── spell_books.json │ │ │ └── spell │ │ │ └── treasure.json │ └── wizards │ │ ├── lithostitched │ │ └── worldgen_modifier │ │ │ └── village │ │ │ ├── desert.json │ │ │ ├── plains.json │ │ │ ├── savanna.json │ │ │ ├── snowy.json │ │ │ └── taiga.json │ │ ├── loot_table │ │ └── chests │ │ │ └── village_wizard.json │ │ ├── recipe │ │ ├── staff_crystal_arcane.json │ │ ├── staff_ruby_fire.json │ │ └── staff_smaragdant_frost.json │ │ ├── rs_pieces_spawn_counts │ │ ├── village_badlands.json │ │ ├── village_bamboo.json │ │ ├── village_birch.json │ │ ├── village_cherry.json │ │ ├── village_dark_forest.json │ │ ├── village_giant_taiga.json │ │ ├── village_jungle.json │ │ ├── village_mountains.json │ │ ├── village_mushroom.json │ │ ├── village_oak.json │ │ ├── village_ocean.json │ │ └── village_swamp.json │ │ ├── rs_pool_additions │ │ └── villages │ │ │ ├── badlands │ │ │ └── houses.json │ │ │ ├── bamboo │ │ │ └── houses.json │ │ │ ├── birch │ │ │ └── houses.json │ │ │ ├── cherry │ │ │ └── houses.json │ │ │ ├── dark_forest │ │ │ └── houses.json │ │ │ ├── giant_taiga │ │ │ └── houses.json │ │ │ ├── jungle │ │ │ └── houses.json │ │ │ ├── mountains │ │ │ └── houses.json │ │ │ ├── mushroom │ │ │ └── houses.json │ │ │ ├── oak │ │ │ └── houses.json │ │ │ ├── ocean │ │ │ └── houses.json │ │ │ └── swamp │ │ │ └── houses.json │ │ ├── spell_assignments │ │ ├── aether_wizard_staff.json │ │ ├── staff_arcane.json │ │ ├── staff_crystal_arcane.json │ │ ├── staff_fire.json │ │ ├── staff_frost.json │ │ ├── staff_netherite_arcane.json │ │ ├── staff_netherite_fire.json │ │ ├── staff_netherite_frost.json │ │ ├── staff_ruby_fire.json │ │ ├── staff_smaragdant_frost.json │ │ ├── staff_wizard.json │ │ ├── wand_arcane.json │ │ ├── wand_fire.json │ │ ├── wand_frost.json │ │ ├── wand_netherite_arcane.json │ │ ├── wand_netherite_fire.json │ │ ├── wand_netherite_frost.json │ │ └── wand_novice.json │ │ ├── structure │ │ ├── village │ │ │ ├── desert │ │ │ │ ├── wizard_tower.nbt │ │ │ │ └── wizard_tower_2.nbt │ │ │ ├── plains │ │ │ │ └── wizard_tower.nbt │ │ │ ├── savanna │ │ │ │ └── wizard_tower.nbt │ │ │ ├── snowy │ │ │ │ ├── wizard_tower.nbt │ │ │ │ └── wizard_tower_2.nbt │ │ │ └── taiga │ │ │ │ └── wizard_tower.nbt │ │ └── villages │ │ │ ├── badlands │ │ │ ├── wizard_tower.nbt │ │ │ └── wizard_tower_2.nbt │ │ │ ├── bamboo │ │ │ └── wizard_tower.nbt │ │ │ ├── birch │ │ │ └── wizard_tower.nbt │ │ │ ├── cherry │ │ │ └── wizard_tower.nbt │ │ │ ├── dark_forest │ │ │ └── wizard_tower.nbt │ │ │ ├── giant_taiga │ │ │ └── wizard_tower.nbt │ │ │ ├── jungle │ │ │ └── wizard_tower.nbt │ │ │ ├── mountains │ │ │ └── wizard_tower.nbt │ │ │ ├── mushroom │ │ │ └── wizard_tower.nbt │ │ │ ├── oak │ │ │ └── wizard_tower.nbt │ │ │ ├── ocean │ │ │ └── wizard_tower.nbt │ │ │ └── swamp │ │ │ ├── wizard_tower.nbt │ │ │ └── wizard_tower_2.nbt │ │ ├── tags │ │ ├── item │ │ │ ├── staves.json │ │ │ ├── wands.json │ │ │ ├── wizard_robes.json │ │ │ └── wizard_runes.json │ │ └── spell │ │ │ ├── arcane.json │ │ │ ├── fire.json │ │ │ └── frost.json │ │ └── weapon_attributes │ │ ├── aether_wizard_staff.json │ │ ├── staff_arcane.json │ │ ├── staff_crystal_arcane.json │ │ ├── staff_fire.json │ │ ├── staff_frost.json │ │ ├── staff_netherite_arcane.json │ │ ├── staff_netherite_fire.json │ │ ├── staff_netherite_frost.json │ │ ├── staff_ruby_fire.json │ │ ├── staff_smaragdant_frost.json │ │ ├── staff_wizard.json │ │ ├── wand_arcane.json │ │ ├── wand_fire.json │ │ ├── wand_frost.json │ │ ├── wand_netherite_arcane.json │ │ ├── wand_netherite_fire.json │ │ ├── wand_netherite_frost.json │ │ └── wand_novice.json │ ├── icon.png │ └── wizards.mixins.json ├── fabric ├── build.gradle └── src │ └── main │ ├── java │ └── net │ │ └── wizards │ │ └── fabric │ │ ├── FabricMod.java │ │ ├── client │ │ └── FabricClientMod.java │ │ └── datagen │ │ ├── WizardRecipes.java │ │ └── WizardsDataGenerator.java │ └── resources │ └── fabric.mod.json ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icon.png ├── neoforge ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── java │ └── net │ │ └── wizards │ │ └── neoforge │ │ ├── NeoForgeMod.java │ │ └── client │ │ └── NeoForgeClientMod.java │ └── resources │ └── META-INF │ └── neoforge.mods.toml └── settings.gradle /.github/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/.github/title.png -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/README.md -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/src/main/generated/assets/wizards/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/assets/wizards/sounds.json -------------------------------------------------------------------------------- /common/src/main/generated/data/minecraft/tags/item/chest_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/minecraft/tags/item/chest_armor.json -------------------------------------------------------------------------------- /common/src/main/generated/data/minecraft/tags/item/foot_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/minecraft/tags/item/foot_armor.json -------------------------------------------------------------------------------- /common/src/main/generated/data/minecraft/tags/item/head_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/minecraft/tags/item/head_armor.json -------------------------------------------------------------------------------- /common/src/main/generated/data/minecraft/tags/item/leg_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/minecraft/tags/item/leg_armor.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/armor_type/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/armor_type/magic.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/loot_theme/aether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/loot_theme/aether.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_0_weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_0_weapons.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_1_armors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_1_armors.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_1_weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_1_weapons.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_2_armors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_2_armors.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_2_weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_2_weapons.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_3_armors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_3_armors.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_3_weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_3_weapons.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_4_weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/loot_tier/tier_4_weapons.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/weapon_type/damage_staff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/weapon_type/damage_staff.json -------------------------------------------------------------------------------- /common/src/main/generated/data/rpg_series/tags/item/weapon_type/damage_wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/rpg_series/tags/item/weapon_type/damage_wand.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_arcane_robe_chest_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_arcane_robe_chest_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_arcane_robe_feet_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_arcane_robe_feet_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_arcane_robe_head_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_arcane_robe_head_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_arcane_robe_legs_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_arcane_robe_legs_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_fire_robe_chest_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_fire_robe_chest_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_fire_robe_feet_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_fire_robe_feet_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_fire_robe_head_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_fire_robe_head_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_fire_robe_legs_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_fire_robe_legs_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_frost_robe_chest_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_frost_robe_chest_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_frost_robe_feet_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_frost_robe_feet_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_frost_robe_head_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_frost_robe_head_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_frost_robe_legs_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/netherite_frost_robe_legs_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/staff_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/staff_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/staff_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/staff_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/staff_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/staff_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/staff_netherite_arcane_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/staff_netherite_arcane_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/staff_netherite_fire_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/staff_netherite_fire_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/staff_netherite_frost_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/staff_netherite_frost_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/staff_wizard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/staff_wizard.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wand_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wand_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wand_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wand_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wand_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wand_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wand_netherite_arcane_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wand_netherite_arcane_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wand_netherite_fire_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wand_netherite_fire_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wand_netherite_frost_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wand_netherite_frost_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wand_novice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wand_novice.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wizard_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wizard_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wizard_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wizard_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wizard_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wizard_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/combat/wizard_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/combat/wizard_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/amethyst_shard_from_blasting_staff_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/amethyst_shard_from_blasting_staff_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/amethyst_shard_from_smelting_staff_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/amethyst_shard_from_smelting_staff_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_staff_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_blasting_staff_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_staff_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/blaze_powder_from_smelting_staff_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_blasting_arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_blasting_arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_blasting_arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_blasting_arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_blasting_arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_blasting_arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_blasting_arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_blasting_arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_smelting_arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_smelting_arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_smelting_arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_smelting_arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_smelting_arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_smelting_arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_smelting_arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/ender_pearl_from_smelting_arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/gold_nugget_from_blasting_wand_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/gold_nugget_from_blasting_wand_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/gold_nugget_from_blasting_wand_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/gold_nugget_from_blasting_wand_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/gold_nugget_from_smelting_wand_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/gold_nugget_from_smelting_wand_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/gold_nugget_from_smelting_wand_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/gold_nugget_from_smelting_wand_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/iron_nugget_from_blasting_wand_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/iron_nugget_from_blasting_wand_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/iron_nugget_from_smelting_wand_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/iron_nugget_from_smelting_wand_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_blasting_wizard_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_blasting_wizard_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_blasting_wizard_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_blasting_wizard_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_blasting_wizard_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_blasting_wizard_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_blasting_wizard_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_blasting_wizard_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_smelting_wizard_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_smelting_wizard_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_smelting_wizard_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_smelting_wizard_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_smelting_wizard_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_smelting_wizard_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_smelting_wizard_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/lapis_lazuli_from_smelting_wizard_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_netherite_fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_netherite_fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_netherite_fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_netherite_fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_staff_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_staff_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_staff_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_staff_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_wand_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_wand_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_wand_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_wand_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_wand_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_blasting_wand_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_staff_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_staff_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_staff_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_staff_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_wand_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_wand_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_wand_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_wand_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_wand_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/netherite_scrap_from_smelting_wand_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_crystals_from_blasting_staff_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_crystals_from_blasting_staff_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_crystals_from_smelting_staff_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_crystals_from_smelting_staff_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_blasting_frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_blasting_frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_blasting_frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_blasting_frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_blasting_frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_blasting_frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_blasting_frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_blasting_frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_smelting_frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_smelting_frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_smelting_frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_smelting_frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_smelting_frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_smelting_frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_smelting_frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/advancement/recipes/misc/prismarine_shard_from_smelting_frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/amethyst_shard_from_blasting_staff_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/amethyst_shard_from_blasting_staff_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/amethyst_shard_from_smelting_staff_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/amethyst_shard_from_smelting_staff_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_staff_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_blasting_staff_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_staff_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/blaze_powder_from_smelting_staff_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/ender_pearl_from_blasting_arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/ender_pearl_from_blasting_arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/ender_pearl_from_blasting_arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/ender_pearl_from_blasting_arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/ender_pearl_from_blasting_arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/ender_pearl_from_blasting_arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/ender_pearl_from_blasting_arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/ender_pearl_from_blasting_arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/ender_pearl_from_smelting_arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/ender_pearl_from_smelting_arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/ender_pearl_from_smelting_arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/ender_pearl_from_smelting_arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/ender_pearl_from_smelting_arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/ender_pearl_from_smelting_arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/ender_pearl_from_smelting_arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/ender_pearl_from_smelting_arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/gold_nugget_from_blasting_wand_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/gold_nugget_from_blasting_wand_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/gold_nugget_from_blasting_wand_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/gold_nugget_from_blasting_wand_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/gold_nugget_from_smelting_wand_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/gold_nugget_from_smelting_wand_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/gold_nugget_from_smelting_wand_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/gold_nugget_from_smelting_wand_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/iron_nugget_from_blasting_wand_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/iron_nugget_from_blasting_wand_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/iron_nugget_from_smelting_wand_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/iron_nugget_from_smelting_wand_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_blasting_wizard_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_blasting_wizard_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_blasting_wizard_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_blasting_wizard_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_blasting_wizard_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_blasting_wizard_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_blasting_wizard_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_blasting_wizard_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_smelting_wizard_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_smelting_wizard_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_smelting_wizard_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_smelting_wizard_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_smelting_wizard_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_smelting_wizard_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_smelting_wizard_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/lapis_lazuli_from_smelting_wizard_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_arcane_robe_chest_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_arcane_robe_chest_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_arcane_robe_feet_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_arcane_robe_feet_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_arcane_robe_head_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_arcane_robe_head_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_arcane_robe_legs_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_arcane_robe_legs_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_fire_robe_chest_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_fire_robe_chest_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_fire_robe_feet_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_fire_robe_feet_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_fire_robe_head_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_fire_robe_head_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_fire_robe_legs_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_fire_robe_legs_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_frost_robe_chest_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_frost_robe_chest_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_frost_robe_feet_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_frost_robe_feet_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_frost_robe_head_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_frost_robe_head_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_frost_robe_legs_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_frost_robe_legs_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_netherite_frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_staff_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_staff_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_staff_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_staff_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_staff_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_staff_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_wand_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_wand_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_wand_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_wand_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_wand_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_blasting_wand_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_netherite_frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_staff_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_staff_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_staff_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_staff_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_staff_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_staff_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_wand_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_wand_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_wand_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_wand_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_wand_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/netherite_scrap_from_smelting_wand_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_crystals_from_blasting_staff_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_crystals_from_blasting_staff_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_crystals_from_smelting_staff_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_crystals_from_smelting_staff_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_shard_from_blasting_frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_shard_from_blasting_frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_shard_from_blasting_frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_shard_from_blasting_frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_shard_from_blasting_frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_shard_from_blasting_frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_shard_from_blasting_frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_shard_from_blasting_frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_shard_from_smelting_frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_shard_from_smelting_frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_shard_from_smelting_frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_shard_from_smelting_frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_shard_from_smelting_frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_shard_from_smelting_frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/prismarine_shard_from_smelting_frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/prismarine_shard_from_smelting_frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/staff_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/staff_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/staff_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/staff_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/staff_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/staff_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/staff_netherite_arcane_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/staff_netherite_arcane_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/staff_netherite_fire_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/staff_netherite_fire_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/staff_netherite_frost_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/staff_netherite_frost_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/staff_wizard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/staff_wizard.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wand_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wand_arcane.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wand_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wand_fire.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wand_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wand_frost.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wand_netherite_arcane_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wand_netherite_arcane_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wand_netherite_fire_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wand_netherite_fire_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wand_netherite_frost_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wand_netherite_frost_smithing.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wand_novice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wand_novice.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wizard_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wizard_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wizard_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wizard_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wizard_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wizard_robe_head.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/recipe/wizard_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/recipe/wizard_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/arcane_beam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/arcane_beam.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/arcane_blast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/arcane_blast.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/arcane_blink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/arcane_blink.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/arcane_bolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/arcane_bolt.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/arcane_missile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/arcane_missile.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/fire_blast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/fire_blast.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/fire_breath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/fire_breath.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/fire_meteor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/fire_meteor.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/fire_scorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/fire_scorch.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/fire_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/fire_wall.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/fireball.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/frost_blizzard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/frost_blizzard.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/frost_nova.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/frost_nova.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/frost_shard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/frost_shard.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/frost_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/frost_shield.json -------------------------------------------------------------------------------- /common/src/main/generated/data/wizards/spell/frostbolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/generated/data/wizards/spell/frostbolt.json -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/WizardsMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/WizardsMod.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/client/WizardsClientMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/client/WizardsClientMod.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/client/armor/WizardArmorRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/client/armor/WizardArmorRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/client/effect/ArcaneChargeRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/client/effect/ArcaneChargeRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/client/effect/FrostShieldRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/client/effect/FrostShieldRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/client/effect/FrozenParticles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/client/effect/FrozenParticles.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/client/effect/FrozenRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/client/effect/FrozenRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/config/Default.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/config/Default.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/config/TweaksConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/config/TweaksConfig.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/content/WizardSpells.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/content/WizardSpells.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/content/WizardsSounds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/content/WizardsSounds.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/effect/FrostShieldStatusEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/effect/FrostShieldStatusEffect.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/effect/FrostShielded.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/effect/FrostShielded.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/effect/FrozenStatusEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/effect/FrozenStatusEffect.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/effect/WizardsEffects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/effect/WizardsEffects.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/item/Group.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/item/Group.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/item/WizardArmor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/item/WizardArmor.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/item/WizardArmors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/item/WizardArmors.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/item/WizardBooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/item/WizardBooks.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/item/WizardItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/item/WizardItems.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/item/WizardWeapons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/item/WizardWeapons.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/mixin/effect/LivingEntityFrostShield.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/mixin/effect/LivingEntityFrostShield.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/mixin/effect/LivingEntityFrozen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/mixin/effect/LivingEntityFrozen.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/mixin/effect/ServerWorldFrostShield.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/mixin/effect/ServerWorldFrostShield.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/util/SoundHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/util/SoundHelper.java -------------------------------------------------------------------------------- /common/src/main/java/net/wizards/villager/WizardVillagers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/java/net/wizards/villager/WizardVillagers.java -------------------------------------------------------------------------------- /common/src/main/resources/assets/merchantmarkers/textures/entity/villager/markers/wizards__wizard_merchant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/merchantmarkers/textures/entity/villager/markers/wizards__wizard_merchant.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/atlases/armor_trims.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/minecraft/atlases/armor_trims.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/animations/armor_idle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/animations/armor_idle.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/geo/wizard_robes.geo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/geo/wizard_robes.geo.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/en_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/es_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/es_ar.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/es_es.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/fr_fr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/it_it.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/ko_kr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/pt_br.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/ru_ru.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/uk_ua.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/lang/zh_cn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/effect/arcane_charge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/effect/arcane_charge.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/effect/frost_shield_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/effect/frost_shield_base.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/effect/frost_shield_overlay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/effect/frost_shield_overlay.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/effect/frost_trap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/effect/frost_trap.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/aether_wizard_staff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/aether_wizard_staff.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/arcane_scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/arcane_scroll.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/arcane_spell_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/arcane_spell_book.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/fire_scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/fire_scroll.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/fire_spell_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/fire_spell_book.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/frost_scroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/frost_scroll.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/frost_spell_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/frost_spell_book.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/medium_staff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/medium_staff.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_arcane_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_arcane_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_arcane_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_arcane_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_arcane_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_arcane_robe_head.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_arcane_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_arcane_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_fire_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_fire_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_fire_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_fire_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_fire_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_fire_robe_head.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_fire_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_fire_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_frost_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_frost_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_frost_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_frost_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_frost_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_frost_robe_head.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/netherite_frost_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/netherite_frost_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_crystal_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_crystal_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_ruby_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_ruby_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_smaragdant_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_smaragdant_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/staff_wizard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/staff_wizard.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wand_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wand_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wand_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wand_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wand_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wand_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wand_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wand_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wand_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wand_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wand_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wand_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wand_novice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wand_novice.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wizard_robe_chest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wizard_robe_chest.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wizard_robe_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wizard_robe_feet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wizard_robe_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wizard_robe_head.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/item/wizard_robe_legs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/item/wizard_robe_legs.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/projectile/arcane_bolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/projectile/arcane_bolt.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/projectile/arcane_missile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/projectile/arcane_missile.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/projectile/fire_blast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/projectile/fire_blast.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/projectile/fire_meteor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/projectile/fire_meteor.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/projectile/fireball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/projectile/fireball.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/projectile/frost_shard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/projectile/frost_shard.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/models/projectile/frostbolt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/models/projectile/frostbolt.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/arcane_beam_casting.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/arcane_beam_casting.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/arcane_beam_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/arcane_beam_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/arcane_beam_release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/arcane_beam_release.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/arcane_beam_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/arcane_beam_start.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/arcane_blast_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/arcane_blast_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/arcane_blast_release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/arcane_blast_release.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/arcane_missile_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/arcane_missile_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/arcane_missile_release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/arcane_missile_release.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/arcane_shoot_small.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/arcane_shoot_small.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/fire_breath_casting.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/fire_breath_casting.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/fire_breath_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/fire_breath_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/fire_breath_release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/fire_breath_release.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/fire_breath_start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/fire_breath_start.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/fire_meteor_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/fire_meteor_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/fire_meteor_release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/fire_meteor_release.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/fire_scorch_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/fire_scorch_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/fire_wall_ignite.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/fire_wall_ignite.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/fireball_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/fireball_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/frost_blizzard_casting.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/frost_blizzard_casting.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/frost_nova_damage_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/frost_nova_damage_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/frost_nova_effect_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/frost_nova_effect_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/frost_nova_release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/frost_nova_release.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/frost_shard_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/frost_shard_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/frost_shield_impact.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/frost_shield_impact.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/frost_shield_release.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/frost_shield_release.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/wizard_robes_equip_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/wizard_robes_equip_1.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/wizard_robes_equip_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/wizard_robes_equip_2.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/sounds/wizard_robes_equip_3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/sounds/wizard_robes_equip_3.ogg -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/arcane_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/arcane_robe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/fire_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/fire_robe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/frost_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/frost_robe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/netherite_arcane_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/netherite_arcane_robe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/netherite_fire_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/netherite_fire_robe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/netherite_frost_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/netherite_frost_robe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/trim/netherite_spec_robe_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/trim/netherite_spec_robe_generic.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/trim/spec_robe_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/trim/spec_robe_generic.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/trim/wizard_robe_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/trim/wizard_robe_generic.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/armor/wizard_robe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/armor/wizard_robe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/entity/villager/profession/wizard_merchant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/entity/villager/profession/wizard_merchant.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/entity/villager/profession/wizard_merchant.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/entity/villager/profession/wizard_merchant.png.mcmeta -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/entity/zombie_villager/profession/wizard_merchant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/entity/zombie_villager/profession/wizard_merchant.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/aether_wizard_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/aether_wizard_staff.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/aether_wizard_staff_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/aether_wizard_staff_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/arcane_robe_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/arcane_robe_chest.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/arcane_robe_feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/arcane_robe_feet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/arcane_robe_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/arcane_robe_head.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/arcane_robe_legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/arcane_robe_legs.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/arcane_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/arcane_scroll.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/arcane_spell_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/arcane_spell_book.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/fire_robe_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/fire_robe_chest.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/fire_robe_feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/fire_robe_feet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/fire_robe_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/fire_robe_head.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/fire_robe_legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/fire_robe_legs.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/fire_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/fire_scroll.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/fire_spell_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/fire_spell_book.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/frost_robe_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/frost_robe_chest.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/frost_robe_feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/frost_robe_feet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/frost_robe_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/frost_robe_head.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/frost_robe_legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/frost_robe_legs.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/frost_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/frost_scroll.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/frost_spell_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/frost_spell_book.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_arcane_robe_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_arcane_robe_chest.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_arcane_robe_feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_arcane_robe_feet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_arcane_robe_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_arcane_robe_head.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_arcane_robe_legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_arcane_robe_legs.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_fire_robe_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_fire_robe_chest.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_fire_robe_feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_fire_robe_feet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_fire_robe_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_fire_robe_head.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_fire_robe_legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_fire_robe_legs.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_frost_robe_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_frost_robe_chest.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_frost_robe_feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_frost_robe_feet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_frost_robe_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_frost_robe_head.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/netherite_frost_robe_legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/netherite_frost_robe_legs.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_arcane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_arcane.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_arcane_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_arcane_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_crystal_arcane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_crystal_arcane.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_crystal_arcane_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_crystal_arcane_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_fire.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_fire_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_fire_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_frost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_frost.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_frost_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_frost_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_netherite_arcane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_netherite_arcane.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_netherite_arcane_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_netherite_arcane_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_netherite_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_netherite_fire.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_netherite_fire_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_netherite_fire_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_netherite_frost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_netherite_frost.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_netherite_frost_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_netherite_frost_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_ruby_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_ruby_fire.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_ruby_fire_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_ruby_fire_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_smaragdant_frost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_smaragdant_frost.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_smaragdant_frost_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_smaragdant_frost_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_wizard.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/staff_wizard_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/staff_wizard_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_arcane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_arcane.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_arcane_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_arcane_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_fire.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_fire_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_fire_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_frost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_frost.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_frost_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_frost_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_netherite_arcane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_netherite_arcane.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_netherite_arcane_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_netherite_arcane_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_netherite_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_netherite_fire.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_netherite_fire_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_netherite_fire_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_netherite_frost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_netherite_frost.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_netherite_frost_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_netherite_frost_e.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wand_novice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wand_novice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wizard_robe_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wizard_robe_chest.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wizard_robe_feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wizard_robe_feet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wizard_robe_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wizard_robe_head.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/item/wizard_robe_legs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/item/wizard_robe_legs.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/mob_effect/arcane_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/mob_effect/arcane_charge.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/mob_effect/frost_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/mob_effect/frost_shield.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/mob_effect/frost_slowness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/mob_effect/frost_slowness.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/mob_effect/frozen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/mob_effect/frozen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/arcane_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/arcane_beam.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/arcane_blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/arcane_blast.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/arcane_blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/arcane_blink.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/arcane_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/arcane_bolt.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/arcane_missile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/arcane_missile.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/fire_blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/fire_blast.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/fire_breath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/fire_breath.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/fire_meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/fire_meteor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/fire_scorch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/fire_scorch.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/fire_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/fire_wall.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/fireball.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/frost_blizzard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/frost_blizzard.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/frost_nova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/frost_nova.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/frost_shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/frost_shard.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/frost_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/frost_shield.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell/frostbolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell/frostbolt.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_effect/arcane_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_effect/arcane_charge.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_effect/frost_shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_effect/frost_shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_effect/frost_shield_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_effect/frost_shield_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_effect/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_effect/ice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_projectile/arcane_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_projectile/arcane_bolt.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_projectile/arcane_missile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_projectile/arcane_missile.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_projectile/fire_blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_projectile/fire_blast.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_projectile/fire_meteor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_projectile/fire_meteor.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_projectile/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_projectile/fireball.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_projectile/frost_shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_projectile/frost_shard.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/wizards/textures/spell_projectile/frostbolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/assets/wizards/textures/spell_projectile/frostbolt.png -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/obtain_wizard_robes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/obtain_wizard_robes.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/path_choose_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/path_choose_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/path_choose_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/path_choose_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/path_choose_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/path_choose_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_cast_arcane_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_cast_arcane_book.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_cast_arcane_wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_cast_arcane_wand.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_cast_fire_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_cast_fire_book.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_cast_fire_wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_cast_fire_wand.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_cast_frost_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_cast_frost_book.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_cast_frost_wand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_cast_frost_wand.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_master_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_master_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_master_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_master_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_master_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_master_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_novice_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_novice_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_novice_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_novice_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/spell_novice_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/spell_novice_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/rpg_series/advancement/trade_wizard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/rpg_series/advancement/trade_wizard.json -------------------------------------------------------------------------------- /common/src/main/resources/data/spell_engine/tags/item/spell_books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/spell_engine/tags/item/spell_books.json -------------------------------------------------------------------------------- /common/src/main/resources/data/spell_engine/tags/spell/treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/spell_engine/tags/spell/treasure.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/desert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/desert.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/plains.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/savanna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/savanna.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/snowy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/snowy.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/lithostitched/worldgen_modifier/village/taiga.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/loot_table/chests/village_wizard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/loot_table/chests/village_wizard.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/recipe/staff_crystal_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/recipe/staff_crystal_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/recipe/staff_ruby_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/recipe/staff_ruby_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/recipe/staff_smaragdant_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/recipe/staff_smaragdant_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_badlands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_badlands.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_bamboo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_bamboo.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_birch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_birch.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_cherry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_cherry.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_dark_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_dark_forest.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_giant_taiga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_giant_taiga.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_jungle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_jungle.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_mountains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_mountains.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_mushroom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_mushroom.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_oak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_oak.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_ocean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_ocean.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_swamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pieces_spawn_counts/village_swamp.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/badlands/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/badlands/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/bamboo/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/bamboo/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/birch/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/birch/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/cherry/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/cherry/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/dark_forest/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/dark_forest/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/giant_taiga/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/giant_taiga/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/jungle/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/jungle/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/mountains/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/mountains/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/mushroom/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/mushroom/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/oak/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/oak/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/ocean/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/ocean/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/rs_pool_additions/villages/swamp/houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/rs_pool_additions/villages/swamp/houses.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/aether_wizard_staff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/aether_wizard_staff.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_crystal_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_crystal_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_ruby_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_ruby_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_smaragdant_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_smaragdant_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/staff_wizard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/staff_wizard.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/wand_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/wand_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/wand_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/wand_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/wand_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/wand_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/wand_netherite_arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/wand_netherite_arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/wand_netherite_fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/wand_netherite_fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/wand_netherite_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/wand_netherite_frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/spell_assignments/wand_novice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/spell_assignments/wand_novice.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/village/desert/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/village/desert/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/village/desert/wizard_tower_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/village/desert/wizard_tower_2.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/village/plains/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/village/plains/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/village/savanna/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/village/savanna/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/village/snowy/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/village/snowy/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/village/snowy/wizard_tower_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/village/snowy/wizard_tower_2.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/village/taiga/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/village/taiga/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/badlands/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/badlands/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/badlands/wizard_tower_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/badlands/wizard_tower_2.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/bamboo/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/bamboo/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/birch/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/birch/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/cherry/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/cherry/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/dark_forest/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/dark_forest/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/giant_taiga/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/giant_taiga/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/jungle/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/jungle/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/mountains/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/mountains/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/mushroom/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/mushroom/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/oak/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/oak/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/ocean/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/ocean/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/swamp/wizard_tower.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/swamp/wizard_tower.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/structure/villages/swamp/wizard_tower_2.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/structure/villages/swamp/wizard_tower_2.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/tags/item/staves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/tags/item/staves.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/tags/item/wands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/tags/item/wands.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/tags/item/wizard_robes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/tags/item/wizard_robes.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/tags/item/wizard_runes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/tags/item/wizard_runes.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/tags/spell/arcane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/tags/spell/arcane.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/tags/spell/fire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/tags/spell/fire.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/tags/spell/frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/data/wizards/tags/spell/frost.json -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/aether_wizard_staff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_arcane.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_crystal_arcane.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_frost.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_netherite_arcane.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_netherite_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_netherite_frost.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_ruby_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_smaragdant_frost.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/staff_wizard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:staff" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/wand_arcane.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:wand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/wand_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:wand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/wand_frost.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:wand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/wand_netherite_arcane.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:wand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/wand_netherite_fire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:wand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/wand_netherite_frost.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:wand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/wizards/weapon_attributes/wand_novice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:wand" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/icon.png -------------------------------------------------------------------------------- /common/src/main/resources/wizards.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/common/src/main/resources/wizards.mixins.json -------------------------------------------------------------------------------- /fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/fabric/build.gradle -------------------------------------------------------------------------------- /fabric/src/main/java/net/wizards/fabric/FabricMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/fabric/src/main/java/net/wizards/fabric/FabricMod.java -------------------------------------------------------------------------------- /fabric/src/main/java/net/wizards/fabric/client/FabricClientMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/fabric/src/main/java/net/wizards/fabric/client/FabricClientMod.java -------------------------------------------------------------------------------- /fabric/src/main/java/net/wizards/fabric/datagen/WizardRecipes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/fabric/src/main/java/net/wizards/fabric/datagen/WizardRecipes.java -------------------------------------------------------------------------------- /fabric/src/main/java/net/wizards/fabric/datagen/WizardsDataGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/fabric/src/main/java/net/wizards/fabric/datagen/WizardsDataGenerator.java -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/gradlew.bat -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/icon.png -------------------------------------------------------------------------------- /neoforge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/neoforge/build.gradle -------------------------------------------------------------------------------- /neoforge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform = neoforge 2 | -------------------------------------------------------------------------------- /neoforge/src/main/java/net/wizards/neoforge/NeoForgeMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/neoforge/src/main/java/net/wizards/neoforge/NeoForgeMod.java -------------------------------------------------------------------------------- /neoforge/src/main/java/net/wizards/neoforge/client/NeoForgeClientMod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/neoforge/src/main/java/net/wizards/neoforge/client/NeoForgeClientMod.java -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/neoforge/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZsoltMolnarrr/Wizards/HEAD/settings.gradle --------------------------------------------------------------------------------