├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── crash-report.md │ └── feature_request.md ├── .gitignore ├── Common ├── build.gradle └── src │ └── main │ ├── java │ └── com │ │ └── autovw │ │ └── advancednetherite │ │ ├── AdvancedNetherite.java │ │ ├── api │ │ ├── TooltipBuilder.java │ │ ├── annotation │ │ │ └── Internal.java │ │ └── impl │ │ │ ├── IAdvancedHooks.java │ │ │ ├── IArmorMaterial.java │ │ │ └── IToolMaterial.java │ │ ├── client │ │ └── screen │ │ │ └── ConfigScreen.java │ │ ├── common │ │ ├── AdvancedUtil.java │ │ └── item │ │ │ ├── AdvancedArmorItem.java │ │ │ ├── AdvancedAxeItem.java │ │ │ ├── AdvancedBlockItem.java │ │ │ ├── AdvancedHoeItem.java │ │ │ ├── AdvancedItem.java │ │ │ ├── AdvancedPickaxeItem.java │ │ │ ├── AdvancedShovelItem.java │ │ │ └── AdvancedSwordItem.java │ │ ├── config │ │ ├── ConfigHelper.java │ │ ├── IClientConfig.java │ │ ├── ICommonConfig.java │ │ ├── IServerConfig.java │ │ ├── common │ │ │ └── IAdditionalDropsConfig.java │ │ └── server │ │ │ ├── IAdditionalDropPropertiesConfig.java │ │ │ └── IToolPropertiesConfig.java │ │ ├── core │ │ ├── ModBlocks.java │ │ ├── ModItems.java │ │ └── util │ │ │ ├── ModArmorMaterials.java │ │ │ ├── ModEquipmentAssets.java │ │ │ ├── ModTags.java │ │ │ ├── ModToolMaterials.java │ │ │ └── ModTooltips.java │ │ └── helper │ │ ├── IPlatformHelper.java │ │ └── IRegistryHelper.java │ └── resources │ ├── advancednetherite_banner.png │ ├── advancednetherite_logo.png │ └── assets │ └── advancednetherite │ ├── lang │ ├── en_us.json │ ├── es_ar.json │ ├── es_cl.json │ ├── es_es.json │ ├── es_mx.json │ ├── fr_fr.json │ ├── it_it.json │ ├── ja_jp.json │ ├── ko_kr.json │ ├── nl_nl.json │ ├── no_no.json │ ├── pt_br.json │ ├── ru_ru.json │ ├── tr_tr.json │ ├── uk_ua.json │ └── zh_cn.json │ └── textures │ ├── armor_bar │ └── armor_bar.png │ ├── block │ ├── netherite_diamond_block.png │ ├── netherite_emerald_block.png │ ├── netherite_gold_block.png │ └── netherite_iron_block.png │ ├── entity │ └── equipment │ │ ├── humanoid │ │ ├── netherite_diamond.png │ │ ├── netherite_emerald.png │ │ ├── netherite_gold.png │ │ └── netherite_iron.png │ │ └── humanoid_leggings │ │ ├── netherite_diamond.png │ │ ├── netherite_emerald.png │ │ ├── netherite_gold.png │ │ └── netherite_iron.png │ └── item │ ├── netherite_diamond_axe.png │ ├── netherite_diamond_boots.png │ ├── netherite_diamond_chestplate.png │ ├── netherite_diamond_helmet.png │ ├── netherite_diamond_hoe.png │ ├── netherite_diamond_ingot.png │ ├── netherite_diamond_leggings.png │ ├── netherite_diamond_pickaxe.png │ ├── netherite_diamond_shovel.png │ ├── netherite_diamond_sword.png │ ├── netherite_emerald_axe.png │ ├── netherite_emerald_boots.png │ ├── netherite_emerald_chestplate.png │ ├── netherite_emerald_helmet.png │ ├── netherite_emerald_hoe.png │ ├── netherite_emerald_ingot.png │ ├── netherite_emerald_leggings.png │ ├── netherite_emerald_pickaxe.png │ ├── netherite_emerald_shovel.png │ ├── netherite_emerald_sword.png │ ├── netherite_gold_axe.png │ ├── netherite_gold_boots.png │ ├── netherite_gold_chestplate.png │ ├── netherite_gold_helmet.png │ ├── netherite_gold_hoe.png │ ├── netherite_gold_ingot.png │ ├── netherite_gold_leggings.png │ ├── netherite_gold_pickaxe.png │ ├── netherite_gold_shovel.png │ ├── netherite_gold_sword.png │ ├── netherite_iron_axe.png │ ├── netherite_iron_boots.png │ ├── netherite_iron_chestplate.png │ ├── netherite_iron_helmet.png │ ├── netherite_iron_hoe.png │ ├── netherite_iron_ingot.png │ ├── netherite_iron_leggings.png │ ├── netherite_iron_pickaxe.png │ ├── netherite_iron_shovel.png │ └── netherite_iron_sword.png ├── Fabric ├── build.gradle └── src │ ├── generated │ └── resources │ │ ├── assets │ │ └── advancednetherite │ │ │ ├── blockstates │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_gold_block.json │ │ │ └── netherite_iron_block.json │ │ │ ├── equipment │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ └── netherite_iron.json │ │ │ ├── items │ │ │ ├── netherite_diamond_axe.json │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_diamond_boots.json │ │ │ ├── netherite_diamond_chestplate.json │ │ │ ├── netherite_diamond_helmet.json │ │ │ ├── netherite_diamond_hoe.json │ │ │ ├── netherite_diamond_ingot.json │ │ │ ├── netherite_diamond_leggings.json │ │ │ ├── netherite_diamond_pickaxe.json │ │ │ ├── netherite_diamond_shovel.json │ │ │ ├── netherite_diamond_sword.json │ │ │ ├── netherite_emerald_axe.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_emerald_boots.json │ │ │ ├── netherite_emerald_chestplate.json │ │ │ ├── netherite_emerald_helmet.json │ │ │ ├── netherite_emerald_hoe.json │ │ │ ├── netherite_emerald_ingot.json │ │ │ ├── netherite_emerald_leggings.json │ │ │ ├── netherite_emerald_pickaxe.json │ │ │ ├── netherite_emerald_shovel.json │ │ │ ├── netherite_emerald_sword.json │ │ │ ├── netherite_gold_axe.json │ │ │ ├── netherite_gold_block.json │ │ │ ├── netherite_gold_boots.json │ │ │ ├── netherite_gold_chestplate.json │ │ │ ├── netherite_gold_helmet.json │ │ │ ├── netherite_gold_hoe.json │ │ │ ├── netherite_gold_ingot.json │ │ │ ├── netherite_gold_leggings.json │ │ │ ├── netherite_gold_pickaxe.json │ │ │ ├── netherite_gold_shovel.json │ │ │ ├── netherite_gold_sword.json │ │ │ ├── netherite_iron_axe.json │ │ │ ├── netherite_iron_block.json │ │ │ ├── netherite_iron_boots.json │ │ │ ├── netherite_iron_chestplate.json │ │ │ ├── netherite_iron_helmet.json │ │ │ ├── netherite_iron_hoe.json │ │ │ ├── netherite_iron_ingot.json │ │ │ ├── netherite_iron_leggings.json │ │ │ ├── netherite_iron_pickaxe.json │ │ │ ├── netherite_iron_shovel.json │ │ │ └── netherite_iron_sword.json │ │ │ └── models │ │ │ ├── block │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_gold_block.json │ │ │ └── netherite_iron_block.json │ │ │ └── item │ │ │ ├── netherite_diamond_axe.json │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_diamond_boots.json │ │ │ ├── netherite_diamond_boots_amethyst_trim.json │ │ │ ├── netherite_diamond_boots_copper_trim.json │ │ │ ├── netherite_diamond_boots_diamond_trim.json │ │ │ ├── netherite_diamond_boots_emerald_trim.json │ │ │ ├── netherite_diamond_boots_gold_trim.json │ │ │ ├── netherite_diamond_boots_iron_trim.json │ │ │ ├── netherite_diamond_boots_lapis_trim.json │ │ │ ├── netherite_diamond_boots_netherite_trim.json │ │ │ ├── netherite_diamond_boots_quartz_trim.json │ │ │ ├── netherite_diamond_boots_redstone_trim.json │ │ │ ├── netherite_diamond_boots_resin_trim.json │ │ │ ├── netherite_diamond_chestplate.json │ │ │ ├── netherite_diamond_chestplate_amethyst_trim.json │ │ │ ├── netherite_diamond_chestplate_copper_trim.json │ │ │ ├── netherite_diamond_chestplate_diamond_trim.json │ │ │ ├── netherite_diamond_chestplate_emerald_trim.json │ │ │ ├── netherite_diamond_chestplate_gold_trim.json │ │ │ ├── netherite_diamond_chestplate_iron_trim.json │ │ │ ├── netherite_diamond_chestplate_lapis_trim.json │ │ │ ├── netherite_diamond_chestplate_netherite_trim.json │ │ │ ├── netherite_diamond_chestplate_quartz_trim.json │ │ │ ├── netherite_diamond_chestplate_redstone_trim.json │ │ │ ├── netherite_diamond_chestplate_resin_trim.json │ │ │ ├── netherite_diamond_helmet.json │ │ │ ├── netherite_diamond_helmet_amethyst_trim.json │ │ │ ├── netherite_diamond_helmet_copper_trim.json │ │ │ ├── netherite_diamond_helmet_diamond_trim.json │ │ │ ├── netherite_diamond_helmet_emerald_trim.json │ │ │ ├── netherite_diamond_helmet_gold_trim.json │ │ │ ├── netherite_diamond_helmet_iron_trim.json │ │ │ ├── netherite_diamond_helmet_lapis_trim.json │ │ │ ├── netherite_diamond_helmet_netherite_trim.json │ │ │ ├── netherite_diamond_helmet_quartz_trim.json │ │ │ ├── netherite_diamond_helmet_redstone_trim.json │ │ │ ├── netherite_diamond_helmet_resin_trim.json │ │ │ ├── netherite_diamond_hoe.json │ │ │ ├── netherite_diamond_ingot.json │ │ │ ├── netherite_diamond_leggings.json │ │ │ ├── netherite_diamond_leggings_amethyst_trim.json │ │ │ ├── netherite_diamond_leggings_copper_trim.json │ │ │ ├── netherite_diamond_leggings_diamond_trim.json │ │ │ ├── netherite_diamond_leggings_emerald_trim.json │ │ │ ├── netherite_diamond_leggings_gold_trim.json │ │ │ ├── netherite_diamond_leggings_iron_trim.json │ │ │ ├── netherite_diamond_leggings_lapis_trim.json │ │ │ ├── netherite_diamond_leggings_netherite_trim.json │ │ │ ├── netherite_diamond_leggings_quartz_trim.json │ │ │ ├── netherite_diamond_leggings_redstone_trim.json │ │ │ ├── netherite_diamond_leggings_resin_trim.json │ │ │ ├── netherite_diamond_pickaxe.json │ │ │ ├── netherite_diamond_shovel.json │ │ │ ├── netherite_diamond_sword.json │ │ │ ├── netherite_emerald_axe.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_emerald_boots.json │ │ │ ├── netherite_emerald_boots_amethyst_trim.json │ │ │ ├── netherite_emerald_boots_copper_trim.json │ │ │ ├── netherite_emerald_boots_diamond_trim.json │ │ │ ├── netherite_emerald_boots_emerald_trim.json │ │ │ ├── netherite_emerald_boots_gold_trim.json │ │ │ ├── netherite_emerald_boots_iron_trim.json │ │ │ ├── netherite_emerald_boots_lapis_trim.json │ │ │ ├── netherite_emerald_boots_netherite_trim.json │ │ │ ├── netherite_emerald_boots_quartz_trim.json │ │ │ ├── netherite_emerald_boots_redstone_trim.json │ │ │ ├── netherite_emerald_boots_resin_trim.json │ │ │ ├── netherite_emerald_chestplate.json │ │ │ ├── netherite_emerald_chestplate_amethyst_trim.json │ │ │ ├── netherite_emerald_chestplate_copper_trim.json │ │ │ ├── netherite_emerald_chestplate_diamond_trim.json │ │ │ ├── netherite_emerald_chestplate_emerald_trim.json │ │ │ ├── netherite_emerald_chestplate_gold_trim.json │ │ │ ├── netherite_emerald_chestplate_iron_trim.json │ │ │ ├── netherite_emerald_chestplate_lapis_trim.json │ │ │ ├── netherite_emerald_chestplate_netherite_trim.json │ │ │ ├── netherite_emerald_chestplate_quartz_trim.json │ │ │ ├── netherite_emerald_chestplate_redstone_trim.json │ │ │ ├── netherite_emerald_chestplate_resin_trim.json │ │ │ ├── netherite_emerald_helmet.json │ │ │ ├── netherite_emerald_helmet_amethyst_trim.json │ │ │ ├── netherite_emerald_helmet_copper_trim.json │ │ │ ├── netherite_emerald_helmet_diamond_trim.json │ │ │ ├── netherite_emerald_helmet_emerald_trim.json │ │ │ ├── netherite_emerald_helmet_gold_trim.json │ │ │ ├── netherite_emerald_helmet_iron_trim.json │ │ │ ├── netherite_emerald_helmet_lapis_trim.json │ │ │ ├── netherite_emerald_helmet_netherite_trim.json │ │ │ ├── netherite_emerald_helmet_quartz_trim.json │ │ │ ├── netherite_emerald_helmet_redstone_trim.json │ │ │ ├── netherite_emerald_helmet_resin_trim.json │ │ │ ├── netherite_emerald_hoe.json │ │ │ ├── netherite_emerald_ingot.json │ │ │ ├── netherite_emerald_leggings.json │ │ │ ├── netherite_emerald_leggings_amethyst_trim.json │ │ │ ├── netherite_emerald_leggings_copper_trim.json │ │ │ ├── netherite_emerald_leggings_diamond_trim.json │ │ │ ├── netherite_emerald_leggings_emerald_trim.json │ │ │ ├── netherite_emerald_leggings_gold_trim.json │ │ │ ├── netherite_emerald_leggings_iron_trim.json │ │ │ ├── netherite_emerald_leggings_lapis_trim.json │ │ │ ├── netherite_emerald_leggings_netherite_trim.json │ │ │ ├── netherite_emerald_leggings_quartz_trim.json │ │ │ ├── netherite_emerald_leggings_redstone_trim.json │ │ │ ├── netherite_emerald_leggings_resin_trim.json │ │ │ ├── netherite_emerald_pickaxe.json │ │ │ ├── netherite_emerald_shovel.json │ │ │ ├── netherite_emerald_sword.json │ │ │ ├── netherite_gold_axe.json │ │ │ ├── netherite_gold_block.json │ │ │ ├── netherite_gold_boots.json │ │ │ ├── netherite_gold_boots_amethyst_trim.json │ │ │ ├── netherite_gold_boots_copper_trim.json │ │ │ ├── netherite_gold_boots_diamond_trim.json │ │ │ ├── netherite_gold_boots_emerald_trim.json │ │ │ ├── netherite_gold_boots_gold_trim.json │ │ │ ├── netherite_gold_boots_iron_trim.json │ │ │ ├── netherite_gold_boots_lapis_trim.json │ │ │ ├── netherite_gold_boots_netherite_trim.json │ │ │ ├── netherite_gold_boots_quartz_trim.json │ │ │ ├── netherite_gold_boots_redstone_trim.json │ │ │ ├── netherite_gold_boots_resin_trim.json │ │ │ ├── netherite_gold_chestplate.json │ │ │ ├── netherite_gold_chestplate_amethyst_trim.json │ │ │ ├── netherite_gold_chestplate_copper_trim.json │ │ │ ├── netherite_gold_chestplate_diamond_trim.json │ │ │ ├── netherite_gold_chestplate_emerald_trim.json │ │ │ ├── netherite_gold_chestplate_gold_trim.json │ │ │ ├── netherite_gold_chestplate_iron_trim.json │ │ │ ├── netherite_gold_chestplate_lapis_trim.json │ │ │ ├── netherite_gold_chestplate_netherite_trim.json │ │ │ ├── netherite_gold_chestplate_quartz_trim.json │ │ │ ├── netherite_gold_chestplate_redstone_trim.json │ │ │ ├── netherite_gold_chestplate_resin_trim.json │ │ │ ├── netherite_gold_helmet.json │ │ │ ├── netherite_gold_helmet_amethyst_trim.json │ │ │ ├── netherite_gold_helmet_copper_trim.json │ │ │ ├── netherite_gold_helmet_diamond_trim.json │ │ │ ├── netherite_gold_helmet_emerald_trim.json │ │ │ ├── netherite_gold_helmet_gold_trim.json │ │ │ ├── netherite_gold_helmet_iron_trim.json │ │ │ ├── netherite_gold_helmet_lapis_trim.json │ │ │ ├── netherite_gold_helmet_netherite_trim.json │ │ │ ├── netherite_gold_helmet_quartz_trim.json │ │ │ ├── netherite_gold_helmet_redstone_trim.json │ │ │ ├── netherite_gold_helmet_resin_trim.json │ │ │ ├── netherite_gold_hoe.json │ │ │ ├── netherite_gold_ingot.json │ │ │ ├── netherite_gold_leggings.json │ │ │ ├── netherite_gold_leggings_amethyst_trim.json │ │ │ ├── netherite_gold_leggings_copper_trim.json │ │ │ ├── netherite_gold_leggings_diamond_trim.json │ │ │ ├── netherite_gold_leggings_emerald_trim.json │ │ │ ├── netherite_gold_leggings_gold_trim.json │ │ │ ├── netherite_gold_leggings_iron_trim.json │ │ │ ├── netherite_gold_leggings_lapis_trim.json │ │ │ ├── netherite_gold_leggings_netherite_trim.json │ │ │ ├── netherite_gold_leggings_quartz_trim.json │ │ │ ├── netherite_gold_leggings_redstone_trim.json │ │ │ ├── netherite_gold_leggings_resin_trim.json │ │ │ ├── netherite_gold_pickaxe.json │ │ │ ├── netherite_gold_shovel.json │ │ │ ├── netherite_gold_sword.json │ │ │ ├── netherite_iron_axe.json │ │ │ ├── netherite_iron_block.json │ │ │ ├── netherite_iron_boots.json │ │ │ ├── netherite_iron_boots_amethyst_trim.json │ │ │ ├── netherite_iron_boots_copper_trim.json │ │ │ ├── netherite_iron_boots_diamond_trim.json │ │ │ ├── netherite_iron_boots_emerald_trim.json │ │ │ ├── netherite_iron_boots_gold_trim.json │ │ │ ├── netherite_iron_boots_iron_trim.json │ │ │ ├── netherite_iron_boots_lapis_trim.json │ │ │ ├── netherite_iron_boots_netherite_trim.json │ │ │ ├── netherite_iron_boots_quartz_trim.json │ │ │ ├── netherite_iron_boots_redstone_trim.json │ │ │ ├── netherite_iron_boots_resin_trim.json │ │ │ ├── netherite_iron_chestplate.json │ │ │ ├── netherite_iron_chestplate_amethyst_trim.json │ │ │ ├── netherite_iron_chestplate_copper_trim.json │ │ │ ├── netherite_iron_chestplate_diamond_trim.json │ │ │ ├── netherite_iron_chestplate_emerald_trim.json │ │ │ ├── netherite_iron_chestplate_gold_trim.json │ │ │ ├── netherite_iron_chestplate_iron_trim.json │ │ │ ├── netherite_iron_chestplate_lapis_trim.json │ │ │ ├── netherite_iron_chestplate_netherite_trim.json │ │ │ ├── netherite_iron_chestplate_quartz_trim.json │ │ │ ├── netherite_iron_chestplate_redstone_trim.json │ │ │ ├── netherite_iron_chestplate_resin_trim.json │ │ │ ├── netherite_iron_helmet.json │ │ │ ├── netherite_iron_helmet_amethyst_trim.json │ │ │ ├── netherite_iron_helmet_copper_trim.json │ │ │ ├── netherite_iron_helmet_diamond_trim.json │ │ │ ├── netherite_iron_helmet_emerald_trim.json │ │ │ ├── netherite_iron_helmet_gold_trim.json │ │ │ ├── netherite_iron_helmet_iron_trim.json │ │ │ ├── netherite_iron_helmet_lapis_trim.json │ │ │ ├── netherite_iron_helmet_netherite_trim.json │ │ │ ├── netherite_iron_helmet_quartz_trim.json │ │ │ ├── netherite_iron_helmet_redstone_trim.json │ │ │ ├── netherite_iron_helmet_resin_trim.json │ │ │ ├── netherite_iron_hoe.json │ │ │ ├── netherite_iron_ingot.json │ │ │ ├── netherite_iron_leggings.json │ │ │ ├── netherite_iron_leggings_amethyst_trim.json │ │ │ ├── netherite_iron_leggings_copper_trim.json │ │ │ ├── netherite_iron_leggings_diamond_trim.json │ │ │ ├── netherite_iron_leggings_emerald_trim.json │ │ │ ├── netherite_iron_leggings_gold_trim.json │ │ │ ├── netherite_iron_leggings_iron_trim.json │ │ │ ├── netherite_iron_leggings_lapis_trim.json │ │ │ ├── netherite_iron_leggings_netherite_trim.json │ │ │ ├── netherite_iron_leggings_quartz_trim.json │ │ │ ├── netherite_iron_leggings_redstone_trim.json │ │ │ ├── netherite_iron_leggings_resin_trim.json │ │ │ ├── netherite_iron_pickaxe.json │ │ │ ├── netherite_iron_shovel.json │ │ │ └── netherite_iron_sword.json │ │ └── data │ │ ├── advancednetherite │ │ ├── advancement │ │ │ ├── husbandry │ │ │ │ └── obtain_netherite_diamond_hoe.json │ │ │ ├── nether │ │ │ │ ├── netherite_diamond_armor.json │ │ │ │ ├── netherite_emerald_armor.json │ │ │ │ ├── netherite_gold_armor.json │ │ │ │ ├── netherite_iron_armor.json │ │ │ │ ├── obtain_netherite_diamond_block.json │ │ │ │ └── obtain_netherite_iron_ingot.json │ │ │ └── recipes │ │ │ │ ├── building_blocks │ │ │ │ ├── netherite_diamond_block.json │ │ │ │ ├── netherite_emerald_block.json │ │ │ │ ├── netherite_gold_block.json │ │ │ │ └── netherite_iron_block.json │ │ │ │ └── misc │ │ │ │ ├── lodestone.json │ │ │ │ ├── netherite_diamond_axe_smithing.json │ │ │ │ ├── netherite_diamond_boots_smithing.json │ │ │ │ ├── netherite_diamond_chestplate_smithing.json │ │ │ │ ├── netherite_diamond_helmet_smithing.json │ │ │ │ ├── netherite_diamond_hoe_smithing.json │ │ │ │ ├── netherite_diamond_ingot.json │ │ │ │ ├── netherite_diamond_ingot_from_block.json │ │ │ │ ├── netherite_diamond_leggings_smithing.json │ │ │ │ ├── netherite_diamond_pickaxe_smithing.json │ │ │ │ ├── netherite_diamond_shovel_smithing.json │ │ │ │ ├── netherite_diamond_sword_smithing.json │ │ │ │ ├── netherite_emerald_axe_smithing.json │ │ │ │ ├── netherite_emerald_boots_smithing.json │ │ │ │ ├── netherite_emerald_chestplate_smithing.json │ │ │ │ ├── netherite_emerald_helmet_smithing.json │ │ │ │ ├── netherite_emerald_hoe_smithing.json │ │ │ │ ├── netherite_emerald_ingot.json │ │ │ │ ├── netherite_emerald_ingot_from_block.json │ │ │ │ ├── netherite_emerald_leggings_smithing.json │ │ │ │ ├── netherite_emerald_pickaxe_smithing.json │ │ │ │ ├── netherite_emerald_shovel_smithing.json │ │ │ │ ├── netherite_emerald_sword_smithing.json │ │ │ │ ├── netherite_gold_axe_smithing.json │ │ │ │ ├── netherite_gold_boots_smithing.json │ │ │ │ ├── netherite_gold_chestplate_smithing.json │ │ │ │ ├── netherite_gold_helmet_smithing.json │ │ │ │ ├── netherite_gold_hoe_smithing.json │ │ │ │ ├── netherite_gold_ingot.json │ │ │ │ ├── netherite_gold_ingot_from_block.json │ │ │ │ ├── netherite_gold_leggings_smithing.json │ │ │ │ ├── netherite_gold_pickaxe_smithing.json │ │ │ │ ├── netherite_gold_shovel_smithing.json │ │ │ │ ├── netherite_gold_sword_smithing.json │ │ │ │ ├── netherite_iron_axe_smithing.json │ │ │ │ ├── netherite_iron_boots_smithing.json │ │ │ │ ├── netherite_iron_chestplate_smithing.json │ │ │ │ ├── netherite_iron_helmet_smithing.json │ │ │ │ ├── netherite_iron_hoe_smithing.json │ │ │ │ ├── netherite_iron_ingot.json │ │ │ │ ├── netherite_iron_ingot_from_block.json │ │ │ │ ├── netherite_iron_leggings_smithing.json │ │ │ │ ├── netherite_iron_pickaxe_smithing.json │ │ │ │ ├── netherite_iron_shovel_smithing.json │ │ │ │ └── netherite_iron_sword_smithing.json │ │ ├── loot_table │ │ │ └── blocks │ │ │ │ ├── netherite_diamond_block.json │ │ │ │ ├── netherite_emerald_block.json │ │ │ │ ├── netherite_gold_block.json │ │ │ │ └── netherite_iron_block.json │ │ ├── recipe │ │ │ ├── lodestone.json │ │ │ ├── netherite_diamond_axe_smithing.json │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_diamond_boots_smithing.json │ │ │ ├── netherite_diamond_chestplate_smithing.json │ │ │ ├── netherite_diamond_helmet_smithing.json │ │ │ ├── netherite_diamond_hoe_smithing.json │ │ │ ├── netherite_diamond_ingot.json │ │ │ ├── netherite_diamond_ingot_from_block.json │ │ │ ├── netherite_diamond_leggings_smithing.json │ │ │ ├── netherite_diamond_pickaxe_smithing.json │ │ │ ├── netherite_diamond_shovel_smithing.json │ │ │ ├── netherite_diamond_sword_smithing.json │ │ │ ├── netherite_emerald_axe_smithing.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_emerald_boots_smithing.json │ │ │ ├── netherite_emerald_chestplate_smithing.json │ │ │ ├── netherite_emerald_helmet_smithing.json │ │ │ ├── netherite_emerald_hoe_smithing.json │ │ │ ├── netherite_emerald_ingot.json │ │ │ ├── netherite_emerald_ingot_from_block.json │ │ │ ├── netherite_emerald_leggings_smithing.json │ │ │ ├── netherite_emerald_pickaxe_smithing.json │ │ │ ├── netherite_emerald_shovel_smithing.json │ │ │ ├── netherite_emerald_sword_smithing.json │ │ │ ├── netherite_gold_axe_smithing.json │ │ │ ├── netherite_gold_block.json │ │ │ ├── netherite_gold_boots_smithing.json │ │ │ ├── netherite_gold_chestplate_smithing.json │ │ │ ├── netherite_gold_helmet_smithing.json │ │ │ ├── netherite_gold_hoe_smithing.json │ │ │ ├── netherite_gold_ingot.json │ │ │ ├── netherite_gold_ingot_from_block.json │ │ │ ├── netherite_gold_leggings_smithing.json │ │ │ ├── netherite_gold_pickaxe_smithing.json │ │ │ ├── netherite_gold_shovel_smithing.json │ │ │ ├── netherite_gold_sword_smithing.json │ │ │ ├── netherite_iron_axe_smithing.json │ │ │ ├── netherite_iron_block.json │ │ │ ├── netherite_iron_boots_smithing.json │ │ │ ├── netherite_iron_chestplate_smithing.json │ │ │ ├── netherite_iron_helmet_smithing.json │ │ │ ├── netherite_iron_hoe_smithing.json │ │ │ ├── netherite_iron_ingot.json │ │ │ ├── netherite_iron_ingot_from_block.json │ │ │ ├── netherite_iron_leggings_smithing.json │ │ │ ├── netherite_iron_pickaxe_smithing.json │ │ │ ├── netherite_iron_shovel_smithing.json │ │ │ └── netherite_iron_sword_smithing.json │ │ └── tags │ │ │ ├── block │ │ │ ├── incorrect_for_netherite_diamond_tool.json │ │ │ ├── incorrect_for_netherite_emerald_tool.json │ │ │ ├── incorrect_for_netherite_gold_tool.json │ │ │ ├── incorrect_for_netherite_iron_tool.json │ │ │ └── netherite_blocks.json │ │ │ ├── enchantment │ │ │ └── prevents_additional_ore_drops.json │ │ │ └── item │ │ │ ├── axe │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── boots │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── chestplate │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── drops_additional_crops.json │ │ │ ├── drops_additional_diamond.json │ │ │ ├── drops_additional_emerald.json │ │ │ ├── drops_additional_enderman_loot.json │ │ │ ├── drops_additional_gold.json │ │ │ ├── drops_additional_iron.json │ │ │ ├── drops_additional_phantom_loot.json │ │ │ ├── drops_additional_piglin_loot.json │ │ │ ├── drops_additional_zombified_piglin_loot.json │ │ │ ├── helmet │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── hoe │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── ingot │ │ │ ├── netherites.json │ │ │ ├── netherites_diamond.json │ │ │ ├── netherites_emerald.json │ │ │ ├── netherites_gold.json │ │ │ ├── netherites_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── leggings │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── netherite_blocks.json │ │ │ ├── netherite_ingots.json │ │ │ ├── pacify_endermen_armor.json │ │ │ ├── pacify_phantoms_armor.json │ │ │ ├── pacify_piglins_armor.json │ │ │ ├── pickaxe │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── repairs_netherite_diamond_armor.json │ │ │ ├── repairs_netherite_diamond_tools.json │ │ │ ├── repairs_netherite_emerald_armor.json │ │ │ ├── repairs_netherite_emerald_tools.json │ │ │ ├── repairs_netherite_gold_armor.json │ │ │ ├── repairs_netherite_gold_tools.json │ │ │ ├── repairs_netherite_iron_armor.json │ │ │ ├── repairs_netherite_iron_tools.json │ │ │ ├── shovel │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── sword │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── tier │ │ │ ├── armor.json │ │ │ ├── armor │ │ │ │ ├── netherite_diamond.json │ │ │ │ ├── netherite_emerald.json │ │ │ │ ├── netherite_gold.json │ │ │ │ └── netherite_iron.json │ │ │ ├── tool │ │ │ │ ├── netherite_diamond.json │ │ │ │ ├── netherite_emerald.json │ │ │ │ ├── netherite_gold.json │ │ │ │ └── netherite_iron.json │ │ │ └── tools.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ ├── c │ │ └── tags │ │ │ └── block │ │ │ └── netherite_blocks.json │ │ ├── minecraft │ │ └── tags │ │ │ ├── block │ │ │ ├── beacon_base_blocks.json │ │ │ ├── guarded_by_piglins.json │ │ │ ├── mineable │ │ │ │ └── pickaxe.json │ │ │ └── needs_diamond_tool.json │ │ │ └── item │ │ │ ├── axes.json │ │ │ ├── beacon_payment_items.json │ │ │ ├── chest_armor.json │ │ │ ├── cluster_max_harvestables.json │ │ │ ├── foot_armor.json │ │ │ ├── head_armor.json │ │ │ ├── hoes.json │ │ │ ├── leg_armor.json │ │ │ ├── pickaxes.json │ │ │ ├── piglin_loved.json │ │ │ ├── piglin_safe_armor.json │ │ │ ├── shovels.json │ │ │ ├── swords.json │ │ │ └── trimmable_armor.json │ │ └── tooltiprareness │ │ └── tags │ │ └── item │ │ └── epic_item.json │ └── main │ ├── java │ └── com │ │ └── autovw │ │ └── advancednetherite │ │ ├── AdvancedNetheriteFabric.java │ │ ├── AdvancedNetheriteTab.java │ │ ├── FabricPlatformHelper.java │ │ ├── client │ │ └── ClientHandler.java │ │ ├── common │ │ └── ModLootTableModifiers.java │ │ ├── config │ │ └── TempConfig.java │ │ ├── core │ │ ├── registry │ │ │ ├── ModBlockRegistry.java │ │ │ └── ModItemRegistry.java │ │ └── util │ │ │ └── FabricModTags.java │ │ ├── datagen │ │ ├── ModDataGenerator.java │ │ └── providers │ │ │ ├── ModAdvancementProvider.java │ │ │ ├── ModBlockLootTablesProvider.java │ │ │ ├── ModBlockTagsProvider.java │ │ │ ├── ModEnchantmentTagsProvider.java │ │ │ ├── ModEquipmentAssetProvider.java │ │ │ ├── ModItemTagsProvider.java │ │ │ ├── ModModelProvider.java │ │ │ └── ModRecipeProvider.java │ │ ├── mixin │ │ ├── EnderManMixin.java │ │ └── PhantomMixin.java │ │ └── registry │ │ └── FabricRegistryHelper.java │ └── resources │ ├── advancednetherite.mixins.json │ └── fabric.mod.json ├── Forge ├── build.gradle └── src │ ├── generated │ └── resources │ │ ├── assets │ │ └── advancednetherite │ │ │ ├── blockstates │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_gold_block.json │ │ │ └── netherite_iron_block.json │ │ │ ├── equipment │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ └── netherite_iron.json │ │ │ ├── items │ │ │ ├── netherite_diamond_axe.json │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_diamond_boots.json │ │ │ ├── netherite_diamond_chestplate.json │ │ │ ├── netherite_diamond_helmet.json │ │ │ ├── netherite_diamond_hoe.json │ │ │ ├── netherite_diamond_ingot.json │ │ │ ├── netherite_diamond_leggings.json │ │ │ ├── netherite_diamond_pickaxe.json │ │ │ ├── netherite_diamond_shovel.json │ │ │ ├── netherite_diamond_sword.json │ │ │ ├── netherite_emerald_axe.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_emerald_boots.json │ │ │ ├── netherite_emerald_chestplate.json │ │ │ ├── netherite_emerald_helmet.json │ │ │ ├── netherite_emerald_hoe.json │ │ │ ├── netherite_emerald_ingot.json │ │ │ ├── netherite_emerald_leggings.json │ │ │ ├── netherite_emerald_pickaxe.json │ │ │ ├── netherite_emerald_shovel.json │ │ │ ├── netherite_emerald_sword.json │ │ │ ├── netherite_gold_axe.json │ │ │ ├── netherite_gold_block.json │ │ │ ├── netherite_gold_boots.json │ │ │ ├── netherite_gold_chestplate.json │ │ │ ├── netherite_gold_helmet.json │ │ │ ├── netherite_gold_hoe.json │ │ │ ├── netherite_gold_ingot.json │ │ │ ├── netherite_gold_leggings.json │ │ │ ├── netherite_gold_pickaxe.json │ │ │ ├── netherite_gold_shovel.json │ │ │ ├── netherite_gold_sword.json │ │ │ ├── netherite_iron_axe.json │ │ │ ├── netherite_iron_block.json │ │ │ ├── netherite_iron_boots.json │ │ │ ├── netherite_iron_chestplate.json │ │ │ ├── netherite_iron_helmet.json │ │ │ ├── netherite_iron_hoe.json │ │ │ ├── netherite_iron_ingot.json │ │ │ ├── netherite_iron_leggings.json │ │ │ ├── netherite_iron_pickaxe.json │ │ │ ├── netherite_iron_shovel.json │ │ │ └── netherite_iron_sword.json │ │ │ └── models │ │ │ ├── block │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_gold_block.json │ │ │ └── netherite_iron_block.json │ │ │ └── item │ │ │ ├── netherite_diamond_axe.json │ │ │ ├── netherite_diamond_boots.json │ │ │ ├── netherite_diamond_boots_amethyst_trim.json │ │ │ ├── netherite_diamond_boots_copper_trim.json │ │ │ ├── netherite_diamond_boots_diamond_trim.json │ │ │ ├── netherite_diamond_boots_emerald_trim.json │ │ │ ├── netherite_diamond_boots_gold_trim.json │ │ │ ├── netherite_diamond_boots_iron_trim.json │ │ │ ├── netherite_diamond_boots_lapis_trim.json │ │ │ ├── netherite_diamond_boots_netherite_trim.json │ │ │ ├── netherite_diamond_boots_quartz_trim.json │ │ │ ├── netherite_diamond_boots_redstone_trim.json │ │ │ ├── netherite_diamond_boots_resin_trim.json │ │ │ ├── netherite_diamond_chestplate.json │ │ │ ├── netherite_diamond_chestplate_amethyst_trim.json │ │ │ ├── netherite_diamond_chestplate_copper_trim.json │ │ │ ├── netherite_diamond_chestplate_diamond_trim.json │ │ │ ├── netherite_diamond_chestplate_emerald_trim.json │ │ │ ├── netherite_diamond_chestplate_gold_trim.json │ │ │ ├── netherite_diamond_chestplate_iron_trim.json │ │ │ ├── netherite_diamond_chestplate_lapis_trim.json │ │ │ ├── netherite_diamond_chestplate_netherite_trim.json │ │ │ ├── netherite_diamond_chestplate_quartz_trim.json │ │ │ ├── netherite_diamond_chestplate_redstone_trim.json │ │ │ ├── netherite_diamond_chestplate_resin_trim.json │ │ │ ├── netherite_diamond_helmet.json │ │ │ ├── netherite_diamond_helmet_amethyst_trim.json │ │ │ ├── netherite_diamond_helmet_copper_trim.json │ │ │ ├── netherite_diamond_helmet_diamond_trim.json │ │ │ ├── netherite_diamond_helmet_emerald_trim.json │ │ │ ├── netherite_diamond_helmet_gold_trim.json │ │ │ ├── netherite_diamond_helmet_iron_trim.json │ │ │ ├── netherite_diamond_helmet_lapis_trim.json │ │ │ ├── netherite_diamond_helmet_netherite_trim.json │ │ │ ├── netherite_diamond_helmet_quartz_trim.json │ │ │ ├── netherite_diamond_helmet_redstone_trim.json │ │ │ ├── netherite_diamond_helmet_resin_trim.json │ │ │ ├── netherite_diamond_hoe.json │ │ │ ├── netherite_diamond_ingot.json │ │ │ ├── netherite_diamond_leggings.json │ │ │ ├── netherite_diamond_leggings_amethyst_trim.json │ │ │ ├── netherite_diamond_leggings_copper_trim.json │ │ │ ├── netherite_diamond_leggings_diamond_trim.json │ │ │ ├── netherite_diamond_leggings_emerald_trim.json │ │ │ ├── netherite_diamond_leggings_gold_trim.json │ │ │ ├── netherite_diamond_leggings_iron_trim.json │ │ │ ├── netherite_diamond_leggings_lapis_trim.json │ │ │ ├── netherite_diamond_leggings_netherite_trim.json │ │ │ ├── netherite_diamond_leggings_quartz_trim.json │ │ │ ├── netherite_diamond_leggings_redstone_trim.json │ │ │ ├── netherite_diamond_leggings_resin_trim.json │ │ │ ├── netherite_diamond_pickaxe.json │ │ │ ├── netherite_diamond_shovel.json │ │ │ ├── netherite_diamond_sword.json │ │ │ ├── netherite_emerald_axe.json │ │ │ ├── netherite_emerald_boots.json │ │ │ ├── netherite_emerald_boots_amethyst_trim.json │ │ │ ├── netherite_emerald_boots_copper_trim.json │ │ │ ├── netherite_emerald_boots_diamond_trim.json │ │ │ ├── netherite_emerald_boots_emerald_trim.json │ │ │ ├── netherite_emerald_boots_gold_trim.json │ │ │ ├── netherite_emerald_boots_iron_trim.json │ │ │ ├── netherite_emerald_boots_lapis_trim.json │ │ │ ├── netherite_emerald_boots_netherite_trim.json │ │ │ ├── netherite_emerald_boots_quartz_trim.json │ │ │ ├── netherite_emerald_boots_redstone_trim.json │ │ │ ├── netherite_emerald_boots_resin_trim.json │ │ │ ├── netherite_emerald_chestplate.json │ │ │ ├── netherite_emerald_chestplate_amethyst_trim.json │ │ │ ├── netherite_emerald_chestplate_copper_trim.json │ │ │ ├── netherite_emerald_chestplate_diamond_trim.json │ │ │ ├── netherite_emerald_chestplate_emerald_trim.json │ │ │ ├── netherite_emerald_chestplate_gold_trim.json │ │ │ ├── netherite_emerald_chestplate_iron_trim.json │ │ │ ├── netherite_emerald_chestplate_lapis_trim.json │ │ │ ├── netherite_emerald_chestplate_netherite_trim.json │ │ │ ├── netherite_emerald_chestplate_quartz_trim.json │ │ │ ├── netherite_emerald_chestplate_redstone_trim.json │ │ │ ├── netherite_emerald_chestplate_resin_trim.json │ │ │ ├── netherite_emerald_helmet.json │ │ │ ├── netherite_emerald_helmet_amethyst_trim.json │ │ │ ├── netherite_emerald_helmet_copper_trim.json │ │ │ ├── netherite_emerald_helmet_diamond_trim.json │ │ │ ├── netherite_emerald_helmet_emerald_trim.json │ │ │ ├── netherite_emerald_helmet_gold_trim.json │ │ │ ├── netherite_emerald_helmet_iron_trim.json │ │ │ ├── netherite_emerald_helmet_lapis_trim.json │ │ │ ├── netherite_emerald_helmet_netherite_trim.json │ │ │ ├── netherite_emerald_helmet_quartz_trim.json │ │ │ ├── netherite_emerald_helmet_redstone_trim.json │ │ │ ├── netherite_emerald_helmet_resin_trim.json │ │ │ ├── netherite_emerald_hoe.json │ │ │ ├── netherite_emerald_ingot.json │ │ │ ├── netherite_emerald_leggings.json │ │ │ ├── netherite_emerald_leggings_amethyst_trim.json │ │ │ ├── netherite_emerald_leggings_copper_trim.json │ │ │ ├── netherite_emerald_leggings_diamond_trim.json │ │ │ ├── netherite_emerald_leggings_emerald_trim.json │ │ │ ├── netherite_emerald_leggings_gold_trim.json │ │ │ ├── netherite_emerald_leggings_iron_trim.json │ │ │ ├── netherite_emerald_leggings_lapis_trim.json │ │ │ ├── netherite_emerald_leggings_netherite_trim.json │ │ │ ├── netherite_emerald_leggings_quartz_trim.json │ │ │ ├── netherite_emerald_leggings_redstone_trim.json │ │ │ ├── netherite_emerald_leggings_resin_trim.json │ │ │ ├── netherite_emerald_pickaxe.json │ │ │ ├── netherite_emerald_shovel.json │ │ │ ├── netherite_emerald_sword.json │ │ │ ├── netherite_gold_axe.json │ │ │ ├── netherite_gold_boots.json │ │ │ ├── netherite_gold_boots_amethyst_trim.json │ │ │ ├── netherite_gold_boots_copper_trim.json │ │ │ ├── netherite_gold_boots_diamond_trim.json │ │ │ ├── netherite_gold_boots_emerald_trim.json │ │ │ ├── netherite_gold_boots_gold_trim.json │ │ │ ├── netherite_gold_boots_iron_trim.json │ │ │ ├── netherite_gold_boots_lapis_trim.json │ │ │ ├── netherite_gold_boots_netherite_trim.json │ │ │ ├── netherite_gold_boots_quartz_trim.json │ │ │ ├── netherite_gold_boots_redstone_trim.json │ │ │ ├── netherite_gold_boots_resin_trim.json │ │ │ ├── netherite_gold_chestplate.json │ │ │ ├── netherite_gold_chestplate_amethyst_trim.json │ │ │ ├── netherite_gold_chestplate_copper_trim.json │ │ │ ├── netherite_gold_chestplate_diamond_trim.json │ │ │ ├── netherite_gold_chestplate_emerald_trim.json │ │ │ ├── netherite_gold_chestplate_gold_trim.json │ │ │ ├── netherite_gold_chestplate_iron_trim.json │ │ │ ├── netherite_gold_chestplate_lapis_trim.json │ │ │ ├── netherite_gold_chestplate_netherite_trim.json │ │ │ ├── netherite_gold_chestplate_quartz_trim.json │ │ │ ├── netherite_gold_chestplate_redstone_trim.json │ │ │ ├── netherite_gold_chestplate_resin_trim.json │ │ │ ├── netherite_gold_helmet.json │ │ │ ├── netherite_gold_helmet_amethyst_trim.json │ │ │ ├── netherite_gold_helmet_copper_trim.json │ │ │ ├── netherite_gold_helmet_diamond_trim.json │ │ │ ├── netherite_gold_helmet_emerald_trim.json │ │ │ ├── netherite_gold_helmet_gold_trim.json │ │ │ ├── netherite_gold_helmet_iron_trim.json │ │ │ ├── netherite_gold_helmet_lapis_trim.json │ │ │ ├── netherite_gold_helmet_netherite_trim.json │ │ │ ├── netherite_gold_helmet_quartz_trim.json │ │ │ ├── netherite_gold_helmet_redstone_trim.json │ │ │ ├── netherite_gold_helmet_resin_trim.json │ │ │ ├── netherite_gold_hoe.json │ │ │ ├── netherite_gold_ingot.json │ │ │ ├── netherite_gold_leggings.json │ │ │ ├── netherite_gold_leggings_amethyst_trim.json │ │ │ ├── netherite_gold_leggings_copper_trim.json │ │ │ ├── netherite_gold_leggings_diamond_trim.json │ │ │ ├── netherite_gold_leggings_emerald_trim.json │ │ │ ├── netherite_gold_leggings_gold_trim.json │ │ │ ├── netherite_gold_leggings_iron_trim.json │ │ │ ├── netherite_gold_leggings_lapis_trim.json │ │ │ ├── netherite_gold_leggings_netherite_trim.json │ │ │ ├── netherite_gold_leggings_quartz_trim.json │ │ │ ├── netherite_gold_leggings_redstone_trim.json │ │ │ ├── netherite_gold_leggings_resin_trim.json │ │ │ ├── netherite_gold_pickaxe.json │ │ │ ├── netherite_gold_shovel.json │ │ │ ├── netherite_gold_sword.json │ │ │ ├── netherite_iron_axe.json │ │ │ ├── netherite_iron_boots.json │ │ │ ├── netherite_iron_boots_amethyst_trim.json │ │ │ ├── netherite_iron_boots_copper_trim.json │ │ │ ├── netherite_iron_boots_diamond_trim.json │ │ │ ├── netherite_iron_boots_emerald_trim.json │ │ │ ├── netherite_iron_boots_gold_trim.json │ │ │ ├── netherite_iron_boots_iron_trim.json │ │ │ ├── netherite_iron_boots_lapis_trim.json │ │ │ ├── netherite_iron_boots_netherite_trim.json │ │ │ ├── netherite_iron_boots_quartz_trim.json │ │ │ ├── netherite_iron_boots_redstone_trim.json │ │ │ ├── netherite_iron_boots_resin_trim.json │ │ │ ├── netherite_iron_chestplate.json │ │ │ ├── netherite_iron_chestplate_amethyst_trim.json │ │ │ ├── netherite_iron_chestplate_copper_trim.json │ │ │ ├── netherite_iron_chestplate_diamond_trim.json │ │ │ ├── netherite_iron_chestplate_emerald_trim.json │ │ │ ├── netherite_iron_chestplate_gold_trim.json │ │ │ ├── netherite_iron_chestplate_iron_trim.json │ │ │ ├── netherite_iron_chestplate_lapis_trim.json │ │ │ ├── netherite_iron_chestplate_netherite_trim.json │ │ │ ├── netherite_iron_chestplate_quartz_trim.json │ │ │ ├── netherite_iron_chestplate_redstone_trim.json │ │ │ ├── netherite_iron_chestplate_resin_trim.json │ │ │ ├── netherite_iron_helmet.json │ │ │ ├── netherite_iron_helmet_amethyst_trim.json │ │ │ ├── netherite_iron_helmet_copper_trim.json │ │ │ ├── netherite_iron_helmet_diamond_trim.json │ │ │ ├── netherite_iron_helmet_emerald_trim.json │ │ │ ├── netherite_iron_helmet_gold_trim.json │ │ │ ├── netherite_iron_helmet_iron_trim.json │ │ │ ├── netherite_iron_helmet_lapis_trim.json │ │ │ ├── netherite_iron_helmet_netherite_trim.json │ │ │ ├── netherite_iron_helmet_quartz_trim.json │ │ │ ├── netherite_iron_helmet_redstone_trim.json │ │ │ ├── netherite_iron_helmet_resin_trim.json │ │ │ ├── netherite_iron_hoe.json │ │ │ ├── netherite_iron_ingot.json │ │ │ ├── netherite_iron_leggings.json │ │ │ ├── netherite_iron_leggings_amethyst_trim.json │ │ │ ├── netherite_iron_leggings_copper_trim.json │ │ │ ├── netherite_iron_leggings_diamond_trim.json │ │ │ ├── netherite_iron_leggings_emerald_trim.json │ │ │ ├── netherite_iron_leggings_gold_trim.json │ │ │ ├── netherite_iron_leggings_iron_trim.json │ │ │ ├── netherite_iron_leggings_lapis_trim.json │ │ │ ├── netherite_iron_leggings_netherite_trim.json │ │ │ ├── netherite_iron_leggings_quartz_trim.json │ │ │ ├── netherite_iron_leggings_redstone_trim.json │ │ │ ├── netherite_iron_leggings_resin_trim.json │ │ │ ├── netherite_iron_pickaxe.json │ │ │ ├── netherite_iron_shovel.json │ │ │ └── netherite_iron_sword.json │ │ └── data │ │ ├── advancednetherite │ │ ├── advancement │ │ │ ├── husbandry │ │ │ │ └── obtain_netherite_diamond_hoe.json │ │ │ ├── nether │ │ │ │ ├── netherite_diamond_armor.json │ │ │ │ ├── netherite_emerald_armor.json │ │ │ │ ├── netherite_gold_armor.json │ │ │ │ ├── netherite_iron_armor.json │ │ │ │ ├── obtain_netherite_diamond_block.json │ │ │ │ └── obtain_netherite_iron_ingot.json │ │ │ └── recipes │ │ │ │ ├── building_blocks │ │ │ │ ├── netherite_diamond_block.json │ │ │ │ ├── netherite_emerald_block.json │ │ │ │ ├── netherite_gold_block.json │ │ │ │ └── netherite_iron_block.json │ │ │ │ └── misc │ │ │ │ ├── lodestone.json │ │ │ │ ├── netherite_diamond_axe_smithing.json │ │ │ │ ├── netherite_diamond_boots_smithing.json │ │ │ │ ├── netherite_diamond_chestplate_smithing.json │ │ │ │ ├── netherite_diamond_helmet_smithing.json │ │ │ │ ├── netherite_diamond_hoe_smithing.json │ │ │ │ ├── netherite_diamond_ingot.json │ │ │ │ ├── netherite_diamond_ingot_from_block.json │ │ │ │ ├── netherite_diamond_leggings_smithing.json │ │ │ │ ├── netherite_diamond_pickaxe_smithing.json │ │ │ │ ├── netherite_diamond_shovel_smithing.json │ │ │ │ ├── netherite_diamond_sword_smithing.json │ │ │ │ ├── netherite_emerald_axe_smithing.json │ │ │ │ ├── netherite_emerald_boots_smithing.json │ │ │ │ ├── netherite_emerald_chestplate_smithing.json │ │ │ │ ├── netherite_emerald_helmet_smithing.json │ │ │ │ ├── netherite_emerald_hoe_smithing.json │ │ │ │ ├── netherite_emerald_ingot.json │ │ │ │ ├── netherite_emerald_ingot_from_block.json │ │ │ │ ├── netherite_emerald_leggings_smithing.json │ │ │ │ ├── netherite_emerald_pickaxe_smithing.json │ │ │ │ ├── netherite_emerald_shovel_smithing.json │ │ │ │ ├── netherite_emerald_sword_smithing.json │ │ │ │ ├── netherite_gold_axe_smithing.json │ │ │ │ ├── netherite_gold_boots_smithing.json │ │ │ │ ├── netherite_gold_chestplate_smithing.json │ │ │ │ ├── netherite_gold_helmet_smithing.json │ │ │ │ ├── netherite_gold_hoe_smithing.json │ │ │ │ ├── netherite_gold_ingot.json │ │ │ │ ├── netherite_gold_ingot_from_block.json │ │ │ │ ├── netherite_gold_leggings_smithing.json │ │ │ │ ├── netherite_gold_pickaxe_smithing.json │ │ │ │ ├── netherite_gold_shovel_smithing.json │ │ │ │ ├── netherite_gold_sword_smithing.json │ │ │ │ ├── netherite_iron_axe_smithing.json │ │ │ │ ├── netherite_iron_boots_smithing.json │ │ │ │ ├── netherite_iron_chestplate_smithing.json │ │ │ │ ├── netherite_iron_helmet_smithing.json │ │ │ │ ├── netherite_iron_hoe_smithing.json │ │ │ │ ├── netherite_iron_ingot.json │ │ │ │ ├── netherite_iron_ingot_from_block.json │ │ │ │ ├── netherite_iron_leggings_smithing.json │ │ │ │ ├── netherite_iron_pickaxe_smithing.json │ │ │ │ ├── netherite_iron_shovel_smithing.json │ │ │ │ └── netherite_iron_sword_smithing.json │ │ ├── loot_modifiers │ │ │ ├── crop_drops_loot_modifier.json │ │ │ ├── mob_drops_loot_modifier.json │ │ │ └── ore_drops_loot_modifier.json │ │ ├── loot_table │ │ │ └── blocks │ │ │ │ ├── netherite_diamond_block.json │ │ │ │ ├── netherite_emerald_block.json │ │ │ │ ├── netherite_gold_block.json │ │ │ │ └── netherite_iron_block.json │ │ ├── recipe │ │ │ ├── lodestone.json │ │ │ ├── netherite_diamond_axe_smithing.json │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_diamond_boots_smithing.json │ │ │ ├── netherite_diamond_chestplate_smithing.json │ │ │ ├── netherite_diamond_helmet_smithing.json │ │ │ ├── netherite_diamond_hoe_smithing.json │ │ │ ├── netherite_diamond_ingot.json │ │ │ ├── netherite_diamond_ingot_from_block.json │ │ │ ├── netherite_diamond_leggings_smithing.json │ │ │ ├── netherite_diamond_pickaxe_smithing.json │ │ │ ├── netherite_diamond_shovel_smithing.json │ │ │ ├── netherite_diamond_sword_smithing.json │ │ │ ├── netherite_emerald_axe_smithing.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_emerald_boots_smithing.json │ │ │ ├── netherite_emerald_chestplate_smithing.json │ │ │ ├── netherite_emerald_helmet_smithing.json │ │ │ ├── netherite_emerald_hoe_smithing.json │ │ │ ├── netherite_emerald_ingot.json │ │ │ ├── netherite_emerald_ingot_from_block.json │ │ │ ├── netherite_emerald_leggings_smithing.json │ │ │ ├── netherite_emerald_pickaxe_smithing.json │ │ │ ├── netherite_emerald_shovel_smithing.json │ │ │ ├── netherite_emerald_sword_smithing.json │ │ │ ├── netherite_gold_axe_smithing.json │ │ │ ├── netherite_gold_block.json │ │ │ ├── netherite_gold_boots_smithing.json │ │ │ ├── netherite_gold_chestplate_smithing.json │ │ │ ├── netherite_gold_helmet_smithing.json │ │ │ ├── netherite_gold_hoe_smithing.json │ │ │ ├── netherite_gold_ingot.json │ │ │ ├── netherite_gold_ingot_from_block.json │ │ │ ├── netherite_gold_leggings_smithing.json │ │ │ ├── netherite_gold_pickaxe_smithing.json │ │ │ ├── netherite_gold_shovel_smithing.json │ │ │ ├── netherite_gold_sword_smithing.json │ │ │ ├── netherite_iron_axe_smithing.json │ │ │ ├── netherite_iron_block.json │ │ │ ├── netherite_iron_boots_smithing.json │ │ │ ├── netherite_iron_chestplate_smithing.json │ │ │ ├── netherite_iron_helmet_smithing.json │ │ │ ├── netherite_iron_hoe_smithing.json │ │ │ ├── netherite_iron_ingot.json │ │ │ ├── netherite_iron_ingot_from_block.json │ │ │ ├── netherite_iron_leggings_smithing.json │ │ │ ├── netherite_iron_pickaxe_smithing.json │ │ │ ├── netherite_iron_shovel_smithing.json │ │ │ └── netherite_iron_sword_smithing.json │ │ └── tags │ │ │ ├── block │ │ │ ├── incorrect_for_netherite_diamond_tool.json │ │ │ ├── incorrect_for_netherite_emerald_tool.json │ │ │ ├── incorrect_for_netherite_gold_tool.json │ │ │ ├── incorrect_for_netherite_iron_tool.json │ │ │ └── netherite_blocks.json │ │ │ ├── enchantment │ │ │ └── prevents_additional_ore_drops.json │ │ │ └── item │ │ │ ├── axe │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── boots │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── chestplate │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── drops_additional_crops.json │ │ │ ├── drops_additional_diamond.json │ │ │ ├── drops_additional_emerald.json │ │ │ ├── drops_additional_enderman_loot.json │ │ │ ├── drops_additional_gold.json │ │ │ ├── drops_additional_iron.json │ │ │ ├── drops_additional_phantom_loot.json │ │ │ ├── drops_additional_piglin_loot.json │ │ │ ├── drops_additional_zombified_piglin_loot.json │ │ │ ├── helmet │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── hoe │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── ingot │ │ │ ├── netherites.json │ │ │ ├── netherites_diamond.json │ │ │ ├── netherites_emerald.json │ │ │ ├── netherites_gold.json │ │ │ ├── netherites_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── leggings │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── netherite_blocks.json │ │ │ ├── netherite_ingots.json │ │ │ ├── pacify_endermen_armor.json │ │ │ ├── pacify_phantoms_armor.json │ │ │ ├── pacify_piglins_armor.json │ │ │ ├── pickaxe │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── repairs_netherite_diamond_armor.json │ │ │ ├── repairs_netherite_diamond_tools.json │ │ │ ├── repairs_netherite_emerald_armor.json │ │ │ ├── repairs_netherite_emerald_tools.json │ │ │ ├── repairs_netherite_gold_armor.json │ │ │ ├── repairs_netherite_gold_tools.json │ │ │ ├── repairs_netherite_iron_armor.json │ │ │ ├── repairs_netherite_iron_tools.json │ │ │ ├── shovel │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── sword │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── tier │ │ │ ├── armor.json │ │ │ ├── armor │ │ │ │ ├── netherite_diamond.json │ │ │ │ ├── netherite_emerald.json │ │ │ │ ├── netherite_gold.json │ │ │ │ └── netherite_iron.json │ │ │ ├── tool │ │ │ │ ├── netherite_diamond.json │ │ │ │ ├── netherite_emerald.json │ │ │ │ ├── netherite_gold.json │ │ │ │ └── netherite_iron.json │ │ │ └── tools.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ ├── forge │ │ └── loot_modifiers │ │ │ └── global_loot_modifiers.json │ │ └── minecraft │ │ └── tags │ │ ├── block │ │ ├── beacon_base_blocks.json │ │ ├── guarded_by_piglins.json │ │ ├── mineable │ │ │ └── pickaxe.json │ │ └── needs_diamond_tool.json │ │ └── item │ │ ├── axes.json │ │ ├── beacon_payment_items.json │ │ ├── chest_armor.json │ │ ├── cluster_max_harvestables.json │ │ ├── foot_armor.json │ │ ├── head_armor.json │ │ ├── hoes.json │ │ ├── leg_armor.json │ │ ├── pickaxes.json │ │ ├── piglin_loved.json │ │ ├── piglin_safe_armor.json │ │ ├── shovels.json │ │ ├── swords.json │ │ └── trimmable_armor.json │ └── main │ ├── java │ └── com │ │ └── autovw │ │ └── advancednetherite │ │ ├── AdvancedNetheriteForge.java │ │ ├── AdvancedNetheriteTab.java │ │ ├── ForgePlatformHelper.java │ │ ├── client │ │ └── ClientHandler.java │ │ ├── common │ │ ├── EventHandler.java │ │ └── loot │ │ │ ├── CropDropsLootModifier.java │ │ │ ├── MobDropsLootModifier.java │ │ │ └── OreDropsLootModifier.java │ │ ├── config │ │ └── Config.java │ │ ├── core │ │ └── registry │ │ │ ├── ModBlockRegistry.java │ │ │ ├── ModItemRegistry.java │ │ │ └── ModLootModifiers.java │ │ ├── datagen │ │ ├── ModDataGenerator.java │ │ └── providers │ │ │ ├── ModAdvancementProvider.java │ │ │ ├── ModBlockTagsProvider.java │ │ │ ├── ModEnchantmentTagsProvider.java │ │ │ ├── ModEquipmentAssetProvider.java │ │ │ ├── ModItemTagsProvider.java │ │ │ ├── ModLootModifierProvider.java │ │ │ ├── ModLootTableProvider.java │ │ │ ├── ModModelProvider.java │ │ │ └── ModRecipeProvider.java │ │ └── registry │ │ └── ForgeRegistryHelper.java │ └── resources │ ├── META-INF │ ├── accesstransformer.cfg │ └── mods.toml │ └── pack.mcmeta ├── LICENSE ├── NeoForge ├── build.gradle └── src │ ├── generated │ └── resources │ │ ├── assets │ │ └── advancednetherite │ │ │ ├── blockstates │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_gold_block.json │ │ │ └── netherite_iron_block.json │ │ │ ├── equipment │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ └── netherite_iron.json │ │ │ ├── items │ │ │ ├── netherite_diamond_axe.json │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_diamond_boots.json │ │ │ ├── netherite_diamond_chestplate.json │ │ │ ├── netherite_diamond_helmet.json │ │ │ ├── netherite_diamond_hoe.json │ │ │ ├── netherite_diamond_ingot.json │ │ │ ├── netherite_diamond_leggings.json │ │ │ ├── netherite_diamond_pickaxe.json │ │ │ ├── netherite_diamond_shovel.json │ │ │ ├── netherite_diamond_sword.json │ │ │ ├── netherite_emerald_axe.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_emerald_boots.json │ │ │ ├── netherite_emerald_chestplate.json │ │ │ ├── netherite_emerald_helmet.json │ │ │ ├── netherite_emerald_hoe.json │ │ │ ├── netherite_emerald_ingot.json │ │ │ ├── netherite_emerald_leggings.json │ │ │ ├── netherite_emerald_pickaxe.json │ │ │ ├── netherite_emerald_shovel.json │ │ │ ├── netherite_emerald_sword.json │ │ │ ├── netherite_gold_axe.json │ │ │ ├── netherite_gold_block.json │ │ │ ├── netherite_gold_boots.json │ │ │ ├── netherite_gold_chestplate.json │ │ │ ├── netherite_gold_helmet.json │ │ │ ├── netherite_gold_hoe.json │ │ │ ├── netherite_gold_ingot.json │ │ │ ├── netherite_gold_leggings.json │ │ │ ├── netherite_gold_pickaxe.json │ │ │ ├── netherite_gold_shovel.json │ │ │ ├── netherite_gold_sword.json │ │ │ ├── netherite_iron_axe.json │ │ │ ├── netherite_iron_block.json │ │ │ ├── netherite_iron_boots.json │ │ │ ├── netherite_iron_chestplate.json │ │ │ ├── netherite_iron_helmet.json │ │ │ ├── netherite_iron_hoe.json │ │ │ ├── netherite_iron_ingot.json │ │ │ ├── netherite_iron_leggings.json │ │ │ ├── netherite_iron_pickaxe.json │ │ │ ├── netherite_iron_shovel.json │ │ │ └── netherite_iron_sword.json │ │ │ └── models │ │ │ ├── block │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_gold_block.json │ │ │ └── netherite_iron_block.json │ │ │ └── item │ │ │ ├── netherite_diamond_axe.json │ │ │ ├── netherite_diamond_boots.json │ │ │ ├── netherite_diamond_boots_amethyst_trim.json │ │ │ ├── netherite_diamond_boots_copper_trim.json │ │ │ ├── netherite_diamond_boots_diamond_trim.json │ │ │ ├── netherite_diamond_boots_emerald_trim.json │ │ │ ├── netherite_diamond_boots_gold_trim.json │ │ │ ├── netherite_diamond_boots_iron_trim.json │ │ │ ├── netherite_diamond_boots_lapis_trim.json │ │ │ ├── netherite_diamond_boots_netherite_trim.json │ │ │ ├── netherite_diamond_boots_quartz_trim.json │ │ │ ├── netherite_diamond_boots_redstone_trim.json │ │ │ ├── netherite_diamond_boots_resin_trim.json │ │ │ ├── netherite_diamond_chestplate.json │ │ │ ├── netherite_diamond_chestplate_amethyst_trim.json │ │ │ ├── netherite_diamond_chestplate_copper_trim.json │ │ │ ├── netherite_diamond_chestplate_diamond_trim.json │ │ │ ├── netherite_diamond_chestplate_emerald_trim.json │ │ │ ├── netherite_diamond_chestplate_gold_trim.json │ │ │ ├── netherite_diamond_chestplate_iron_trim.json │ │ │ ├── netherite_diamond_chestplate_lapis_trim.json │ │ │ ├── netherite_diamond_chestplate_netherite_trim.json │ │ │ ├── netherite_diamond_chestplate_quartz_trim.json │ │ │ ├── netherite_diamond_chestplate_redstone_trim.json │ │ │ ├── netherite_diamond_chestplate_resin_trim.json │ │ │ ├── netherite_diamond_helmet.json │ │ │ ├── netherite_diamond_helmet_amethyst_trim.json │ │ │ ├── netherite_diamond_helmet_copper_trim.json │ │ │ ├── netherite_diamond_helmet_diamond_trim.json │ │ │ ├── netherite_diamond_helmet_emerald_trim.json │ │ │ ├── netherite_diamond_helmet_gold_trim.json │ │ │ ├── netherite_diamond_helmet_iron_trim.json │ │ │ ├── netherite_diamond_helmet_lapis_trim.json │ │ │ ├── netherite_diamond_helmet_netherite_trim.json │ │ │ ├── netherite_diamond_helmet_quartz_trim.json │ │ │ ├── netherite_diamond_helmet_redstone_trim.json │ │ │ ├── netherite_diamond_helmet_resin_trim.json │ │ │ ├── netherite_diamond_hoe.json │ │ │ ├── netherite_diamond_ingot.json │ │ │ ├── netherite_diamond_leggings.json │ │ │ ├── netherite_diamond_leggings_amethyst_trim.json │ │ │ ├── netherite_diamond_leggings_copper_trim.json │ │ │ ├── netherite_diamond_leggings_diamond_trim.json │ │ │ ├── netherite_diamond_leggings_emerald_trim.json │ │ │ ├── netherite_diamond_leggings_gold_trim.json │ │ │ ├── netherite_diamond_leggings_iron_trim.json │ │ │ ├── netherite_diamond_leggings_lapis_trim.json │ │ │ ├── netherite_diamond_leggings_netherite_trim.json │ │ │ ├── netherite_diamond_leggings_quartz_trim.json │ │ │ ├── netherite_diamond_leggings_redstone_trim.json │ │ │ ├── netherite_diamond_leggings_resin_trim.json │ │ │ ├── netherite_diamond_pickaxe.json │ │ │ ├── netherite_diamond_shovel.json │ │ │ ├── netherite_diamond_sword.json │ │ │ ├── netherite_emerald_axe.json │ │ │ ├── netherite_emerald_boots.json │ │ │ ├── netherite_emerald_boots_amethyst_trim.json │ │ │ ├── netherite_emerald_boots_copper_trim.json │ │ │ ├── netherite_emerald_boots_diamond_trim.json │ │ │ ├── netherite_emerald_boots_emerald_trim.json │ │ │ ├── netherite_emerald_boots_gold_trim.json │ │ │ ├── netherite_emerald_boots_iron_trim.json │ │ │ ├── netherite_emerald_boots_lapis_trim.json │ │ │ ├── netherite_emerald_boots_netherite_trim.json │ │ │ ├── netherite_emerald_boots_quartz_trim.json │ │ │ ├── netherite_emerald_boots_redstone_trim.json │ │ │ ├── netherite_emerald_boots_resin_trim.json │ │ │ ├── netherite_emerald_chestplate.json │ │ │ ├── netherite_emerald_chestplate_amethyst_trim.json │ │ │ ├── netherite_emerald_chestplate_copper_trim.json │ │ │ ├── netherite_emerald_chestplate_diamond_trim.json │ │ │ ├── netherite_emerald_chestplate_emerald_trim.json │ │ │ ├── netherite_emerald_chestplate_gold_trim.json │ │ │ ├── netherite_emerald_chestplate_iron_trim.json │ │ │ ├── netherite_emerald_chestplate_lapis_trim.json │ │ │ ├── netherite_emerald_chestplate_netherite_trim.json │ │ │ ├── netherite_emerald_chestplate_quartz_trim.json │ │ │ ├── netherite_emerald_chestplate_redstone_trim.json │ │ │ ├── netherite_emerald_chestplate_resin_trim.json │ │ │ ├── netherite_emerald_helmet.json │ │ │ ├── netherite_emerald_helmet_amethyst_trim.json │ │ │ ├── netherite_emerald_helmet_copper_trim.json │ │ │ ├── netherite_emerald_helmet_diamond_trim.json │ │ │ ├── netherite_emerald_helmet_emerald_trim.json │ │ │ ├── netherite_emerald_helmet_gold_trim.json │ │ │ ├── netherite_emerald_helmet_iron_trim.json │ │ │ ├── netherite_emerald_helmet_lapis_trim.json │ │ │ ├── netherite_emerald_helmet_netherite_trim.json │ │ │ ├── netherite_emerald_helmet_quartz_trim.json │ │ │ ├── netherite_emerald_helmet_redstone_trim.json │ │ │ ├── netherite_emerald_helmet_resin_trim.json │ │ │ ├── netherite_emerald_hoe.json │ │ │ ├── netherite_emerald_ingot.json │ │ │ ├── netherite_emerald_leggings.json │ │ │ ├── netherite_emerald_leggings_amethyst_trim.json │ │ │ ├── netherite_emerald_leggings_copper_trim.json │ │ │ ├── netherite_emerald_leggings_diamond_trim.json │ │ │ ├── netherite_emerald_leggings_emerald_trim.json │ │ │ ├── netherite_emerald_leggings_gold_trim.json │ │ │ ├── netherite_emerald_leggings_iron_trim.json │ │ │ ├── netherite_emerald_leggings_lapis_trim.json │ │ │ ├── netherite_emerald_leggings_netherite_trim.json │ │ │ ├── netherite_emerald_leggings_quartz_trim.json │ │ │ ├── netherite_emerald_leggings_redstone_trim.json │ │ │ ├── netherite_emerald_leggings_resin_trim.json │ │ │ ├── netherite_emerald_pickaxe.json │ │ │ ├── netherite_emerald_shovel.json │ │ │ ├── netherite_emerald_sword.json │ │ │ ├── netherite_gold_axe.json │ │ │ ├── netherite_gold_boots.json │ │ │ ├── netherite_gold_boots_amethyst_trim.json │ │ │ ├── netherite_gold_boots_copper_trim.json │ │ │ ├── netherite_gold_boots_diamond_trim.json │ │ │ ├── netherite_gold_boots_emerald_trim.json │ │ │ ├── netherite_gold_boots_gold_trim.json │ │ │ ├── netherite_gold_boots_iron_trim.json │ │ │ ├── netherite_gold_boots_lapis_trim.json │ │ │ ├── netherite_gold_boots_netherite_trim.json │ │ │ ├── netherite_gold_boots_quartz_trim.json │ │ │ ├── netherite_gold_boots_redstone_trim.json │ │ │ ├── netherite_gold_boots_resin_trim.json │ │ │ ├── netherite_gold_chestplate.json │ │ │ ├── netherite_gold_chestplate_amethyst_trim.json │ │ │ ├── netherite_gold_chestplate_copper_trim.json │ │ │ ├── netherite_gold_chestplate_diamond_trim.json │ │ │ ├── netherite_gold_chestplate_emerald_trim.json │ │ │ ├── netherite_gold_chestplate_gold_trim.json │ │ │ ├── netherite_gold_chestplate_iron_trim.json │ │ │ ├── netherite_gold_chestplate_lapis_trim.json │ │ │ ├── netherite_gold_chestplate_netherite_trim.json │ │ │ ├── netherite_gold_chestplate_quartz_trim.json │ │ │ ├── netherite_gold_chestplate_redstone_trim.json │ │ │ ├── netherite_gold_chestplate_resin_trim.json │ │ │ ├── netherite_gold_helmet.json │ │ │ ├── netherite_gold_helmet_amethyst_trim.json │ │ │ ├── netherite_gold_helmet_copper_trim.json │ │ │ ├── netherite_gold_helmet_diamond_trim.json │ │ │ ├── netherite_gold_helmet_emerald_trim.json │ │ │ ├── netherite_gold_helmet_gold_trim.json │ │ │ ├── netherite_gold_helmet_iron_trim.json │ │ │ ├── netherite_gold_helmet_lapis_trim.json │ │ │ ├── netherite_gold_helmet_netherite_trim.json │ │ │ ├── netherite_gold_helmet_quartz_trim.json │ │ │ ├── netherite_gold_helmet_redstone_trim.json │ │ │ ├── netherite_gold_helmet_resin_trim.json │ │ │ ├── netherite_gold_hoe.json │ │ │ ├── netherite_gold_ingot.json │ │ │ ├── netherite_gold_leggings.json │ │ │ ├── netherite_gold_leggings_amethyst_trim.json │ │ │ ├── netherite_gold_leggings_copper_trim.json │ │ │ ├── netherite_gold_leggings_diamond_trim.json │ │ │ ├── netherite_gold_leggings_emerald_trim.json │ │ │ ├── netherite_gold_leggings_gold_trim.json │ │ │ ├── netherite_gold_leggings_iron_trim.json │ │ │ ├── netherite_gold_leggings_lapis_trim.json │ │ │ ├── netherite_gold_leggings_netherite_trim.json │ │ │ ├── netherite_gold_leggings_quartz_trim.json │ │ │ ├── netherite_gold_leggings_redstone_trim.json │ │ │ ├── netherite_gold_leggings_resin_trim.json │ │ │ ├── netherite_gold_pickaxe.json │ │ │ ├── netherite_gold_shovel.json │ │ │ ├── netherite_gold_sword.json │ │ │ ├── netherite_iron_axe.json │ │ │ ├── netherite_iron_boots.json │ │ │ ├── netherite_iron_boots_amethyst_trim.json │ │ │ ├── netherite_iron_boots_copper_trim.json │ │ │ ├── netherite_iron_boots_diamond_trim.json │ │ │ ├── netherite_iron_boots_emerald_trim.json │ │ │ ├── netherite_iron_boots_gold_trim.json │ │ │ ├── netherite_iron_boots_iron_trim.json │ │ │ ├── netherite_iron_boots_lapis_trim.json │ │ │ ├── netherite_iron_boots_netherite_trim.json │ │ │ ├── netherite_iron_boots_quartz_trim.json │ │ │ ├── netherite_iron_boots_redstone_trim.json │ │ │ ├── netherite_iron_boots_resin_trim.json │ │ │ ├── netherite_iron_chestplate.json │ │ │ ├── netherite_iron_chestplate_amethyst_trim.json │ │ │ ├── netherite_iron_chestplate_copper_trim.json │ │ │ ├── netherite_iron_chestplate_diamond_trim.json │ │ │ ├── netherite_iron_chestplate_emerald_trim.json │ │ │ ├── netherite_iron_chestplate_gold_trim.json │ │ │ ├── netherite_iron_chestplate_iron_trim.json │ │ │ ├── netherite_iron_chestplate_lapis_trim.json │ │ │ ├── netherite_iron_chestplate_netherite_trim.json │ │ │ ├── netherite_iron_chestplate_quartz_trim.json │ │ │ ├── netherite_iron_chestplate_redstone_trim.json │ │ │ ├── netherite_iron_chestplate_resin_trim.json │ │ │ ├── netherite_iron_helmet.json │ │ │ ├── netherite_iron_helmet_amethyst_trim.json │ │ │ ├── netherite_iron_helmet_copper_trim.json │ │ │ ├── netherite_iron_helmet_diamond_trim.json │ │ │ ├── netherite_iron_helmet_emerald_trim.json │ │ │ ├── netherite_iron_helmet_gold_trim.json │ │ │ ├── netherite_iron_helmet_iron_trim.json │ │ │ ├── netherite_iron_helmet_lapis_trim.json │ │ │ ├── netherite_iron_helmet_netherite_trim.json │ │ │ ├── netherite_iron_helmet_quartz_trim.json │ │ │ ├── netherite_iron_helmet_redstone_trim.json │ │ │ ├── netherite_iron_helmet_resin_trim.json │ │ │ ├── netherite_iron_hoe.json │ │ │ ├── netherite_iron_ingot.json │ │ │ ├── netherite_iron_leggings.json │ │ │ ├── netherite_iron_leggings_amethyst_trim.json │ │ │ ├── netherite_iron_leggings_copper_trim.json │ │ │ ├── netherite_iron_leggings_diamond_trim.json │ │ │ ├── netherite_iron_leggings_emerald_trim.json │ │ │ ├── netherite_iron_leggings_gold_trim.json │ │ │ ├── netherite_iron_leggings_iron_trim.json │ │ │ ├── netherite_iron_leggings_lapis_trim.json │ │ │ ├── netherite_iron_leggings_netherite_trim.json │ │ │ ├── netherite_iron_leggings_quartz_trim.json │ │ │ ├── netherite_iron_leggings_redstone_trim.json │ │ │ ├── netherite_iron_leggings_resin_trim.json │ │ │ ├── netherite_iron_pickaxe.json │ │ │ ├── netherite_iron_shovel.json │ │ │ └── netherite_iron_sword.json │ │ └── data │ │ ├── advancednetherite │ │ ├── advancement │ │ │ ├── husbandry │ │ │ │ └── obtain_netherite_diamond_hoe.json │ │ │ ├── nether │ │ │ │ ├── netherite_diamond_armor.json │ │ │ │ ├── netherite_emerald_armor.json │ │ │ │ ├── netherite_gold_armor.json │ │ │ │ ├── netherite_iron_armor.json │ │ │ │ ├── obtain_netherite_diamond_block.json │ │ │ │ └── obtain_netherite_iron_ingot.json │ │ │ └── recipes │ │ │ │ ├── building_blocks │ │ │ │ ├── netherite_diamond_block.json │ │ │ │ ├── netherite_emerald_block.json │ │ │ │ ├── netherite_gold_block.json │ │ │ │ └── netherite_iron_block.json │ │ │ │ └── misc │ │ │ │ ├── lodestone.json │ │ │ │ ├── netherite_diamond_axe_smithing.json │ │ │ │ ├── netherite_diamond_boots_smithing.json │ │ │ │ ├── netherite_diamond_chestplate_smithing.json │ │ │ │ ├── netherite_diamond_helmet_smithing.json │ │ │ │ ├── netherite_diamond_hoe_smithing.json │ │ │ │ ├── netherite_diamond_ingot.json │ │ │ │ ├── netherite_diamond_ingot_from_block.json │ │ │ │ ├── netherite_diamond_leggings_smithing.json │ │ │ │ ├── netherite_diamond_pickaxe_smithing.json │ │ │ │ ├── netherite_diamond_shovel_smithing.json │ │ │ │ ├── netherite_diamond_sword_smithing.json │ │ │ │ ├── netherite_emerald_axe_smithing.json │ │ │ │ ├── netherite_emerald_boots_smithing.json │ │ │ │ ├── netherite_emerald_chestplate_smithing.json │ │ │ │ ├── netherite_emerald_helmet_smithing.json │ │ │ │ ├── netherite_emerald_hoe_smithing.json │ │ │ │ ├── netherite_emerald_ingot.json │ │ │ │ ├── netherite_emerald_ingot_from_block.json │ │ │ │ ├── netherite_emerald_leggings_smithing.json │ │ │ │ ├── netherite_emerald_pickaxe_smithing.json │ │ │ │ ├── netherite_emerald_shovel_smithing.json │ │ │ │ ├── netherite_emerald_sword_smithing.json │ │ │ │ ├── netherite_gold_axe_smithing.json │ │ │ │ ├── netherite_gold_boots_smithing.json │ │ │ │ ├── netherite_gold_chestplate_smithing.json │ │ │ │ ├── netherite_gold_helmet_smithing.json │ │ │ │ ├── netherite_gold_hoe_smithing.json │ │ │ │ ├── netherite_gold_ingot.json │ │ │ │ ├── netherite_gold_ingot_from_block.json │ │ │ │ ├── netherite_gold_leggings_smithing.json │ │ │ │ ├── netherite_gold_pickaxe_smithing.json │ │ │ │ ├── netherite_gold_shovel_smithing.json │ │ │ │ ├── netherite_gold_sword_smithing.json │ │ │ │ ├── netherite_iron_axe_smithing.json │ │ │ │ ├── netherite_iron_boots_smithing.json │ │ │ │ ├── netherite_iron_chestplate_smithing.json │ │ │ │ ├── netherite_iron_helmet_smithing.json │ │ │ │ ├── netherite_iron_hoe_smithing.json │ │ │ │ ├── netherite_iron_ingot.json │ │ │ │ ├── netherite_iron_ingot_from_block.json │ │ │ │ ├── netherite_iron_leggings_smithing.json │ │ │ │ ├── netherite_iron_pickaxe_smithing.json │ │ │ │ ├── netherite_iron_shovel_smithing.json │ │ │ │ └── netherite_iron_sword_smithing.json │ │ ├── loot_modifiers │ │ │ ├── crop_drops_loot_modifier.json │ │ │ ├── mob_drops_loot_modifier.json │ │ │ └── ore_drops_loot_modifier.json │ │ ├── loot_table │ │ │ └── blocks │ │ │ │ ├── netherite_diamond_block.json │ │ │ │ ├── netherite_emerald_block.json │ │ │ │ ├── netherite_gold_block.json │ │ │ │ └── netherite_iron_block.json │ │ ├── recipe │ │ │ ├── lodestone.json │ │ │ ├── netherite_diamond_axe_smithing.json │ │ │ ├── netherite_diamond_block.json │ │ │ ├── netherite_diamond_boots_smithing.json │ │ │ ├── netherite_diamond_chestplate_smithing.json │ │ │ ├── netherite_diamond_helmet_smithing.json │ │ │ ├── netherite_diamond_hoe_smithing.json │ │ │ ├── netherite_diamond_ingot.json │ │ │ ├── netherite_diamond_ingot_from_block.json │ │ │ ├── netherite_diamond_leggings_smithing.json │ │ │ ├── netherite_diamond_pickaxe_smithing.json │ │ │ ├── netherite_diamond_shovel_smithing.json │ │ │ ├── netherite_diamond_sword_smithing.json │ │ │ ├── netherite_emerald_axe_smithing.json │ │ │ ├── netherite_emerald_block.json │ │ │ ├── netherite_emerald_boots_smithing.json │ │ │ ├── netherite_emerald_chestplate_smithing.json │ │ │ ├── netherite_emerald_helmet_smithing.json │ │ │ ├── netherite_emerald_hoe_smithing.json │ │ │ ├── netherite_emerald_ingot.json │ │ │ ├── netherite_emerald_ingot_from_block.json │ │ │ ├── netherite_emerald_leggings_smithing.json │ │ │ ├── netherite_emerald_pickaxe_smithing.json │ │ │ ├── netherite_emerald_shovel_smithing.json │ │ │ ├── netherite_emerald_sword_smithing.json │ │ │ ├── netherite_gold_axe_smithing.json │ │ │ ├── netherite_gold_block.json │ │ │ ├── netherite_gold_boots_smithing.json │ │ │ ├── netherite_gold_chestplate_smithing.json │ │ │ ├── netherite_gold_helmet_smithing.json │ │ │ ├── netherite_gold_hoe_smithing.json │ │ │ ├── netherite_gold_ingot.json │ │ │ ├── netherite_gold_ingot_from_block.json │ │ │ ├── netherite_gold_leggings_smithing.json │ │ │ ├── netherite_gold_pickaxe_smithing.json │ │ │ ├── netherite_gold_shovel_smithing.json │ │ │ ├── netherite_gold_sword_smithing.json │ │ │ ├── netherite_iron_axe_smithing.json │ │ │ ├── netherite_iron_block.json │ │ │ ├── netherite_iron_boots_smithing.json │ │ │ ├── netherite_iron_chestplate_smithing.json │ │ │ ├── netherite_iron_helmet_smithing.json │ │ │ ├── netherite_iron_hoe_smithing.json │ │ │ ├── netherite_iron_ingot.json │ │ │ ├── netherite_iron_ingot_from_block.json │ │ │ ├── netherite_iron_leggings_smithing.json │ │ │ ├── netherite_iron_pickaxe_smithing.json │ │ │ ├── netherite_iron_shovel_smithing.json │ │ │ └── netherite_iron_sword_smithing.json │ │ └── tags │ │ │ ├── block │ │ │ ├── incorrect_for_netherite_diamond_tool.json │ │ │ ├── incorrect_for_netherite_emerald_tool.json │ │ │ ├── incorrect_for_netherite_gold_tool.json │ │ │ ├── incorrect_for_netherite_iron_tool.json │ │ │ └── netherite_blocks.json │ │ │ ├── enchantment │ │ │ └── prevents_additional_ore_drops.json │ │ │ └── item │ │ │ ├── axe │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── boots │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── chestplate │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── drops_additional_crops.json │ │ │ ├── drops_additional_diamond.json │ │ │ ├── drops_additional_emerald.json │ │ │ ├── drops_additional_enderman_loot.json │ │ │ ├── drops_additional_gold.json │ │ │ ├── drops_additional_iron.json │ │ │ ├── drops_additional_phantom_loot.json │ │ │ ├── drops_additional_piglin_loot.json │ │ │ ├── drops_additional_zombified_piglin_loot.json │ │ │ ├── helmet │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── hoe │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── ingot │ │ │ ├── netherites.json │ │ │ ├── netherites_diamond.json │ │ │ ├── netherites_emerald.json │ │ │ ├── netherites_gold.json │ │ │ ├── netherites_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── leggings │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── netherite_blocks.json │ │ │ ├── netherite_ingots.json │ │ │ ├── pacify_endermen_armor.json │ │ │ ├── pacify_phantoms_armor.json │ │ │ ├── pacify_piglins_armor.json │ │ │ ├── pickaxe │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── repairs_netherite_diamond_armor.json │ │ │ ├── repairs_netherite_diamond_tools.json │ │ │ ├── repairs_netherite_emerald_armor.json │ │ │ ├── repairs_netherite_emerald_tools.json │ │ │ ├── repairs_netherite_gold_armor.json │ │ │ ├── repairs_netherite_gold_tools.json │ │ │ ├── repairs_netherite_iron_armor.json │ │ │ ├── repairs_netherite_iron_tools.json │ │ │ ├── shovel │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── sword │ │ │ ├── netherite.json │ │ │ ├── netherite_diamond.json │ │ │ ├── netherite_emerald.json │ │ │ ├── netherite_gold.json │ │ │ ├── netherite_iron.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ │ ├── tier │ │ │ ├── armor.json │ │ │ ├── armor │ │ │ │ ├── netherite_diamond.json │ │ │ │ ├── netherite_emerald.json │ │ │ │ ├── netherite_gold.json │ │ │ │ └── netherite_iron.json │ │ │ ├── tool │ │ │ │ ├── netherite_diamond.json │ │ │ │ ├── netherite_emerald.json │ │ │ │ ├── netherite_gold.json │ │ │ │ └── netherite_iron.json │ │ │ └── tools.json │ │ │ ├── upgrade_to_netherite_diamond.json │ │ │ ├── upgrade_to_netherite_emerald.json │ │ │ ├── upgrade_to_netherite_gold.json │ │ │ └── upgrade_to_netherite_iron.json │ │ ├── minecraft │ │ └── tags │ │ │ ├── block │ │ │ ├── beacon_base_blocks.json │ │ │ ├── guarded_by_piglins.json │ │ │ ├── mineable │ │ │ │ └── pickaxe.json │ │ │ └── needs_diamond_tool.json │ │ │ └── item │ │ │ ├── axes.json │ │ │ ├── beacon_payment_items.json │ │ │ ├── chest_armor.json │ │ │ ├── cluster_max_harvestables.json │ │ │ ├── foot_armor.json │ │ │ ├── head_armor.json │ │ │ ├── hoes.json │ │ │ ├── leg_armor.json │ │ │ ├── pickaxes.json │ │ │ ├── piglin_loved.json │ │ │ ├── piglin_safe_armor.json │ │ │ ├── shovels.json │ │ │ ├── swords.json │ │ │ └── trimmable_armor.json │ │ └── neoforge │ │ └── loot_modifiers │ │ └── global_loot_modifiers.json │ └── main │ ├── java │ └── com │ │ └── autovw │ │ └── advancednetherite │ │ ├── AdvancedNetheriteNeoForge.java │ │ ├── AdvancedNetheriteTab.java │ │ ├── NeoForgePlatformHelper.java │ │ ├── client │ │ └── ClientHandler.java │ │ ├── common │ │ ├── EventHandler.java │ │ └── loot │ │ │ ├── CropDropsLootModifier.java │ │ │ ├── MobDropsLootModifier.java │ │ │ └── OreDropsLootModifier.java │ │ ├── config │ │ └── Config.java │ │ ├── core │ │ └── registry │ │ │ ├── ModBlockRegistry.java │ │ │ ├── ModItemRegistry.java │ │ │ └── ModLootModifiers.java │ │ ├── datagen │ │ ├── ModDataGenerator.java │ │ └── providers │ │ │ ├── ModAdvancementProvider.java │ │ │ ├── ModBlockTagsProvider.java │ │ │ ├── ModEnchantmentTagsProvider.java │ │ │ ├── ModEquipmentAssetProvider.java │ │ │ ├── ModItemTagsProvider.java │ │ │ ├── ModLootModifierProvider.java │ │ │ ├── ModLootTableProvider.java │ │ │ ├── ModModelProvider.java │ │ │ └── ModRecipeProvider.java │ │ └── registry │ │ └── NeoForgeRegistryHelper.java │ └── resources │ ├── META-INF │ └── neoforge.mods.toml │ └── pack.mcmeta ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crash-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/.github/ISSUE_TEMPLATE/crash-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/.gitignore -------------------------------------------------------------------------------- /Common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/build.gradle -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/AdvancedNetherite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/AdvancedNetherite.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/api/TooltipBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/api/TooltipBuilder.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/api/annotation/Internal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/api/annotation/Internal.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/api/impl/IAdvancedHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/api/impl/IAdvancedHooks.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/api/impl/IArmorMaterial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/api/impl/IArmorMaterial.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/api/impl/IToolMaterial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/api/impl/IToolMaterial.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/client/screen/ConfigScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/client/screen/ConfigScreen.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/common/AdvancedUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/common/AdvancedUtil.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedArmorItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedArmorItem.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedAxeItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedAxeItem.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedBlockItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedBlockItem.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedHoeItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedHoeItem.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedItem.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedPickaxeItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedPickaxeItem.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedShovelItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedShovelItem.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedSwordItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/common/item/AdvancedSwordItem.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/config/ConfigHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/config/ConfigHelper.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/config/IClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/config/IClientConfig.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/config/ICommonConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/config/ICommonConfig.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/config/IServerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/config/IServerConfig.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/config/common/IAdditionalDropsConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/config/common/IAdditionalDropsConfig.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/config/server/IToolPropertiesConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/config/server/IToolPropertiesConfig.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/core/ModBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/core/ModBlocks.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/core/ModItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/core/ModItems.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/core/util/ModArmorMaterials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/core/util/ModArmorMaterials.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/core/util/ModEquipmentAssets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/core/util/ModEquipmentAssets.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/core/util/ModTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/core/util/ModTags.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/core/util/ModToolMaterials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/core/util/ModToolMaterials.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/core/util/ModTooltips.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/core/util/ModTooltips.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/helper/IPlatformHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/helper/IPlatformHelper.java -------------------------------------------------------------------------------- /Common/src/main/java/com/autovw/advancednetherite/helper/IRegistryHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/java/com/autovw/advancednetherite/helper/IRegistryHelper.java -------------------------------------------------------------------------------- /Common/src/main/resources/advancednetherite_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/advancednetherite_banner.png -------------------------------------------------------------------------------- /Common/src/main/resources/advancednetherite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/advancednetherite_logo.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/en_us.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/es_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/es_ar.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/es_cl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/es_cl.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/es_es.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/es_mx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/es_mx.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/fr_fr.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/it_it.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/ja_jp.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/ko_kr.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/nl_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/nl_nl.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/no_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/no_no.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/pt_br.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/ru_ru.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/tr_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/tr_tr.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/uk_ua.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/lang/zh_cn.json -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/armor_bar/armor_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/armor_bar/armor_bar.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/block/netherite_diamond_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/block/netherite_diamond_block.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/block/netherite_emerald_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/block/netherite_emerald_block.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/block/netherite_gold_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/block/netherite_gold_block.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/block/netherite_iron_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/block/netherite_iron_block.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_axe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_boots.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_helmet.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_hoe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_ingot.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_pickaxe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_shovel.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_diamond_sword.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_axe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_boots.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_helmet.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_hoe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_ingot.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_pickaxe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_shovel.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_emerald_sword.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_axe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_boots.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_chestplate.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_helmet.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_hoe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_ingot.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_leggings.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_pickaxe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_shovel.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_gold_sword.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_axe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_boots.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_chestplate.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_helmet.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_hoe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_ingot.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_leggings.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_pickaxe.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_shovel.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Common/src/main/resources/assets/advancednetherite/textures/item/netherite_iron_sword.png -------------------------------------------------------------------------------- /Fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/build.gradle -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/blockstates/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/blockstates/netherite_gold_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/blockstates/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/blockstates/netherite_iron_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/equipment/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/equipment/netherite_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/equipment/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/equipment/netherite_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/equipment/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/equipment/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/equipment/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/equipment/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_axe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_boots.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_helmet.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_hoe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_leggings.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_pickaxe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_shovel.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_diamond_sword.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_axe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_boots.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_helmet.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_hoe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_leggings.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_pickaxe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_shovel.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_emerald_sword.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_axe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_boots.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_chestplate.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_helmet.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_hoe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_leggings.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_pickaxe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_shovel.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_gold_sword.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_axe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_boots.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_chestplate.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_helmet.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_hoe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_leggings.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_pickaxe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_shovel.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/items/netherite_iron_sword.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/block/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/block/netherite_gold_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/block/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/block/netherite_iron_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_diamond_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_diamond_axe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_diamond_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_diamond_hoe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_emerald_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_emerald_axe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_emerald_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_emerald_hoe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_axe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_boots.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_helmet.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_hoe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_shovel.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_sword.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_axe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_boots.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_helmet.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_hoe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_shovel.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_sword.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/advancement/recipes/misc/lodestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/advancement/recipes/misc/lodestone.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/lodestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/lodestone.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_gold_axe_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_gold_axe_smithing.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_gold_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_gold_hoe_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_gold_hoe_smithing.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_gold_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_gold_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_iron_axe_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_iron_axe_smithing.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_iron_block.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_iron_hoe_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_iron_hoe_smithing.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/recipe/netherite_iron_ingot.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/block/incorrect_for_netherite_diamond_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/block/incorrect_for_netherite_emerald_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/block/incorrect_for_netherite_gold_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/block/incorrect_for_netherite_iron_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/block/netherite_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/block/netherite_blocks.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_crops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_crops.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/drops_additional_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/netherite_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/netherite_blocks.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/netherite_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/netherite_ingots.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/pacify_endermen_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/pacify_endermen_armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/pacify_phantoms_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/pacify_phantoms_armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/pacify_piglins_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/pacify_piglins_armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_diamond.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_emerald.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/armor/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/armor/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/armor/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/armor/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/tool/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/tool/netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/tool/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/tool/netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/tier/tools.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/upgrade_to_netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/upgrade_to_netherite_gold.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/advancednetherite/tags/item/upgrade_to_netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/advancednetherite/tags/item/upgrade_to_netherite_iron.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/c/tags/block/netherite_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/c/tags/block/netherite_blocks.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/block/beacon_base_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/block/beacon_base_blocks.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/block/guarded_by_piglins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/block/guarded_by_piglins.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/block/needs_diamond_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/block/needs_diamond_tool.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/axes.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/beacon_payment_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/beacon_payment_items.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/chest_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/chest_armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/cluster_max_harvestables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/cluster_max_harvestables.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/foot_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/foot_armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/head_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/head_armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/hoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/hoes.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/leg_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/leg_armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/pickaxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/pickaxes.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/piglin_loved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/piglin_loved.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/piglin_safe_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/piglin_safe_armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/shovels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/shovels.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/swords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/swords.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/item/trimmable_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/minecraft/tags/item/trimmable_armor.json -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/tooltiprareness/tags/item/epic_item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/generated/resources/data/tooltiprareness/tags/item/epic_item.json -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteFabric.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteTab.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/FabricPlatformHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/FabricPlatformHelper.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/client/ClientHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/client/ClientHandler.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/common/ModLootTableModifiers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/common/ModLootTableModifiers.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/config/TempConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/config/TempConfig.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/core/registry/ModBlockRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/core/registry/ModBlockRegistry.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/core/registry/ModItemRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/core/registry/ModItemRegistry.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/core/util/FabricModTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/core/util/FabricModTags.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/datagen/ModDataGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/datagen/ModDataGenerator.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/datagen/providers/ModBlockTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/datagen/providers/ModBlockTagsProvider.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/datagen/providers/ModItemTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/datagen/providers/ModItemTagsProvider.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/datagen/providers/ModModelProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/datagen/providers/ModModelProvider.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/datagen/providers/ModRecipeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/datagen/providers/ModRecipeProvider.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/mixin/EnderManMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/mixin/EnderManMixin.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/mixin/PhantomMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/mixin/PhantomMixin.java -------------------------------------------------------------------------------- /Fabric/src/main/java/com/autovw/advancednetherite/registry/FabricRegistryHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/java/com/autovw/advancednetherite/registry/FabricRegistryHelper.java -------------------------------------------------------------------------------- /Fabric/src/main/resources/advancednetherite.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/resources/advancednetherite.mixins.json -------------------------------------------------------------------------------- /Fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /Forge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/build.gradle -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/blockstates/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/blockstates/netherite_gold_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/blockstates/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/blockstates/netherite_iron_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/equipment/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/equipment/netherite_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/equipment/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/equipment/netherite_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/equipment/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/equipment/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/equipment/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/equipment/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_axe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_boots.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_chestplate.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_helmet.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_hoe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_leggings.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_pickaxe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_shovel.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_sword.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_axe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_boots.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_chestplate.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_helmet.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_hoe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_leggings.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_pickaxe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_shovel.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_sword.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_axe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_boots.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_chestplate.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_helmet.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_hoe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_leggings.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_pickaxe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_shovel.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_gold_sword.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_axe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_boots.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_chestplate.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_helmet.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_hoe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_leggings.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_pickaxe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_shovel.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/items/netherite_iron_sword.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/block/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/block/netherite_gold_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/block/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/block/netherite_iron_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_diamond_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_diamond_axe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_diamond_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_diamond_hoe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_emerald_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_emerald_axe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_emerald_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_emerald_hoe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_axe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_boots.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_helmet.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_hoe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_pickaxe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_shovel.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_sword.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_axe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_boots.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_helmet.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_hoe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_pickaxe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_shovel.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_sword.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/advancement/recipes/misc/lodestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/advancement/recipes/misc/lodestone.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/lodestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/lodestone.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_axe_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_axe_smithing.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_boots_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_boots_smithing.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_hoe_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_hoe_smithing.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_sword_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_sword_smithing.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_axe_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_axe_smithing.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_block.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_boots_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_boots_smithing.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_hoe_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_hoe_smithing.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_ingot.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_sword_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_sword_smithing.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/block/netherite_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/block/netherite_blocks.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_crops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_crops.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/netherite_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/netherite_blocks.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/netherite_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/netherite_ingots.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/pacify_endermen_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/pacify_endermen_armor.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/pacify_phantoms_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/pacify_phantoms_armor.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/pacify_piglins_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/pacify_piglins_armor.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_diamond.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_emerald.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/tier/armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/tier/armor.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/tier/armor/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/tier/armor/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/tier/armor/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/tier/armor/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/tier/tool/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/tier/tool/netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/tier/tool/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/tier/tool/netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/tier/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/tier/tools.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/upgrade_to_netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/upgrade_to_netherite_gold.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/advancednetherite/tags/item/upgrade_to_netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/advancednetherite/tags/item/upgrade_to_netherite_iron.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/forge/loot_modifiers/global_loot_modifiers.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/block/beacon_base_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/block/beacon_base_blocks.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/block/guarded_by_piglins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/block/guarded_by_piglins.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/block/needs_diamond_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/block/needs_diamond_tool.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/axes.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/beacon_payment_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/beacon_payment_items.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/chest_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/chest_armor.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/cluster_max_harvestables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/cluster_max_harvestables.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/foot_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/foot_armor.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/head_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/head_armor.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/hoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/hoes.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/leg_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/leg_armor.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/pickaxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/pickaxes.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/piglin_loved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/piglin_loved.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/piglin_safe_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/piglin_safe_armor.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/shovels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/shovels.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/swords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/swords.json -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/item/trimmable_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/generated/resources/data/minecraft/tags/item/trimmable_armor.json -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteForge.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteTab.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/ForgePlatformHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/ForgePlatformHelper.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/client/ClientHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/client/ClientHandler.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/common/EventHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/common/EventHandler.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/common/loot/CropDropsLootModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/common/loot/CropDropsLootModifier.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/common/loot/MobDropsLootModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/common/loot/MobDropsLootModifier.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/common/loot/OreDropsLootModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/common/loot/OreDropsLootModifier.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/config/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/config/Config.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/core/registry/ModBlockRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/core/registry/ModBlockRegistry.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/core/registry/ModItemRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/core/registry/ModItemRegistry.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/core/registry/ModLootModifiers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/core/registry/ModLootModifiers.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/datagen/ModDataGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/datagen/ModDataGenerator.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModAdvancementProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModAdvancementProvider.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModBlockTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModBlockTagsProvider.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModItemTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModItemTagsProvider.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModLootTableProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModLootTableProvider.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModModelProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModModelProvider.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModRecipeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModRecipeProvider.java -------------------------------------------------------------------------------- /Forge/src/main/java/com/autovw/advancednetherite/registry/ForgeRegistryHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/java/com/autovw/advancednetherite/registry/ForgeRegistryHelper.java -------------------------------------------------------------------------------- /Forge/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /Forge/src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /Forge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/Forge/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/LICENSE -------------------------------------------------------------------------------- /NeoForge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/build.gradle -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/equipment/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/equipment/netherite_diamond.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/equipment/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/equipment/netherite_emerald.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/equipment/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/equipment/netherite_gold.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/equipment/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/equipment/netherite_iron.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_axe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_block.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_boots.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_helmet.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_hoe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_ingot.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_pickaxe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_shovel.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_diamond_sword.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_axe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_block.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_boots.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_helmet.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_hoe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_ingot.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_pickaxe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_shovel.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_emerald_sword.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_axe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_block.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_boots.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_chestplate.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_helmet.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_hoe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_ingot.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_leggings.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_pickaxe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_shovel.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_gold_sword.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_axe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_block.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_boots.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_chestplate.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_helmet.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_hoe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_ingot.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_leggings.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_pickaxe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_shovel.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/items/netherite_iron_sword.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_axe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/models/item/netherite_gold_hoe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_axe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/assets/advancednetherite/models/item/netherite_iron_hoe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/recipe/lodestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/recipe/lodestone.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_block.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_diamond_ingot.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_block.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_emerald_ingot.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_block.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_gold_ingot.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_block.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/recipe/netherite_iron_ingot.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/block/netherite_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/block/netherite_blocks.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_diamond.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_emerald.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_gold.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/axe/netherite_iron.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_diamond.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_emerald.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_gold.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/boots/netherite_iron.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/chestplate/netherite.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_crops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_crops.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_gold.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/drops_additional_iron.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/helmet/netherite_gold.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_gold.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/hoe/netherite_iron.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/ingot/netherites.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/leggings/netherite.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/netherite_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/netherite_blocks.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/netherite_ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/netherite_ingots.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/pacify_piglins_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/pacify_piglins_armor.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/pickaxe/netherite.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/shovel/netherite.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_gold.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/sword/netherite_iron.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/tier/armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/tier/armor.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/advancednetherite/tags/item/tier/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/advancednetherite/tags/item/tier/tools.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/block/beacon_base_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/block/beacon_base_blocks.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/block/guarded_by_piglins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/block/guarded_by_piglins.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/block/needs_diamond_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/block/needs_diamond_tool.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/axes.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/beacon_payment_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/beacon_payment_items.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/chest_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/chest_armor.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/cluster_max_harvestables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/cluster_max_harvestables.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/foot_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/foot_armor.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/head_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/head_armor.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/hoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/hoes.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/leg_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/leg_armor.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/pickaxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/pickaxes.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/piglin_loved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/piglin_loved.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/piglin_safe_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/piglin_safe_armor.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/shovels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/shovels.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/swords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/swords.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/minecraft/tags/item/trimmable_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/minecraft/tags/item/trimmable_armor.json -------------------------------------------------------------------------------- /NeoForge/src/generated/resources/data/neoforge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/generated/resources/data/neoforge/loot_modifiers/global_loot_modifiers.json -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteNeoForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteNeoForge.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/AdvancedNetheriteTab.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/NeoForgePlatformHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/NeoForgePlatformHelper.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/client/ClientHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/client/ClientHandler.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/common/EventHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/common/EventHandler.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/common/loot/CropDropsLootModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/common/loot/CropDropsLootModifier.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/common/loot/MobDropsLootModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/common/loot/MobDropsLootModifier.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/common/loot/OreDropsLootModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/common/loot/OreDropsLootModifier.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/config/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/config/Config.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/core/registry/ModBlockRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/core/registry/ModBlockRegistry.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/core/registry/ModItemRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/core/registry/ModItemRegistry.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/core/registry/ModLootModifiers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/core/registry/ModLootModifiers.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/datagen/ModDataGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/datagen/ModDataGenerator.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModModelProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/datagen/providers/ModModelProvider.java -------------------------------------------------------------------------------- /NeoForge/src/main/java/com/autovw/advancednetherite/registry/NeoForgeRegistryHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/java/com/autovw/advancednetherite/registry/NeoForgeRegistryHelper.java -------------------------------------------------------------------------------- /NeoForge/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /NeoForge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/NeoForge/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Autovw/AdvancedNetherite/HEAD/settings.gradle --------------------------------------------------------------------------------