├── .gitattributes ├── .gitignore ├── build.gradle ├── editorconfig.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── generated └── resources │ ├── assets │ └── mynethersdelight │ │ ├── blockstates │ │ ├── bullet_pepper_crate.json │ │ ├── cold_striderloaf_block.json │ │ ├── crimson_fungus_colony.json │ │ ├── ghasta_with_cream_block.json │ │ ├── nether_bricks_cabinet.json │ │ ├── powdery_block.json │ │ ├── powdery_button.json │ │ ├── powdery_cabinet.json │ │ ├── powdery_door.json │ │ ├── powdery_hanging_sign.json │ │ ├── powdery_mosaic.json │ │ ├── powdery_mosaic_slab.json │ │ ├── powdery_mosaic_stairs.json │ │ ├── powdery_planks.json │ │ ├── powdery_pressure_plate.json │ │ ├── powdery_sign.json │ │ ├── powdery_slab.json │ │ ├── powdery_stairs.json │ │ ├── powdery_trapdoor.json │ │ ├── powdery_wall_hanging_sign.json │ │ ├── powdery_wall_sign.json │ │ ├── red_nether_bricks_cabinet.json │ │ ├── resurgent_soil.json │ │ ├── striderloaf_block.json │ │ ├── stripped_powdery_block.json │ │ └── warped_fungus_colony.json │ │ ├── lang │ │ └── en_us.json │ │ └── models │ │ └── block │ │ ├── bullet_pepper_crate.json │ │ ├── crimson_fungus_colony_stage0.json │ │ ├── crimson_fungus_colony_stage1.json │ │ ├── crimson_fungus_colony_stage2.json │ │ ├── crimson_fungus_colony_stage3.json │ │ ├── nether_bricks_cabinet.json │ │ ├── nether_bricks_cabinet_open.json │ │ ├── powdery_block.json │ │ ├── powdery_block_horizontal.json │ │ ├── powdery_button.json │ │ ├── powdery_button_pressed.json │ │ ├── powdery_cabinet.json │ │ ├── powdery_cabinet_open.json │ │ ├── powdery_door_bottom_left.json │ │ ├── powdery_door_bottom_left_open.json │ │ ├── powdery_door_bottom_right.json │ │ ├── powdery_door_bottom_right_open.json │ │ ├── powdery_door_top_left.json │ │ ├── powdery_door_top_left_open.json │ │ ├── powdery_door_top_right.json │ │ ├── powdery_door_top_right_open.json │ │ ├── powdery_hanging_sign.json │ │ ├── powdery_mosaic.json │ │ ├── powdery_mosaic_slab.json │ │ ├── powdery_mosaic_slab_top.json │ │ ├── powdery_mosaic_stairs.json │ │ ├── powdery_mosaic_stairs_inner.json │ │ ├── powdery_mosaic_stairs_outer.json │ │ ├── powdery_planks.json │ │ ├── powdery_pressure_plate.json │ │ ├── powdery_pressure_plate_down.json │ │ ├── powdery_sign.json │ │ ├── powdery_slab.json │ │ ├── powdery_slab_top.json │ │ ├── powdery_stairs.json │ │ ├── powdery_stairs_inner.json │ │ ├── powdery_stairs_outer.json │ │ ├── powdery_trapdoor_bottom.json │ │ ├── powdery_trapdoor_open.json │ │ ├── powdery_trapdoor_top.json │ │ ├── red_nether_bricks_cabinet.json │ │ ├── red_nether_bricks_cabinet_open.json │ │ ├── resurgent_soil.json │ │ ├── stripped_powdery_block.json │ │ ├── stripped_powdery_block_horizontal.json │ │ ├── warped_fungus_colony_stage0.json │ │ ├── warped_fungus_colony_stage1.json │ │ ├── warped_fungus_colony_stage2.json │ │ └── warped_fungus_colony_stage3.json │ └── data │ ├── brewinandchewin │ └── tags │ │ └── items │ │ └── horror_lasagna_meats.json │ ├── farmersdelight │ ├── recipes │ │ └── cutting │ │ │ ├── powdery_block.json │ │ │ ├── powdery_door.json │ │ │ ├── powdery_sign.json │ │ │ ├── powdery_trapdoor.json │ │ │ ├── pumpkin_slice_alt.json │ │ │ └── sugar_cane_alt.json │ └── tags │ │ ├── blocks │ │ ├── heat_sources.json │ │ ├── mineable │ │ │ └── knife.json │ │ ├── mushroom_colony_growable_on.json │ │ ├── tray_heat_sources.json │ │ ├── unaffected_by_rich_soil.json │ │ └── wild_crops.json │ │ └── items │ │ ├── cabbage_roll_ingredients.json │ │ ├── cabinets.json │ │ ├── cabinets │ │ └── wooden.json │ │ ├── wild_crops.json │ │ └── wolf_prey.json │ ├── forge │ └── tags │ │ └── items │ │ ├── boiled_egg.json │ │ ├── bread.json │ │ ├── cooked_eggs.json │ │ ├── cooked_hoglin.json │ │ ├── cooked_pork.json │ │ ├── cooked_sausage.json │ │ ├── crops │ │ └── rice.json │ │ ├── dough.json │ │ ├── eggs.json │ │ ├── giant_tentacles.json │ │ ├── grain │ │ └── rice.json │ │ ├── magma_cube.json │ │ ├── pasta.json │ │ ├── pasta │ │ └── raw_pasta.json │ │ ├── raw_fishes.json │ │ ├── raw_ghast.json │ │ ├── raw_hoglin.json │ │ ├── raw_pork.json │ │ ├── raw_strider.json │ │ └── rice_pasta.json │ ├── minecraft │ ├── recipes │ │ └── food_serving.json │ └── tags │ │ ├── blocks │ │ ├── bamboo_plantable_on.json │ │ ├── ceiling_hanging_signs.json │ │ ├── dirt.json │ │ ├── fence_gates.json │ │ ├── fences.json │ │ ├── flower_pots.json │ │ ├── hoglin_repellents.json │ │ ├── infiniburn_nether.json │ │ ├── mineable │ │ │ ├── axe.json │ │ │ ├── pickaxe.json │ │ │ └── shovel.json │ │ ├── mushroom_grow_block.json │ │ ├── nylium.json │ │ ├── piglin_repellents.json │ │ ├── planks.json │ │ ├── signs.json │ │ ├── slabs.json │ │ ├── small_flowers.json │ │ ├── soul_fire_base_blocks.json │ │ ├── soul_speed_blocks.json │ │ ├── stairs.json │ │ ├── standing_signs.json │ │ ├── tall_flowers.json │ │ ├── wall_hanging_signs.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_fences.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ ├── wooden_stairs.json │ │ └── wooden_trapdoors.json │ │ └── items │ │ ├── hanging_signs.json │ │ ├── non_flammable_wood.json │ │ ├── piglin_food.json │ │ ├── planks.json │ │ ├── signs.json │ │ ├── slabs.json │ │ ├── soul_fire_base_blocks.json │ │ ├── stairs.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_fences.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ ├── wooden_stairs.json │ │ └── wooden_trapdoors.json │ ├── mynethersdelight │ ├── advancements │ │ └── recipes │ │ │ ├── building_blocks │ │ │ ├── crafting │ │ │ │ ├── block_of_powdery_cannon.json │ │ │ │ ├── bullet_papper_crate.json │ │ │ │ ├── hoglin_trophy.json │ │ │ │ ├── hoglin_trophy_cure.json │ │ │ │ ├── letios_compost_from_bone_alt.json │ │ │ │ ├── letios_compost_from_rotten_flesh.json │ │ │ │ ├── powdery_mosaic.json │ │ │ │ ├── powdery_mosaic_slab.json │ │ │ │ ├── powdery_mosaic_stairs.json │ │ │ │ ├── powdery_plank.json │ │ │ │ ├── powdery_slab.json │ │ │ │ ├── powdery_stairs.json │ │ │ │ ├── skoglin_trophy.json │ │ │ │ ├── waxed_hoglin_trophy.json │ │ │ │ └── zoglin_trophy.json │ │ │ └── stonecutting │ │ │ │ ├── blackstone_bricks_cabinet.json │ │ │ │ ├── nether_bricks_cabinet.json │ │ │ │ └── red_nether_bricks_cabinet.json │ │ │ ├── cooking │ │ │ ├── burn_roll.json │ │ │ ├── chilidog.json │ │ │ ├── crimson_stroganoff.json │ │ │ ├── deviled_egg.json │ │ │ ├── egg_soup.json │ │ │ ├── fried_hoglin_chop.json │ │ │ ├── hot_wings.json │ │ │ ├── hotcream.json │ │ │ ├── roast_stuffed_hoglin.json │ │ │ ├── rock_soup.json │ │ │ ├── sausage_and_potatoes.json │ │ │ ├── scotch_eggs.json │ │ │ ├── spicy_curry.json │ │ │ ├── spicy_hoglin_stew.json │ │ │ ├── spicy_noodle_soup.json │ │ │ ├── strider_and_grilled_fungus.json │ │ │ ├── strider_stew.json │ │ │ └── twisted_ghasta.json │ │ │ ├── food │ │ │ ├── boiled_egg_cooking.json │ │ │ ├── boiled_egg_from_campfire_cooking.json │ │ │ ├── boiled_egg_from_smoking.json │ │ │ ├── bread_from_smelting.json │ │ │ ├── bread_from_smoking.json │ │ │ ├── bread_loaf_from_smelting.json │ │ │ ├── bread_loaf_from_smoking.json │ │ │ ├── hoglin_loin_cooking.json │ │ │ ├── hoglin_loin_from_campfire_cooking.json │ │ │ ├── hoglin_loin_from_smoking.json │ │ │ ├── hoglin_sausage_cooking.json │ │ │ ├── hoglin_sausage_from_campfire_cooking.json │ │ │ ├── hoglin_sausage_from_smoking.json │ │ │ ├── toast_cooking.json │ │ │ ├── toast_from_campfire_cooking.json │ │ │ └── toast_from_smoking.json │ │ │ ├── misc │ │ │ └── crafting │ │ │ │ ├── bacon_wrapped_sausage_stick.json │ │ │ │ ├── basket_alt.json │ │ │ │ ├── bleeding_tartar.json │ │ │ │ ├── block_of_powdery_cabinet.json │ │ │ │ ├── blue_tenderloin_steak.json │ │ │ │ ├── breakfast_sampler.json │ │ │ │ ├── bullet_papper_crate_alt.json │ │ │ │ ├── burnt_roll.json │ │ │ │ ├── dried_ghast_with_milk.json │ │ │ │ ├── ghast_dough.json │ │ │ │ ├── ghast_salad.json │ │ │ │ ├── ghast_sourdough.json │ │ │ │ ├── ghasta_with_cream.json │ │ │ │ ├── golden_egg.json │ │ │ │ ├── hot_wings_bucket.json │ │ │ │ ├── hot_wings_bucket_alt.json │ │ │ │ ├── hotcream_bucket.json │ │ │ │ ├── hotcream_cone.json │ │ │ │ ├── hotdog.json │ │ │ │ ├── hotdog_with_mixed_salad.json │ │ │ │ ├── hotdog_with_nether_salad.json │ │ │ │ ├── magma_cake.json │ │ │ │ ├── magma_cake_alt.json │ │ │ │ ├── nether_burger.json │ │ │ │ ├── nethers_stove.json │ │ │ │ ├── nethers_stove_alt0.json │ │ │ │ ├── powdery_fence.json │ │ │ │ ├── powdery_hanging_sign.json │ │ │ │ ├── powdery_sign.json │ │ │ │ ├── powdery_torch.json │ │ │ │ ├── raw_stuffed_hoglin.json │ │ │ │ ├── red_loin_on_a_stick.json │ │ │ │ ├── rock_soup.json │ │ │ │ ├── scaffolding_alt.json │ │ │ │ ├── sizzling_pudding.json │ │ │ │ ├── soul_nethers_stove.json │ │ │ │ ├── soul_nethers_stove_alt0.json │ │ │ │ ├── spicy_cotton.json │ │ │ │ ├── spicy_skewer.json │ │ │ │ ├── stick_alt.json │ │ │ │ ├── striderloaf.json │ │ │ │ ├── stuffed_pepper.json │ │ │ │ └── sugar_alt.json │ │ │ └── redstone │ │ │ └── crafting │ │ │ ├── powdery_button.json │ │ │ ├── powdery_door.json │ │ │ ├── powdery_fence_gate.json │ │ │ ├── powdery_pressure_plate.json │ │ │ ├── powdery_trapdoor.json │ │ │ └── tnt_alt.json │ ├── forge │ │ └── biome_modifier │ │ │ └── patch_powdery_cane.json │ ├── recipes │ │ ├── boiled_egg_cooking.json │ │ ├── boiled_egg_from_campfire_cooking.json │ │ ├── boiled_egg_from_smoking.json │ │ ├── bread_from_smelting.json │ │ ├── bread_from_smoking.json │ │ ├── bread_loaf_from_smelting.json │ │ ├── bread_loaf_from_smoking.json │ │ ├── cooking │ │ │ ├── burn_roll.json │ │ │ ├── chilidog.json │ │ │ ├── crimson_stroganoff.json │ │ │ ├── deviled_egg.json │ │ │ ├── egg_soup.json │ │ │ ├── fried_hoglin_chop.json │ │ │ ├── fries_ghasta.json │ │ │ ├── giant_tentacles.json │ │ │ ├── hot_wings.json │ │ │ ├── hotcream.json │ │ │ ├── roast_stuffed_hoglin.json │ │ │ ├── rock_soup.json │ │ │ ├── sausage_and_potatoes.json │ │ │ ├── scotch_eggs.json │ │ │ ├── spicy_curry.json │ │ │ ├── spicy_hoglin_stew.json │ │ │ ├── spicy_noodle_soup.json │ │ │ ├── strider_and_grilled_fungus.json │ │ │ ├── strider_stew.json │ │ │ └── twisted_ghasta.json │ │ ├── crafting │ │ │ ├── bacon_wrapped_sausage_stick.json │ │ │ ├── basket_alt.json │ │ │ ├── bleeding_tartar.json │ │ │ ├── block_of_powdery_cabinet.json │ │ │ ├── block_of_powdery_cannon.json │ │ │ ├── blue_tenderloin_steak.json │ │ │ ├── breakfast_sampler.json │ │ │ ├── bullet_papper_crate.json │ │ │ ├── bullet_papper_crate_alt.json │ │ │ ├── burnt_roll.json │ │ │ ├── dried_ghast_with_milk.json │ │ │ ├── ghast_dough.json │ │ │ ├── ghast_salad.json │ │ │ ├── ghast_sourdough.json │ │ │ ├── ghasta_with_cream.json │ │ │ ├── golden_egg.json │ │ │ ├── hoglin_trophy.json │ │ │ ├── hoglin_trophy_cure.json │ │ │ ├── hot_wings_bucket.json │ │ │ ├── hot_wings_bucket_alt.json │ │ │ ├── hotcream_bucket.json │ │ │ ├── hotcream_cone.json │ │ │ ├── hotdog.json │ │ │ ├── hotdog_with_mixed_salad.json │ │ │ ├── hotdog_with_nether_salad.json │ │ │ ├── letios_compost_from_bone_alt.json │ │ │ ├── letios_compost_from_rotten_flesh.json │ │ │ ├── magma_cake.json │ │ │ ├── magma_cake_alt.json │ │ │ ├── nether_burger.json │ │ │ ├── nethers_stove.json │ │ │ ├── nethers_stove_alt0.json │ │ │ ├── powdery_button.json │ │ │ ├── powdery_door.json │ │ │ ├── powdery_fence.json │ │ │ ├── powdery_fence_gate.json │ │ │ ├── powdery_hanging_sign.json │ │ │ ├── powdery_mosaic.json │ │ │ ├── powdery_mosaic_slab.json │ │ │ ├── powdery_mosaic_stairs.json │ │ │ ├── powdery_plank.json │ │ │ ├── powdery_pressure_plate.json │ │ │ ├── powdery_sign.json │ │ │ ├── powdery_slab.json │ │ │ ├── powdery_stairs.json │ │ │ ├── powdery_torch.json │ │ │ ├── powdery_trapdoor.json │ │ │ ├── raw_stuffed_hoglin.json │ │ │ ├── red_loin_on_a_stick.json │ │ │ ├── rock_soup.json │ │ │ ├── scaffolding_alt.json │ │ │ ├── sizzling_pudding.json │ │ │ ├── skoglin_trophy.json │ │ │ ├── soul_nethers_stove.json │ │ │ ├── soul_nethers_stove_alt0.json │ │ │ ├── spicy_cotton.json │ │ │ ├── spicy_skewer.json │ │ │ ├── stick_alt.json │ │ │ ├── striderloaf.json │ │ │ ├── stuffed_pepper.json │ │ │ ├── sugar_alt.json │ │ │ ├── tnt_alt.json │ │ │ ├── waxed_hoglin_trophy.json │ │ │ └── zoglin_trophy.json │ │ ├── cutting │ │ │ ├── balze_rod.json │ │ │ ├── bullet_pepper.json │ │ │ ├── crimson_fungus.json │ │ │ ├── ghasmati.json │ │ │ ├── ghast_dough.json │ │ │ ├── gunpowder_cane.json │ │ │ ├── hoglin_hide.json │ │ │ ├── hoglin_sausage.json │ │ │ ├── hoglin_trophy.json │ │ │ ├── magma_cake.json │ │ │ ├── minced_strider.json │ │ │ ├── skoglin_trophy.json │ │ │ ├── skoglin_trophy_alt.json │ │ │ ├── slices_of_bread.json │ │ │ ├── strider_egg.json │ │ │ └── warped_fungus.json │ │ ├── hoglin_loin_cooking.json │ │ ├── hoglin_loin_from_campfire_cooking.json │ │ ├── hoglin_loin_from_smoking.json │ │ ├── hoglin_sausage_cooking.json │ │ ├── hoglin_sausage_from_campfire_cooking.json │ │ ├── hoglin_sausage_from_smoking.json │ │ ├── stonecutting │ │ │ ├── blackstone_bricks_cabinet.json │ │ │ ├── nether_bricks_cabinet.json │ │ │ └── red_nether_bricks_cabinet.json │ │ ├── toast_cooking.json │ │ ├── toast_from_campfire_cooking.json │ │ └── toast_from_smoking.json │ ├── tags │ │ ├── blocks │ │ │ ├── above_propagate_plant.json │ │ │ ├── below_propagate_plant.json │ │ │ ├── letios_activators.json │ │ │ ├── letios_flames.json │ │ │ ├── powdery_cane.json │ │ │ ├── powdery_cannon_plantable_on.json │ │ │ ├── resurgent_soil_plant.json │ │ │ ├── showcase_activators.json │ │ │ └── showcase_flames.json │ │ └── items │ │ │ ├── block_of_powdery.json │ │ │ ├── boiled_egg_candidate.json │ │ │ ├── chili_meats.json │ │ │ ├── curry_meats.json │ │ │ ├── ghast_meats.json │ │ │ ├── hoglin_cure.json │ │ │ ├── hoglin_waxed.json │ │ │ ├── hot_spice.json │ │ │ ├── stove_fire_fuel.json │ │ │ ├── stove_soul_fuel.json │ │ │ ├── strider_meats.json │ │ │ └── stuffed_hoglin_items.json │ └── worldgen │ │ ├── configured_feature │ │ └── patch_powdery_cane.json │ │ └── placed_feature │ │ └── patch_powdery_cane.json │ └── mypersonaldelight │ ├── advancements │ └── recipes │ │ └── food │ │ └── crafting │ │ └── tear_popsicle.json │ └── recipes │ └── crafting │ └── tear_popsicle.json └── main ├── java └── com │ └── soytutta │ └── mynethersdelight │ ├── MyNethersDelight.java │ ├── client │ ├── event │ │ └── ClientSetupEvents.java │ └── renderer │ │ └── NetherStoveRenderer.java │ ├── common │ ├── MNDCommonSetup.java │ ├── block │ │ ├── BlazefireBlock.java │ │ ├── BreadLoafBlock.java │ │ ├── GhastaWithCreamBlock.java │ │ ├── LetiosCompostBlock.java │ │ ├── MNDHangingSignBlock.java │ │ ├── MNDStandingSignBlock.java │ │ ├── MNDWallHangingSignBlock.java │ │ ├── MNDWallSignBlock.java │ │ ├── MagmaCakeBlock.java │ │ ├── NetherStoveBlock.java │ │ ├── PepperCrateBlock.java │ │ ├── PowderyCaneBlock.java │ │ ├── PowderyCannonBlock.java │ │ ├── PowderyCannonSaplingBlock.java │ │ ├── PowderyFlowerBlock.java │ │ ├── ResurgentSoilBlock.java │ │ ├── ResurgentSoilFarmlandBlock.java │ │ ├── StriderloafBlock.java │ │ ├── StrippableBlock.java │ │ ├── StuffedHoglinBlock.java │ │ ├── TrophyBlock.java │ │ ├── entity │ │ │ ├── MNDHangingSignBlockEntity.java │ │ │ ├── MNDSignBlockEntity.java │ │ │ └── NetherStoveBlockEntity.java │ │ └── utility │ │ │ └── MNDWoodTypes.java │ ├── effect │ │ ├── GoodPungentEffect.java │ │ └── PungentEffect.java │ ├── enchantment │ │ └── HuntingEnchantment.java │ ├── entity │ │ ├── StriderRockEntity.java │ │ └── ia │ │ │ └── EatMagmaCakeGoal.java │ ├── events │ │ └── CommonEvent.java │ ├── item │ │ ├── ConsumableBlockItem.java │ │ ├── GoldenEggItem.java │ │ ├── HotCreamConeItem.java │ │ ├── HotCreamItem.java │ │ ├── StriderEggItem.java │ │ └── StriderRockItem.java │ ├── loot │ │ ├── MNDPastrySlicingModifier.java │ │ └── RemplaceLootModifier.java │ ├── registry │ │ ├── MNDBiomeFeatures.java │ │ ├── MNDBlockEntityTypes.java │ │ ├── MNDBlocks.java │ │ ├── MNDCreativeTab.java │ │ ├── MNDEffects.java │ │ ├── MNDEnchantments.java │ │ ├── MNDEntityTypes.java │ │ └── MNDItems.java │ ├── tag │ │ ├── CompatibilityTags.java │ │ ├── MNDTags.java │ │ └── MyCommonTags.java │ ├── utility │ │ ├── MNDFoodValues.java │ │ └── MNDTextUtils.java │ └── world │ │ └── feature │ │ └── PowderyCaneFeature.java │ ├── core │ ├── data │ │ ├── MNDBlockStates.java │ │ ├── MNDBlockTags.java │ │ ├── MNDDataGenerators.java │ │ ├── MNDItemTags.java │ │ ├── MNDLang.java │ │ ├── MNDRecipes.java │ │ ├── recipes │ │ │ ├── MNDCookingRecipes.java │ │ │ ├── MNDCraftingRecipes.java │ │ │ ├── MNDCuttingRecipes.java │ │ │ └── MNDSmeltingRecipes.java │ │ └── worldgen │ │ │ ├── MNDConfiguredFeatures.java │ │ │ ├── biome │ │ │ └── MNDBiomeModifiers.java │ │ │ └── placement │ │ │ └── MNDPlacements.java │ └── mixin │ │ ├── FireworkRocketRecipeMixin.java │ │ ├── FrogEntityMixin.java │ │ └── amendments │ │ └── InteractEventsMixin.java │ └── integration │ ├── MNDEveryCompat.java │ ├── addonsdelight │ └── MNDItemsMD.java │ └── jei │ ├── JEIPlugin.java │ ├── MNDRecipeTypes.java │ ├── category │ └── ForgotingRecipeCategory.java │ └── resource │ └── ForgotingDummy.java └── resources ├── META-INF └── mods.toml ├── assets ├── miners_delight │ └── models │ │ └── item │ │ ├── egg_soup_cup.json │ │ ├── rock_soup_cup.json │ │ ├── spicy_hoglin_stew_cup.json │ │ ├── spicy_noodle_soup_cup.json │ │ └── strider_stew_cup.json └── mynethersdelight │ ├── blockstates │ ├── blackstone_bricks_cabinet.json │ ├── blackstone_cooking_pot.json │ ├── bread_loaf_block.json │ ├── bullet_pepper.json │ ├── hoglin_trophy.json │ ├── letios_compost.json │ ├── magma_cake.json │ ├── magma_cake_block.json │ ├── nether_stove.json │ ├── potted_bullet_pepper.json │ ├── potted_powdery_cannon.json │ ├── powdery_cane.json │ ├── powdery_cannon.json │ ├── powdery_chubby_sapling.json │ ├── powdery_fence.json │ ├── powdery_fence_gate.json │ ├── powdery_torch.json │ ├── resurgent_soil_farmland.json │ ├── skoglin_trophy.json │ ├── stuffed_hoglin.json │ ├── wall_powdery_torch.json │ ├── waxed_hoglin_trophy.json │ └── zoglin_trophy.json │ ├── lang │ ├── es_es.json │ ├── ja_jp.json │ ├── pt_br.json │ ├── ru_ru.json │ ├── uk_ua.json │ └── zh_cn.json │ ├── models │ ├── block │ │ ├── big_tray_bottom.json │ │ ├── big_tray_top.json │ │ ├── blackstone_bricks_cabinet.json │ │ ├── blackstone_bricks_cabinet_open.json │ │ ├── blackstone_cooking_pot.json │ │ ├── blackstone_cooking_pot_handle.json │ │ ├── blackstone_cooking_pot_tray.json │ │ ├── blazefire_block_leftover.json │ │ ├── blazefire_block_stage0.json │ │ ├── blazefire_block_stage1.json │ │ ├── blazefire_block_stage2.json │ │ ├── blazefire_block_stage3.json │ │ ├── bread_loaf_stage0.json │ │ ├── bread_loaf_stage1.json │ │ ├── bread_loaf_stage2.json │ │ ├── bread_loaf_stage3.json │ │ ├── bread_loaf_stage4.json │ │ ├── bullet_age0.json │ │ ├── bullet_age1.json │ │ ├── bullet_age2.json │ │ ├── cane_base_0.json │ │ ├── cane_base_1.json │ │ ├── cane_base_on.json │ │ ├── cane_leaves.json │ │ ├── cane_on.json │ │ ├── cannon1_age0.json │ │ ├── cannon1_age1.json │ │ ├── cannon2_age0.json │ │ ├── cannon2_age1.json │ │ ├── cannon3_age0.json │ │ ├── cannon3_age1.json │ │ ├── cannon4_age0.json │ │ ├── cannon4_age1.json │ │ ├── cannon_large_bullet.json │ │ ├── cannon_large_leaves.json │ │ ├── cannon_sapling.json │ │ ├── cannon_small_bullet.json │ │ ├── cannon_small_leaves.json │ │ ├── cold_striderloaf_block_leftover.json │ │ ├── cold_striderloaf_block_stage0.json │ │ ├── cold_striderloaf_block_stage1.json │ │ ├── cold_striderloaf_block_stage2.json │ │ ├── cold_striderloaf_block_stage3.json │ │ ├── double_cake │ │ │ ├── magma_cake_full.json │ │ │ ├── magma_cake_slice1.json │ │ │ ├── magma_cake_slice2.json │ │ │ ├── magma_cake_slice3.json │ │ │ ├── magma_cake_slice4.json │ │ │ ├── magma_cake_slice5.json │ │ │ └── magma_cake_slice6.json │ │ ├── ghasta_with_cream_block_leftover.json │ │ ├── ghasta_with_cream_block_stage0.json │ │ ├── ghasta_with_cream_block_stage1.json │ │ ├── ghasta_with_cream_block_stage2.json │ │ ├── ghasta_with_cream_block_stage3.json │ │ ├── hoglin_trophy.json │ │ ├── letios_compost_0.json │ │ ├── letios_compost_1.json │ │ ├── letios_compost_2.json │ │ ├── letios_compost_3.json │ │ ├── letios_compost_4.json │ │ ├── letios_compost_5.json │ │ ├── letios_compost_6.json │ │ ├── letios_compost_7.json │ │ ├── letios_compost_8.json │ │ ├── letios_compost_9.json │ │ ├── magma_cake.json │ │ ├── magma_cake_slice1.json │ │ ├── magma_cake_slice2.json │ │ ├── magma_cake_slice3.json │ │ ├── magma_cake_slice4.json │ │ ├── magma_cake_slice5.json │ │ ├── magma_cake_slice6.json │ │ ├── nether_stove.json │ │ ├── nether_stove_on.json │ │ ├── nether_stove_soul.json │ │ ├── potted_bullet_pepper.json │ │ ├── potted_powdery_cannon.json │ │ ├── powdery_basket.json │ │ ├── powdery_fence_gate.json │ │ ├── powdery_fence_gate_open.json │ │ ├── powdery_fence_gate_wall.json │ │ ├── powdery_fence_gate_wall_open.json │ │ ├── powdery_fence_post.json │ │ ├── powdery_fence_side_east.json │ │ ├── powdery_fence_side_north.json │ │ ├── powdery_fence_side_south.json │ │ ├── powdery_fence_side_west.json │ │ ├── powdery_lit.json │ │ ├── powdery_state0.json │ │ ├── powdery_state1.json │ │ ├── powdery_torch.json │ │ ├── resurgent_soil_farmland.json │ │ ├── resurgent_soil_farmland_moist.json │ │ ├── skoglin_trophy.json │ │ ├── striderloaf_block_leftover.json │ │ ├── striderloaf_block_stage0.json │ │ ├── striderloaf_block_stage1.json │ │ ├── striderloaf_block_stage2.json │ │ ├── striderloaf_block_stage3.json │ │ ├── stuffed_hoglin_bottom.json │ │ ├── stuffed_hoglin_ear0_bottom.json │ │ ├── stuffed_hoglin_ear0_top.json │ │ ├── stuffed_hoglin_ear1_bottom.json │ │ ├── stuffed_hoglin_ear1_top.json │ │ ├── stuffed_hoglin_leg0_bottom.json │ │ ├── stuffed_hoglin_leg0_top.json │ │ ├── stuffed_hoglin_leg1_bottom.json │ │ ├── stuffed_hoglin_leg1_top.json │ │ ├── stuffed_hoglin_leg2_bottom.json │ │ ├── stuffed_hoglin_leg2_top.json │ │ ├── stuffed_hoglin_leg3_bottom.json │ │ ├── stuffed_hoglin_leg3_top.json │ │ ├── stuffed_hoglin_snout_bottom.json │ │ ├── stuffed_hoglin_snout_top.json │ │ ├── stuffed_hoglin_stuffed0_bottom.json │ │ ├── stuffed_hoglin_stuffed0_top.json │ │ ├── stuffed_hoglin_stuffed1_bottom.json │ │ ├── stuffed_hoglin_stuffed1_top.json │ │ ├── stuffed_hoglin_stuffed2_bottom.json │ │ ├── stuffed_hoglin_stuffed2_top.json │ │ ├── stuffed_hoglin_top.json │ │ ├── template_farmland_custom.json │ │ ├── wall_powdery_torch.json │ │ └── zoglin_trophy.json │ └── item │ │ ├── bacon-wrapped_sausage_on_a_stick.json │ │ ├── blackstone_bricks_cabinet.json │ │ ├── blackstone_cooking_pot.json │ │ ├── blazefire.json │ │ ├── bleeding_tartar.json │ │ ├── blue_tenderloin_steak.json │ │ ├── boiled_egg.json │ │ ├── bread_loaf.json │ │ ├── breakfast_sampler.json │ │ ├── bullet_pepper.json │ │ ├── bullet_pepper_crate.json │ │ ├── burnt_roll.json │ │ ├── chilidog.json │ │ ├── cold_striderloaf.json │ │ ├── cooked_loin.json │ │ ├── crimson_fungus_colony.json │ │ ├── crimson_stroganoff.json │ │ ├── deviled_egg.json │ │ ├── dried_ghast_with_milk.json │ │ ├── egg_soup.json │ │ ├── enchanted_golden_egg.json │ │ ├── fried_hoglin_chop.json │ │ ├── fries_ghasta.json │ │ ├── ghasmati.json │ │ ├── ghast_dough.json │ │ ├── ghast_salad.json │ │ ├── ghast_sourdough.json │ │ ├── ghasta.json │ │ ├── ghasta_with_cream.json │ │ ├── giant_takoyaki.json │ │ ├── golden_egg.json │ │ ├── hoglin_hide.json │ │ ├── hoglin_loin.json │ │ ├── hoglin_sausage.json │ │ ├── hoglin_trophy.json │ │ ├── hot_cream.json │ │ ├── hot_cream_cone.json │ │ ├── hot_wings.json │ │ ├── hot_wings_bucket.json │ │ ├── hotdog.json │ │ ├── hotdog_with_mixed_salad.json │ │ ├── hotdog_with_nether_salad.json │ │ ├── letios_compost.json │ │ ├── magma_cake.json │ │ ├── magma_cake_block.json │ │ ├── magma_cake_slice.json │ │ ├── minced_strider.json │ │ ├── nether_bricks_cabinet.json │ │ ├── nether_bricks_soul_stove.json │ │ ├── nether_bricks_stove.json │ │ ├── nether_burger.json │ │ ├── plate_of_cold_striderloaf.json │ │ ├── plate_of_ghasta_with_cream.json │ │ ├── plate_of_striderloaf.json │ │ ├── plate_of_stuffed_hoglin.json │ │ ├── plate_of_stuffed_hoglin_ham.json │ │ ├── plate_of_stuffed_hoglin_snout.json │ │ ├── powder_cannon.json │ │ ├── powdery_block.json │ │ ├── powdery_button.json │ │ ├── powdery_cabinet.json │ │ ├── powdery_door.json │ │ ├── powdery_fence.json │ │ ├── powdery_fence_gate.json │ │ ├── powdery_hanging_sign.json │ │ ├── powdery_mosaic.json │ │ ├── powdery_mosaic_slab.json │ │ ├── powdery_mosaic_stairs.json │ │ ├── powdery_planks.json │ │ ├── powdery_pressure_plate.json │ │ ├── powdery_sign.json │ │ ├── powdery_slab.json │ │ ├── powdery_stairs.json │ │ ├── powdery_torch.json │ │ ├── powdery_trapdoor.json │ │ ├── raw_stuffed_hoglin.json │ │ ├── red_loin_on_a_stick.json │ │ ├── red_nether_bricks_cabinet.json │ │ ├── resurgent_soil.json │ │ ├── resurgent_soil_farmland.json │ │ ├── roast_ear.json │ │ ├── roast_stuffed_hoglin.json │ │ ├── roasted_sausage.json │ │ ├── rock_soup.json │ │ ├── sausage_and_potatoes.json │ │ ├── scotch_eggs.json │ │ ├── sizzling_pudding.json │ │ ├── skoglin_trophy.json │ │ ├── slices_of_bread.json │ │ ├── spicy_cotton.json │ │ ├── spicy_curry.json │ │ ├── spicy_hoglin_stew.json │ │ ├── spicy_noodle_soup.json │ │ ├── spicy_skewer.json │ │ ├── strider_egg.json │ │ ├── strider_rock.json │ │ ├── strider_slice.json │ │ ├── strider_stew.json │ │ ├── strider_with_grilled_fungus.json │ │ ├── striderloaf.json │ │ ├── stripped_powdery_block.json │ │ ├── stuffed_pepper.json │ │ ├── tear_popsicle.json │ │ ├── toasts.json │ │ ├── twisted_ghasta.json │ │ ├── warped_fungus_colony.json │ │ ├── waxed_hoglin_trophy.json │ │ └── zoglin_trophy.json │ └── textures │ ├── block │ ├── blackstone_bricks_cabinet_back.png │ ├── blackstone_bricks_cabinet_east.png │ ├── blackstone_bricks_cabinet_front.png │ ├── blackstone_bricks_cabinet_front_open.png │ ├── blackstone_bricks_cabinet_top.png │ ├── blackstone_bricks_cabinet_west.png │ ├── blazefire.png │ ├── blazefire_off.png │ ├── blazefire_top.mcmeta │ ├── blazefire_top.png │ ├── bread_loaf.png │ ├── bullet_pepper_crate_bottom.png │ ├── bullet_pepper_crate_side.png │ ├── bullet_pepper_crate_top.png │ ├── cooking_pot_bottom.png │ ├── cooking_pot_handle.png │ ├── cooking_pot_parts.png │ ├── cooking_pot_side.png │ ├── cooking_pot_top.png │ ├── cooking_pot_tray_side.png │ ├── cooking_pot_tray_top.png │ ├── crimson_fungus_colony_stage0.png │ ├── crimson_fungus_colony_stage1.png │ ├── crimson_fungus_colony_stage2.png │ ├── crimson_fungus_colony_stage3.png │ ├── ghasta_with_cream_block.png │ ├── hoglin_trophy_block.png │ ├── leteos_compost_stage0.png │ ├── leteos_compost_stage1.png │ ├── leteos_compost_stage2.png │ ├── magma_cake.png │ ├── magma_cake_faces.png │ ├── magma_cake_inner.png │ ├── magma_cake_side.png │ ├── magma_cake_top.png │ ├── nether_bowl.png │ ├── nether_bricks_cabinet_front.png │ ├── nether_bricks_cabinet_front_open.png │ ├── nether_bricks_cabinet_side.png │ ├── nether_bricks_cabinet_top.png │ ├── nether_stove_bottom.png │ ├── nether_stove_front.png │ ├── nether_stove_front_on.png │ ├── nether_stove_front_on.png.mcmeta │ ├── nether_stove_front_soul.png │ ├── nether_stove_front_soul.png.mcmeta │ ├── nether_stove_side.png │ ├── nether_stove_top.png │ ├── nether_stove_top_on.mcmeta │ ├── nether_stove_top_on.png │ ├── nether_stove_top_on.png.mcmeta │ ├── nether_stove_top_soul.png │ ├── nether_stove_top_soul.png.mcmeta │ ├── powdery_basket_bottom.png │ ├── powdery_basket_side.png │ ├── powdery_basket_top.png │ ├── powdery_block.png │ ├── powdery_block_top.png │ ├── powdery_cabinet_front.png │ ├── powdery_cabinet_front_open.png │ ├── powdery_cabinet_side.png │ ├── powdery_cabinet_top.png │ ├── powdery_cane_base.png │ ├── powdery_cane_base_leaves.png │ ├── powdery_cane_base_leaves_bloomed.png │ ├── powdery_cane_mid.png │ ├── powdery_cane_mid_leaves.png │ ├── powdery_cannon_large_leaves.png │ ├── powdery_cannon_large_leaves_bloomed.png │ ├── powdery_cannon_small_leaves.png │ ├── powdery_cannon_small_leaves_bloomed.png │ ├── powdery_cannon_spikes.png │ ├── powdery_cannon_stage0.png │ ├── powdery_cannon_stalk.png │ ├── powdery_door_bottom.png │ ├── powdery_door_top.png │ ├── powdery_fence.png │ ├── powdery_fence_gate.png │ ├── powdery_fence_gate_particle.png │ ├── powdery_fence_particle.png │ ├── powdery_mosaic.png │ ├── powdery_planks.png │ ├── powdery_scaffolding_bottom.png │ ├── powdery_scaffolding_side.png │ ├── powdery_scaffolding_top.png │ ├── powdery_top.png │ ├── powdery_top_bloomed.png │ ├── powdery_top_leaves.png │ ├── powdery_torch.png │ ├── powdery_trapdoor.png │ ├── red_nether_bricks_cabinet_front.png │ ├── red_nether_bricks_cabinet_front_open.png │ ├── red_nether_bricks_cabinet_side.png │ ├── red_nether_bricks_cabinet_top.png │ ├── resurgent_soil.png │ ├── resurgent_soil_exhaling.png │ ├── resurgent_soil_farmland.png │ ├── resurgent_soil_farmland_exhaling.png │ ├── skoglin_trophy_block.png │ ├── striderloaf.png │ ├── striderloaf_cold.png │ ├── stripped_powdery_block.png │ ├── stripped_powdery_block_top.png │ ├── stuffed_hoglin_block.png │ ├── stuffed_hoglin_tray.png │ ├── tray_ghasta_with_cream_block.png │ ├── tray_striderloaf.png │ ├── tray_striderloaf_cold.png │ ├── trophy_mounting.png │ ├── trophy_mounting_back.png │ ├── warped_fungus_colony_stage0.png │ ├── warped_fungus_colony_stage1.png │ ├── warped_fungus_colony_stage2.png │ ├── warped_fungus_colony_stage3.png │ └── zoglin_trophy_block.png │ ├── entity │ └── signs │ │ ├── hanging │ │ └── powdery.png │ │ └── powdery.png │ ├── gui │ ├── hanging_signs │ │ └── powdery.png │ ├── jei │ │ └── composition.png │ └── nether_pot.png │ ├── item │ ├── bacon-wrapped_sausage_stick.png │ ├── blazefire.png │ ├── bleeding_tartar.png │ ├── blue_tenderloin_steak.png │ ├── boiled_egg.png │ ├── bread_loaf.png │ ├── breakfast_sampler.png │ ├── broken_strider_egg.png │ ├── bullet_pepper.png │ ├── burnt_roll.png │ ├── chilidog.png │ ├── cold_striderloaf.png │ ├── cold_striderloaf_block.png │ ├── cooked_loin.png │ ├── crimson_stroganoff.png │ ├── deviled_egg.png │ ├── dried_ghast_with_milk.png │ ├── egg_soup.png │ ├── egg_soup_cup.png │ ├── fried_hoglin_chop.png │ ├── fries_ghasta.png │ ├── ghasmati.png │ ├── ghast_dough.png │ ├── ghast_salad.png │ ├── ghast_sourdough.png │ ├── ghasta.png │ ├── ghasta_with_cream.png │ ├── ghasta_with_cream_block.png │ ├── giant_takoyaki.png │ ├── golden_egg.png │ ├── hoglin_hide.png │ ├── hoglin_trophy.png │ ├── hot_cream.png │ ├── hot_cream_cone.png │ ├── hot_wings.png │ ├── hot_wings_bucket.png │ ├── hotdog.png │ ├── hotdog_with_mixed_salad.png │ ├── hotdog_with_nether_salad.png │ ├── loin.png │ ├── magma_cake.png │ ├── magma_cake_slice.png │ ├── minced_strider.png │ ├── nether_burger.png │ ├── plate_of_hoglin_ham.png │ ├── plate_of_stuffed_hoglin.png │ ├── plate_of_stuffed_snout.png │ ├── powder_cannon.png │ ├── powdery_cannon_door.png │ ├── powdery_cannon_hanging_sign.png │ ├── powdery_cannon_sign.png │ ├── red_loin_stick.png │ ├── roast_ear.png │ ├── roast_stuffed_hoglin.png │ ├── roasted_sausage.png │ ├── rock_soup.png │ ├── rock_soup_cup.png │ ├── sausage.png │ ├── sausage_and_potatoes.png │ ├── scotch_eggs.png │ ├── sizzling_pudding.png │ ├── skoglin_trophy.png │ ├── slices_of_bread.png │ ├── spicy_cotton.png │ ├── spicy_curry.png │ ├── spicy_hoglin_stew.png │ ├── spicy_hoglin_stew_cup.png │ ├── spicy_noodle_soup.png │ ├── spicy_noodle_soup_cup.png │ ├── spicy_skewer.png │ ├── strider.png │ ├── strider_and_grilled_fungus.png │ ├── strider_rock.png │ ├── strider_stew.png │ ├── strider_stew_cup.png │ ├── striderloaf.png │ ├── striderloaf_block.png │ ├── stuffed_hoglin.png │ ├── stuffed_pepper.png │ ├── tear_popsicle.png │ ├── toasts.png │ ├── twisted_ghasta.png │ └── zoglin_trophy.png │ └── mob_effect │ ├── b_pungent.png │ └── g_pungent.png ├── data ├── farmersrespite │ └── recipes │ │ └── chilidog_alt.json ├── forge │ └── loot_modifiers │ │ └── global_loot_modifiers.json ├── mynethersdelight │ ├── cup_conversion │ │ └── default_conversions.json │ ├── loot_modifiers │ │ ├── add_loot_bastion_hoglin_stable.json │ │ ├── add_loot_bastion_treasure.json │ │ ├── add_loot_piglin_bartering.json │ │ ├── remplace_hoglin_cooked_pork_loin.json │ │ ├── remplace_hoglin_pork_loin.json │ │ ├── scavenging_extra_ghasta0.json │ │ ├── scavenging_extra_ghasta1.json │ │ ├── scavenging_extra_strider_egg0.json │ │ ├── scavenging_extra_strider_egg1.json │ │ ├── scavenging_extra_strider_egg2.json │ │ ├── scavenging_extra_strider_slice0.json │ │ ├── scavenging_extra_strider_slice1.json │ │ ├── scavenging_ghasta.json │ │ ├── scavenging_hoglin_hide.json │ │ ├── scavenging_onion_from_ghast.json │ │ ├── scavenging_strider_egg.json │ │ ├── scavenging_strider_slice.json │ │ ├── slicing_bread_loaf.json │ │ └── slicing_magma_cake.json │ ├── loot_tables │ │ ├── blocks │ │ │ ├── blackstone_cooking_pot.json │ │ │ ├── bullet_pepper.json │ │ │ ├── bullet_pepper_crate.json │ │ │ ├── cold_striderloaf_block.json │ │ │ ├── crimson_fungus_colony.json │ │ │ ├── ghasta_with_cream_block.json │ │ │ ├── hoglin_trophy.json │ │ │ ├── letios_compost.json │ │ │ ├── nether_bricks_cabinet.json │ │ │ ├── nether_stove.json │ │ │ ├── potted_bullet_pepper.json │ │ │ ├── potted_powdery_cannon.json │ │ │ ├── powdery_block.json │ │ │ ├── powdery_button.json │ │ │ ├── powdery_cabinet.json │ │ │ ├── powdery_cane.json │ │ │ ├── powdery_cannon.json │ │ │ ├── powdery_door.json │ │ │ ├── powdery_fence.json │ │ │ ├── powdery_fence_gate.json │ │ │ ├── powdery_hanging_sign.json │ │ │ ├── powdery_mosaic.json │ │ │ ├── powdery_mosaic_slab.json │ │ │ ├── powdery_mosaic_stairs.json │ │ │ ├── powdery_planks.json │ │ │ ├── powdery_pressure_plate.json │ │ │ ├── powdery_sign.json │ │ │ ├── powdery_slab.json │ │ │ ├── powdery_stairs.json │ │ │ ├── powdery_torch.json │ │ │ ├── powdery_trapdoor.json │ │ │ ├── resurgent_soil.json │ │ │ ├── resurgent_soil_farmland.json │ │ │ ├── skoglin_trophy.json │ │ │ ├── striderloaf_block.json │ │ │ ├── stripped_powdery_block.json │ │ │ ├── stuffed_hoglin.json │ │ │ ├── warped_fungus_colony.json │ │ │ ├── waxed_hoglin_trophy.json │ │ │ └── zoglin_trophy.json │ │ ├── chests │ │ │ ├── mnd_bastion_hoglin_stable.json │ │ │ └── mnd_bastion_treasure.json │ │ └── gameplay │ │ │ └── mnd_piglin_bartering.json │ ├── recipes │ │ └── stonecutting │ │ │ └── nether_bricks_gabinet.json │ └── tags │ │ └── items │ │ ├── bullet_pepper.json │ │ ├── cooked_hoglin.json │ │ ├── cooked_hoglin_loin.json │ │ ├── crimson_colony.json │ │ ├── hoglin_hide.json │ │ ├── loin_hoglin.json │ │ ├── minced_strider.json │ │ ├── powder_cannon.json │ │ ├── raw_hoglin.json │ │ ├── raw_hoglin_loin.json │ │ ├── strider_slice.json │ │ ├── stuffed_hoglin.json │ │ └── warped_colony.json └── nethersdelight │ └── recipes │ └── cutting │ └── hoglin_sausage_alt.json ├── logo.png ├── mynethersdelight.mixins.json └── pack.mcmeta /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable autocrlf on generated files, they always generate with LF 2 | # Add any extra files or paths here to make git stop saying they 3 | # are changed when only line endings change. 4 | src/generated/**/.cache/cache text eol=lf 5 | src/generated/**/*.json text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # eclipse 2 | bin 3 | *.launch 4 | .settings 5 | .metadata 6 | .classpath 7 | .project 8 | 9 | # idea 10 | out 11 | *.ipr 12 | *.iws 13 | *.iml 14 | .idea 15 | 16 | # gradle 17 | build 18 | .gradle 19 | .cache 20 | 21 | # other 22 | eclipse 23 | run 24 | logs 25 | docsOut 26 | 27 | # Files from Forge MDK 28 | forge*changelog.txt -------------------------------------------------------------------------------- /editorconfig.txt: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*.json] 5 | indent_style = space 6 | indent_size = 2 -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | maven { url = 'https://maven.minecraftforge.net/' } 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/bullet_pepper_crate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/bullet_pepper_crate" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/powdery_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/powdery_hanging_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/powdery_mosaic.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/powdery_mosaic" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/powdery_mosaic_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "type=bottom": { 4 | "model": "mynethersdelight:block/powdery_mosaic_slab" 5 | }, 6 | "type=double": { 7 | "model": "mynethersdelight:block/powdery_mosaic" 8 | }, 9 | "type=top": { 10 | "model": "mynethersdelight:block/powdery_mosaic_slab_top" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/powdery_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/powdery_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/powdery_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "powered=false": { 4 | "model": "mynethersdelight:block/powdery_pressure_plate" 5 | }, 6 | "powered=true": { 7 | "model": "mynethersdelight:block/powdery_pressure_plate_down" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/powdery_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/powdery_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/powdery_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "type=bottom": { 4 | "model": "mynethersdelight:block/powdery_slab" 5 | }, 6 | "type=double": { 7 | "model": "mynethersdelight:block/powdery_planks" 8 | }, 9 | "type=top": { 10 | "model": "mynethersdelight:block/powdery_slab_top" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/powdery_wall_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/powdery_hanging_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/blockstates/powdery_wall_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/powdery_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/bullet_pepper_crate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_bottom_top", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/bullet_pepper_crate_bottom", 5 | "side": "mynethersdelight:block/bullet_pepper_crate_side", 6 | "top": "mynethersdelight:block/bullet_pepper_crate_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/crimson_fungus_colony_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/crimson_fungus_colony_stage0" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/crimson_fungus_colony_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/crimson_fungus_colony_stage1" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/crimson_fungus_colony_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/crimson_fungus_colony_stage2" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/crimson_fungus_colony_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/crimson_fungus_colony_stage3" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/nether_bricks_cabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orientable", 3 | "textures": { 4 | "front": "mynethersdelight:block/nether_bricks_cabinet_front", 5 | "side": "mynethersdelight:block/nether_bricks_cabinet_side", 6 | "top": "mynethersdelight:block/nether_bricks_cabinet_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/nether_bricks_cabinet_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orientable", 3 | "textures": { 4 | "front": "mynethersdelight:block/nether_bricks_cabinet_front_open", 5 | "side": "mynethersdelight:block/nether_bricks_cabinet_side", 6 | "top": "mynethersdelight:block/nether_bricks_cabinet_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "mynethersdelight:block/powdery_block_top", 5 | "side": "mynethersdelight:block/powdery_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_block_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "end": "mynethersdelight:block/powdery_block_top", 5 | "side": "mynethersdelight:block/powdery_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_cabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orientable", 3 | "textures": { 4 | "front": "mynethersdelight:block/powdery_cabinet_front", 5 | "side": "mynethersdelight:block/powdery_cabinet_side", 6 | "top": "mynethersdelight:block/powdery_cabinet_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_cabinet_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orientable", 3 | "textures": { 4 | "front": "mynethersdelight:block/powdery_cabinet_front_open", 5 | "side": "mynethersdelight:block/powdery_cabinet_side", 6 | "top": "mynethersdelight:block/powdery_cabinet_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_door_bottom_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_left", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "bottom": "mynethersdelight:block/powdery_door_bottom", 6 | "top": "mynethersdelight:block/powdery_door_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_door_bottom_left_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_left_open", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "bottom": "mynethersdelight:block/powdery_door_bottom", 6 | "top": "mynethersdelight:block/powdery_door_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_door_bottom_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_right", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "bottom": "mynethersdelight:block/powdery_door_bottom", 6 | "top": "mynethersdelight:block/powdery_door_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_door_bottom_right_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_bottom_right_open", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "bottom": "mynethersdelight:block/powdery_door_bottom", 6 | "top": "mynethersdelight:block/powdery_door_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_door_top_left.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "bottom": "mynethersdelight:block/powdery_door_bottom", 6 | "top": "mynethersdelight:block/powdery_door_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_door_top_left_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_left_open", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "bottom": "mynethersdelight:block/powdery_door_bottom", 6 | "top": "mynethersdelight:block/powdery_door_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_door_top_right.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "bottom": "mynethersdelight:block/powdery_door_bottom", 6 | "top": "mynethersdelight:block/powdery_door_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_door_top_right_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/door_top_right_open", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "bottom": "mynethersdelight:block/powdery_door_bottom", 6 | "top": "mynethersdelight:block/powdery_door_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "mynethersdelight:block/powdery_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_mosaic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/powdery_mosaic" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_mosaic_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_mosaic", 5 | "side": "mynethersdelight:block/powdery_mosaic", 6 | "top": "mynethersdelight:block/powdery_mosaic" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_mosaic_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_mosaic", 5 | "side": "mynethersdelight:block/powdery_mosaic", 6 | "top": "mynethersdelight:block/powdery_mosaic" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_mosaic_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_mosaic", 5 | "side": "mynethersdelight:block/powdery_mosaic", 6 | "top": "mynethersdelight:block/powdery_mosaic" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_mosaic_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_mosaic", 5 | "side": "mynethersdelight:block/powdery_mosaic", 6 | "top": "mynethersdelight:block/powdery_mosaic" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_mosaic_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_mosaic", 5 | "side": "mynethersdelight:block/powdery_mosaic", 6 | "top": "mynethersdelight:block/powdery_mosaic" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/powdery_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pressure_plate_up", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_pressure_plate_down.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pressure_plate_down", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "mynethersdelight:block/powdery_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_planks", 5 | "side": "mynethersdelight:block/powdery_planks", 6 | "top": "mynethersdelight:block/powdery_planks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_slab_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/slab_top", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_planks", 5 | "side": "mynethersdelight:block/powdery_planks", 6 | "top": "mynethersdelight:block/powdery_planks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/stairs", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_planks", 5 | "side": "mynethersdelight:block/powdery_planks", 6 | "top": "mynethersdelight:block/powdery_planks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_stairs_inner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/inner_stairs", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_planks", 5 | "side": "mynethersdelight:block/powdery_planks", 6 | "top": "mynethersdelight:block/powdery_planks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_stairs_outer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/outer_stairs", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/powdery_planks", 5 | "side": "mynethersdelight:block/powdery_planks", 6 | "top": "mynethersdelight:block/powdery_planks" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_trapdoor_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_orientable_trapdoor_bottom", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "texture": "mynethersdelight:block/powdery_trapdoor" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_trapdoor_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_orientable_trapdoor_open", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "texture": "mynethersdelight:block/powdery_trapdoor" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/powdery_trapdoor_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_orientable_trapdoor_top", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "texture": "mynethersdelight:block/powdery_trapdoor" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/red_nether_bricks_cabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orientable", 3 | "textures": { 4 | "front": "mynethersdelight:block/red_nether_bricks_cabinet_front", 5 | "side": "mynethersdelight:block/red_nether_bricks_cabinet_side", 6 | "top": "mynethersdelight:block/red_nether_bricks_cabinet_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/red_nether_bricks_cabinet_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orientable", 3 | "textures": { 4 | "front": "mynethersdelight:block/red_nether_bricks_cabinet_front_open", 5 | "side": "mynethersdelight:block/red_nether_bricks_cabinet_side", 6 | "top": "mynethersdelight:block/red_nether_bricks_cabinet_top" 7 | } 8 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/resurgent_soil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/resurgent_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/stripped_powdery_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "mynethersdelight:block/stripped_powdery_block_top", 5 | "side": "mynethersdelight:block/stripped_powdery_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/stripped_powdery_block_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "end": "mynethersdelight:block/stripped_powdery_block_top", 5 | "side": "mynethersdelight:block/stripped_powdery_block" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/warped_fungus_colony_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/warped_fungus_colony_stage0" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/warped_fungus_colony_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/warped_fungus_colony_stage1" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/warped_fungus_colony_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/warped_fungus_colony_stage2" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/mynethersdelight/models/block/warped_fungus_colony_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/warped_fungus_colony_stage3" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/brewinandchewin/tags/items/horror_lasagna_meats.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:minced_strider", 4 | "mynethersdelight:hoglin_loin", 5 | "mynethersdelight:hoglin_sausage", 6 | "mynethersdelight:minced_strider", 7 | "mynethersdelight:hoglin_loin", 8 | "mynethersdelight:hoglin_sausage" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/recipes/cutting/powdery_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:powdery_door" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "item": "mynethersdelight:powdery_planks" 11 | } 12 | ], 13 | "tool": { 14 | "type": "farmersdelight:tool_action", 15 | "action": "axe_dig" 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/recipes/cutting/powdery_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:powdery_sign" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "item": "mynethersdelight:powdery_planks" 11 | } 12 | ], 13 | "tool": { 14 | "type": "farmersdelight:tool_action", 15 | "action": "axe_dig" 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/recipes/cutting/powdery_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:powdery_trapdoor" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "item": "mynethersdelight:powdery_planks" 11 | } 12 | ], 13 | "tool": { 14 | "type": "farmersdelight:tool_action", 15 | "action": "axe_dig" 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/recipes/cutting/sugar_cane_alt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "minecraft:sugar_cane" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "item": "minecraft:sugar" 11 | }, 12 | { 13 | "chance": 0.25, 14 | "item": "minecraft:sugar" 15 | } 16 | ], 17 | "tool": { 18 | "tag": "forge:tools/knives" 19 | } 20 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/blocks/heat_sources.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:nether_stove", 4 | "mynethersdelight:bullet_pepper_crate" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/blocks/mushroom_colony_growable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:resurgent_soil" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/blocks/tray_heat_sources.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:magma_cake" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/blocks/unaffected_by_rich_soil.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:warped_fungus_colony", 4 | "mynethersdelight:crimson_fungus_colony" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/blocks/wild_crops.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:bullet_pepper" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/items/cabbage_roll_ingredients.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:strider_slice", 4 | "mynethersdelight:minced_strider", 5 | "mynethersdelight:hoglin_loin", 6 | "mynethersdelight:hoglin_sausage" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/items/cabinets.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:nether_bricks_cabinet" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/items/cabinets/wooden.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_cabinet" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/items/wild_crops.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:bullet_pepper", 4 | "mynethersdelight:powder_cannon" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/farmersdelight/tags/items/wolf_prey.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:minced_strider", 4 | "mynethersdelight:hoglin_loin", 5 | "mynethersdelight:hoglin_sausage" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/boiled_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:boiled_egg" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/bread.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:slices_of_bread", 4 | "mynethersdelight:toasts" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/cooked_eggs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#forge:boiled_egg", 4 | "mynethersdelight:golden_egg", 5 | "mynethersdelight:enchanted_golden_egg" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/cooked_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#mynethersdelight:cooked_hoglin" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/cooked_pork.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#forge:cooked_hoglin" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/cooked_sausage.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:hoglin_sausage", 4 | "mynethersdelight:roasted_sausage" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/crops/rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:ghasmati" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:ghast_dough" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/eggs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:strider_egg" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/giant_tentacles.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:ghasta" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/grain/rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:ghasmati" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/magma_cube.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:magma_cake_block", 4 | "mynethersdelight:magma_cake_slice", 5 | "mynethersdelight:rock_soup", 6 | "mynethersdelight:burnt_roll" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/pasta.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:ghasta" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/pasta/raw_pasta.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:ghasta" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/raw_fishes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:strider_slice" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/raw_ghast.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:ghasta", 4 | "mynethersdelight:ghasmati" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/raw_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#mynethersdelight:raw_hoglin" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/raw_pork.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:hoglin_sausage", 4 | "#forge:raw_hoglin" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/raw_strider.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#mynethersdelight:strider_slice", 4 | "#mynethersdelight:minced_strider" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/rice_pasta.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:ghasta" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipes/food_serving.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:food_serving", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/bamboo_plantable_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:resurgent_soil", 4 | "mynethersdelight:powdery_cannon" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/ceiling_hanging_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_hanging_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:resurgent_soil", 4 | "mynethersdelight:resurgent_soil_farmland" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/fence_gates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_fence_gate", 4 | "mynethersdelight:powdery_fence_gate" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_fence" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/flower_pots.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:potted_bullet_pepper", 4 | "mynethersdelight:potted_powdery_cannon" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/hoglin_repellents.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:hoglin_trophy", 4 | "mynethersdelight:waxed_hoglin_trophy", 5 | "mynethersdelight:zoglin_trophy", 6 | "mynethersdelight:bullet_pepper" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/infiniburn_nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:letios_compost", 4 | "mynethersdelight:resurgent_soil", 5 | "mynethersdelight:resurgent_soil_farmland" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/mineable/pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:nether_bricks_cabinet", 4 | "mynethersdelight:red_nether_bricks_cabinet", 5 | "mynethersdelight:blackstone_bricks_cabinet", 6 | "mynethersdelight:nether_stove" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/mineable/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:letios_compost", 4 | "mynethersdelight:resurgent_soil", 5 | "mynethersdelight:resurgent_soil_farmland" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/mushroom_grow_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:letios_compost", 4 | "mynethersdelight:resurgent_soil", 5 | "mynethersdelight:resurgent_soil_farmland", 6 | "mynethersdelight:letios_compost", 7 | "mynethersdelight:resurgent_soil", 8 | "mynethersdelight:resurgent_soil_farmland" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/nylium.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:letios_compost", 4 | "mynethersdelight:resurgent_soil", 5 | "mynethersdelight:resurgent_soil_farmland" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/piglin_repellents.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:zoglin_trophy", 4 | "mynethersdelight:bullet_pepper" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_planks" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_wall_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_mosaic" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/small_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:bullet_pepper" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/soul_fire_base_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:letios_compost", 4 | "mynethersdelight:resurgent_soil", 5 | "mynethersdelight:resurgent_soil_farmland" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/soul_speed_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:letios_compost", 4 | "mynethersdelight:resurgent_soil", 5 | "mynethersdelight:resurgent_soil_farmland" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_mosaic_stairs" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/standing_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/tall_flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_chubby_sapling", 4 | "mynethersdelight:powdery_cane" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/wall_hanging_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_wall_hanging_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_button" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_fence" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_slab" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_stairs" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/hanging_signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_hanging_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/piglin_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#mynethersdelight:stuffed_hoglin_items", 4 | "#mynethersdelight:cooked_hoglin", 5 | "#mynethersdelight:raw_hoglin" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_planks" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/signs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_sign" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_mosaic_slab" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/soul_fire_base_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:letios_compost", 4 | "mynethersdelight:resurgent_soil" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_mosaic_stairs" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_button" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_fence" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_slab" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_stairs" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/forge/biome_modifier/patch_powdery_cane.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "minecraft:crimson_forest", 4 | "features": "mynethersdelight:patch_powdery_cane", 5 | "step": "vegetal_decoration" 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/boiled_egg_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "food", 4 | "cookingtime": 200, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "tag": "mynethersdelight:boiled_egg_candidate" 8 | }, 9 | "result": "mynethersdelight:boiled_egg" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/boiled_egg_from_campfire_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:campfire_cooking", 3 | "category": "food", 4 | "cookingtime": 600, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "tag": "mynethersdelight:boiled_egg_candidate" 8 | }, 9 | "result": "mynethersdelight:boiled_egg" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/boiled_egg_from_smoking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smoking", 3 | "category": "food", 4 | "cookingtime": 100, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "tag": "mynethersdelight:boiled_egg_candidate" 8 | }, 9 | "result": "mynethersdelight:boiled_egg" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/bread_from_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "food", 4 | "cookingtime": 200, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:ghast_dough" 8 | }, 9 | "result": "minecraft:bread" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/bread_from_smoking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smoking", 3 | "category": "food", 4 | "cookingtime": 100, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:ghast_dough" 8 | }, 9 | "result": "minecraft:bread" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/bread_loaf_from_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "blocks", 4 | "cookingtime": 400, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:ghast_sourdough" 8 | }, 9 | "result": "mynethersdelight:bread_loaf" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/bread_loaf_from_smoking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smoking", 3 | "category": "food", 4 | "cookingtime": 200, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:ghast_sourdough" 8 | }, 9 | "result": "mynethersdelight:bread_loaf" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/block_of_powdery_cannon.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "tag": "mynethersdelight:powder_cannon" 7 | } 8 | }, 9 | "pattern": [ 10 | "###", 11 | "###", 12 | "###" 13 | ], 14 | "result": { 15 | "item": "mynethersdelight:powdery_block" 16 | }, 17 | "show_notification": true 18 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/bullet_papper_crate_alt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "ingredients": [ 5 | { 6 | "item": "mynethersdelight:bullet_pepper_crate" 7 | } 8 | ], 9 | "result": { 10 | "count": 9, 11 | "item": "mynethersdelight:bullet_pepper" 12 | } 13 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/burnt_roll.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "ingredients": [ 5 | { 6 | "item": "minecraft:magma_cream" 7 | }, 8 | { 9 | "tag": "mynethersdelight:curry_meats" 10 | } 11 | ], 12 | "result": { 13 | "item": "mynethersdelight:burnt_roll" 14 | } 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/hoglin_trophy_cure.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "group": "nether_trophy", 5 | "ingredients": [ 6 | { 7 | "item": "mynethersdelight:zoglin_trophy" 8 | }, 9 | { 10 | "tag": "mynethersdelight:hoglin_cure" 11 | } 12 | ], 13 | "result": { 14 | "item": "mynethersdelight:hoglin_trophy" 15 | } 16 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/hotdog.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "ingredients": [ 5 | { 6 | "item": "mynethersdelight:roasted_sausage" 7 | }, 8 | { 9 | "tag": "forge:bread" 10 | } 11 | ], 12 | "result": { 13 | "item": "mynethersdelight:hotdog" 14 | } 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/powdery_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "redstone", 4 | "group": "wooden_button", 5 | "ingredients": [ 6 | { 7 | "item": "mynethersdelight:powdery_planks" 8 | } 9 | ], 10 | "result": { 11 | "item": "mynethersdelight:powdery_button" 12 | } 13 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/powdery_mosaic.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "building", 4 | "key": { 5 | "#": { 6 | "item": "mynethersdelight:powdery_slab" 7 | } 8 | }, 9 | "pattern": [ 10 | "#", 11 | "#" 12 | ], 13 | "result": { 14 | "item": "mynethersdelight:powdery_mosaic" 15 | }, 16 | "show_notification": true 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/powdery_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "group": "planks", 5 | "ingredients": [ 6 | { 7 | "tag": "mynethersdelight:block_of_powdery" 8 | } 9 | ], 10 | "result": { 11 | "count": 4, 12 | "item": "mynethersdelight:powdery_planks" 13 | } 14 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/skoglin_trophy.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "building", 4 | "group": "nether_trophy", 5 | "ingredients": [ 6 | { 7 | "item": "mynethersdelight:skoglin_trophy" 8 | }, 9 | { 10 | "item": "mynethersdelight:hoglin_hide" 11 | } 12 | ], 13 | "result": { 14 | "item": "mynethersdelight:hoglin_trophy" 15 | } 16 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/stuffed_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "ingredients": [ 5 | { 6 | "item": "mynethersdelight:bullet_pepper" 7 | }, 8 | { 9 | "tag": "forge:cooked_pork" 10 | }, 11 | { 12 | "tag": "forge:milk" 13 | } 14 | ], 15 | "result": { 16 | "item": "mynethersdelight:stuffed_pepper" 17 | } 18 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/crafting/sugar_alt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "ingredients": [ 5 | { 6 | "item": "mynethersdelight:strider_egg" 7 | } 8 | ], 9 | "result": { 10 | "item": "minecraft:sugar" 11 | } 12 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/cutting/crimson_fungus.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:crimson_fungus_colony" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "count": 5, 11 | "item": "minecraft:crimson_fungus" 12 | } 13 | ], 14 | "tool": { 15 | "tag": "forge:tools/knives" 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/cutting/ghast_dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:ghast_sourdough" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "count": 3, 11 | "item": "mynethersdelight:ghast_dough" 12 | } 13 | ], 14 | "tool": { 15 | "tag": "forge:tools/knives" 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/cutting/hoglin_sausage.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:hoglin_loin" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "count": 2, 11 | "item": "mynethersdelight:hoglin_sausage" 12 | } 13 | ], 14 | "tool": { 15 | "tag": "forge:tools/knives" 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/cutting/hoglin_trophy.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:waxed_hoglin_trophy" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "item": "mynethersdelight:hoglin_trophy" 11 | } 12 | ], 13 | "tool": { 14 | "tag": "forge:tools/axes" 15 | } 16 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/cutting/magma_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:magma_cake_block" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "count": 7, 11 | "item": "mynethersdelight:magma_cake_slice" 12 | } 13 | ], 14 | "tool": { 15 | "tag": "forge:tools/knives" 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/cutting/slices_of_bread.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:bread_loaf" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "count": 5, 11 | "item": "mynethersdelight:slices_of_bread" 12 | } 13 | ], 14 | "tool": { 15 | "tag": "forge:tools/knives" 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/cutting/warped_fungus.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "mynethersdelight:warped_fungus_colony" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "count": 5, 11 | "item": "minecraft:warped_fungus" 12 | } 13 | ], 14 | "tool": { 15 | "tag": "forge:tools/knives" 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/hoglin_loin_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "food", 4 | "cookingtime": 200, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:hoglin_loin" 8 | }, 9 | "result": "mynethersdelight:cooked_loin" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/hoglin_loin_from_campfire_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:campfire_cooking", 3 | "category": "food", 4 | "cookingtime": 600, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:hoglin_loin" 8 | }, 9 | "result": "mynethersdelight:cooked_loin" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/hoglin_loin_from_smoking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smoking", 3 | "category": "food", 4 | "cookingtime": 100, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:hoglin_loin" 8 | }, 9 | "result": "mynethersdelight:cooked_loin" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/hoglin_sausage_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "food", 4 | "cookingtime": 200, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:hoglin_sausage" 8 | }, 9 | "result": "mynethersdelight:roasted_sausage" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/hoglin_sausage_from_campfire_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:campfire_cooking", 3 | "category": "food", 4 | "cookingtime": 600, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:hoglin_sausage" 8 | }, 9 | "result": "mynethersdelight:roasted_sausage" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/hoglin_sausage_from_smoking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smoking", 3 | "category": "food", 4 | "cookingtime": 100, 5 | "experience": 0.35, 6 | "ingredient": { 7 | "item": "mynethersdelight:hoglin_sausage" 8 | }, 9 | "result": "mynethersdelight:roasted_sausage" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/stonecutting/nether_bricks_cabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:nether_bricks" 6 | }, 7 | "result": "mynethersdelight:nether_bricks_cabinet" 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/stonecutting/red_nether_bricks_cabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:red_nether_bricks" 6 | }, 7 | "result": "mynethersdelight:red_nether_bricks_cabinet" 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/toast_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smelting", 3 | "category": "food", 4 | "cookingtime": 200, 5 | "experience": 0.15, 6 | "ingredient": { 7 | "item": "mynethersdelight:slices_of_bread" 8 | }, 9 | "result": "mynethersdelight:toasts" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/toast_from_campfire_cooking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:campfire_cooking", 3 | "category": "food", 4 | "cookingtime": 600, 5 | "experience": 0.15, 6 | "ingredient": { 7 | "item": "mynethersdelight:slices_of_bread" 8 | }, 9 | "result": "mynethersdelight:toasts" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/recipes/toast_from_smoking.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smoking", 3 | "category": "food", 4 | "cookingtime": 100, 5 | "experience": 0.15, 6 | "ingredient": { 7 | "item": "mynethersdelight:slices_of_bread" 8 | }, 9 | "result": "mynethersdelight:toasts" 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/blocks/above_propagate_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:kelp", 4 | "minecraft:lily_pad", 5 | "minecraft:dead_bush", 6 | "minecraft:glow_lichen", 7 | "#minecraft:saplings", 8 | "#minecraft:crops" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/blocks/below_propagate_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:spore_blossom", 4 | "minecraft:hanging_roots", 5 | "minecraft:glow_lichen" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/blocks/letios_activators.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:twisting_vines_plant", 4 | "minecraft:weeping_vines_plant", 5 | "#mynethersdelight:showcase_activators" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/blocks/powdery_cane.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_cannon", 4 | "mynethersdelight:powdery_cane" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/blocks/resurgent_soil_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cactus", 4 | "#mynethersdelight:above_propagate_plant", 5 | "#mynethersdelight:below_propagate_plant", 6 | "#minecraft:mineable/hoe", 7 | "#minecraft:sword_efficient" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/block_of_powdery.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powdery_block", 4 | "mynethersdelight:stripped_powdery_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/boiled_egg_candidate.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:strider_egg" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/chili_meats.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#mynethersdelight:minced_strider", 4 | "minecraft:beef", 5 | "farmersdelight:minced_beef" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/ghast_meats.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:ghasmati", 4 | "mynethersdelight:ghasta" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/hoglin_cure.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:ghast_tear" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/hoglin_waxed.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:nether_wart", 4 | "minecraft:honeycomb" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/hot_spice.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:blaze_powder", 4 | "#mynethersdelight:bullet_pepper" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/stove_fire_fuel.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:blaze_rod", 4 | "minecraft:fire_charge", 5 | "minecraft:magma_block", 6 | "minecraft:magma_cream", 7 | "#mynethersdelight:hot_spice" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/stove_soul_fuel.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:soul_fire_base_blocks" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/strider_meats.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#mynethersdelight:strider_slice", 4 | "#mynethersdelight:minced_strider" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/tags/items/stuffed_hoglin_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:roast_ear", 4 | "mynethersdelight:plate_of_stuffed_hoglin", 5 | "mynethersdelight:plate_of_stuffed_hoglin_ham", 6 | "mynethersdelight:plate_of_stuffed_hoglin_snout" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/mynethersdelight/worldgen/configured_feature/patch_powdery_cane.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "mynethersdelight:powderycane", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/main/java/com/soytutta/mynethersdelight/common/block/BlazefireBlock.java: -------------------------------------------------------------------------------- 1 | package com.soytutta.mynethersdelight.common.block; 2 | 3 | public class BlazefireBlock{ 4 | } -------------------------------------------------------------------------------- /src/main/java/com/soytutta/mynethersdelight/integration/jei/resource/ForgotingDummy.java: -------------------------------------------------------------------------------- 1 | // 2 | // Source code recreated from a .class file by IntelliJ IDEA 3 | // (powered by FernFlower decompiler) 4 | // 5 | 6 | package com.soytutta.mynethersdelight.integration.jei.resource; 7 | 8 | 9 | public class ForgotingDummy { 10 | public ForgotingDummy() { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/miners_delight/models/item/egg_soup_cup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/egg_soup_cup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/miners_delight/models/item/rock_soup_cup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/rock_soup_cup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/miners_delight/models/item/spicy_hoglin_stew_cup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/spicy_hoglin_stew_cup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/miners_delight/models/item/spicy_noodle_soup_cup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/spicy_noodle_soup_cup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/miners_delight/models/item/strider_stew_cup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/strider_stew_cup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/blockstates/potted_bullet_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/potted_bullet_pepper" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/blockstates/potted_powdery_cannon.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/potted_powdery_cannon" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/blockstates/powdery_chubby_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/cannon_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/blockstates/powdery_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "mynethersdelight:block/powdery_torch" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/bullet_age0.json: -------------------------------------------------------------------------------- 1 | { 2 | "ambientocclusion": "false","render_type": "minecraft:cutout", 3 | "parent": "minecraft:block/tinted_cross", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/bullet_age1.json: -------------------------------------------------------------------------------- 1 | { 2 | "ambientocclusion": "false","render_type": "minecraft:cutout", 3 | "parent": "minecraft:block/tinted_cross", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_top_leaves" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/bullet_age2.json: -------------------------------------------------------------------------------- 1 | { 2 | "ambientocclusion": "false","render_type": "minecraft:cutout", 3 | "parent": "minecraft:block/tinted_cross", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_top_bloomed" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/cane_base_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "ambientocclusion": "false","render_type": "minecraft:cutout", 3 | "parent": "minecraft:block/tinted_cross", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_cane_base" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/cane_base_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "ambientocclusion": "false","render_type": "minecraft:cutout", 3 | "parent": "minecraft:block/tinted_cross", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_cane_base_leaves" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/cane_base_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "ambientocclusion": "false","render_type": "minecraft:cutout", 3 | "parent": "minecraft:block/tinted_cross", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_cane_base_leaves_bloomed" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/cannon_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "ambientocclusion": "false","render_type": "minecraft:cutout", 3 | "parent": "minecraft:block/tinted_cross", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_cannon_stage0" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_8.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/letios_compost_9.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "all": "mynethersdelight:block/leteos_compost_stage2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/magma_cake_slice1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cake_slice1", 3 | "textures": { 4 | "particle": "mynethersdelight:block/magma_cake_inner", 5 | "bottom": "mynethersdelight:block/magma_cake", 6 | "top": "mynethersdelight:block/magma_cake", 7 | "side": "mynethersdelight:block/magma_cake_side", 8 | "inside": "mynethersdelight:block/magma_cake_inner" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/magma_cake_slice2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cake_slice2", 3 | "textures": { 4 | "particle": "mynethersdelight:block/magma_cake_inner", 5 | "bottom": "mynethersdelight:block/magma_cake", 6 | "top": "mynethersdelight:block/magma_cake", 7 | "side": "mynethersdelight:block/magma_cake_side", 8 | "inside": "mynethersdelight:block/magma_cake_inner" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/magma_cake_slice3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cake_slice3", 3 | "textures": { 4 | "particle": "mynethersdelight:block/magma_cake_inner", 5 | "bottom": "mynethersdelight:block/magma_cake", 6 | "top": "mynethersdelight:block/magma_cake", 7 | "side": "mynethersdelight:block/magma_cake_side", 8 | "inside": "mynethersdelight:block/magma_cake_inner" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/magma_cake_slice4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cake_slice4", 3 | "textures": { 4 | "particle": "mynethersdelight:block/magma_cake_inner", 5 | "bottom": "mynethersdelight:block/magma_cake", 6 | "top": "mynethersdelight:block/magma_cake", 7 | "side": "mynethersdelight:block/magma_cake_side", 8 | "inside": "mynethersdelight:block/magma_cake_inner" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/magma_cake_slice5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cake_slice5", 3 | "textures": { 4 | "particle": "mynethersdelight:block/magma_cake_inner", 5 | "bottom": "mynethersdelight:block/magma_cake", 6 | "top": "mynethersdelight:block/magma_cake", 7 | "side": "mynethersdelight:block/magma_cake_side", 8 | "inside": "mynethersdelight:block/magma_cake_inner" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/magma_cake_slice6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cake_slice6", 3 | "textures": { 4 | "particle": "mynethersdelight:block/magma_cake_inner", 5 | "bottom": "mynethersdelight:block/magma_cake", 6 | "top": "mynethersdelight:block/magma_cake", 7 | "side": "mynethersdelight:block/magma_cake_side", 8 | "inside": "mynethersdelight:block/magma_cake_inner" 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/nether_stove.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orientable_with_bottom", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/nether_stove_bottom", 5 | "front": "mynethersdelight:block/nether_stove_front", 6 | "side": "mynethersdelight:block/nether_stove_side", 7 | "top": "mynethersdelight:block/nether_stove_top" 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/nether_stove_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orientable_with_bottom", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/nether_stove_bottom", 5 | "front": "mynethersdelight:block/nether_stove_front_on", 6 | "side": "mynethersdelight:block/nether_stove_side", 7 | "top": "mynethersdelight:block/nether_stove_top_on" 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/nether_stove_soul.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/orientable_with_bottom", 3 | "textures": { 4 | "bottom": "mynethersdelight:block/nether_stove_bottom", 5 | "front": "mynethersdelight:block/nether_stove_front_soul", 6 | "side": "mynethersdelight:block/nether_stove_side", 7 | "top": "mynethersdelight:block/nether_stove_top_soul" 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_custom_fence_gate", 3 | "textures": { 4 | "particle": "mynethersdelight:block/powdery_fence_gate_particle", 5 | "texture": "mynethersdelight:block/powdery_fence_gate" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_fence_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_custom_fence_gate_open", 3 | "textures": { 4 | "particle": "mynethersdelight:block/powdery_fence_gate_particle", 5 | "texture": "mynethersdelight:block/powdery_fence_gate" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_fence_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_custom_fence_gate_wall", 3 | "textures": { 4 | "particle": "mynethersdelight:block/powdery_fence_gate_particle", 5 | "texture": "mynethersdelight:block/powdery_fence_gate" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_fence_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_custom_fence_gate_wall_open", 3 | "textures": { 4 | "particle": "mynethersdelight:block/powdery_fence_gate_particle", 5 | "texture": "mynethersdelight:block/powdery_fence_gate" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/custom_fence_post", 3 | "textures": { 4 | "particle": "mynethersdelight:block/powdery_fence_particle", 5 | "texture": "mynethersdelight:block/powdery_fence" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_fence_side_east.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/custom_fence_side_east", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_fence" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_fence_side_north.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/custom_fence_side_north", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_fence" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_fence_side_south.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/custom_fence_side_south", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_fence" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_fence_side_west.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/custom_fence_side_west", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_fence" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_lit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_top_bloomed" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_state0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_top" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_state1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "mynethersdelight:block/powdery_top_leaves" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/powdery_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_torch", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "torch": "mynethersdelight:block/powdery_torch" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/resurgent_soil_farmland.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/template_farmland_custom", 3 | "textures": { 4 | "top": "mynethersdelight:block/resurgent_soil_farmland", 5 | "bottom": "mynethersdelight:block/resurgent_soil", 6 | "side": "mynethersdelight:block/resurgent_soil" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/resurgent_soil_farmland_moist.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/template_farmland_custom", 3 | "textures": { 4 | "top": "mynethersdelight:block/resurgent_soil_farmland_exhaling", 5 | "bottom": "mynethersdelight:block/resurgent_soil", 6 | "side": "mynethersdelight:block/resurgent_soil_exhaling" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/block/wall_powdery_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_torch_wall", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "torch": "mynethersdelight:block/powdery_torch" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/bacon-wrapped_sausage_on_a_stick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/bacon-wrapped_sausage_stick" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/blackstone_bricks_cabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/blackstone_bricks_cabinet" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/blackstone_cooking_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/blackstone_cooking_pot" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/blazefire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/blazefire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/bleeding_tartar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/bleeding_tartar" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/blue_tenderloin_steak.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/blue_tenderloin_steak" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/boiled_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/boiled_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/bread_loaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/bread_loaf" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/breakfast_sampler.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/breakfast_sampler" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/bullet_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/bullet_pepper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/bullet_pepper_crate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/bullet_pepper_crate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/burnt_roll.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/burnt_roll" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/chilidog.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/chilidog" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/cold_striderloaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/cold_striderloaf_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/cooked_loin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/cooked_loin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/crimson_fungus_colony.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:block/crimson_fungus_colony_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/crimson_stroganoff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/crimson_stroganoff" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/deviled_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/deviled_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/dried_ghast_with_milk.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/dried_ghast_with_milk" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/egg_soup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/egg_soup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/enchanted_golden_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/golden_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/fried_hoglin_chop.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/fried_hoglin_chop" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/fries_ghasta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/fries_ghasta" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/ghasmati.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/ghasmati" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/ghast_dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/ghast_dough" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/ghast_salad.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/ghast_salad" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/ghast_sourdough.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/ghast_sourdough" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/ghasta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/ghasta" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/ghasta_with_cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/ghasta_with_cream_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/giant_takoyaki.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/giant_takoyaki" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/golden_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/golden_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hoglin_hide.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hoglin_hide" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hoglin_loin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/loin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hoglin_sausage.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/sausage" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hoglin_trophy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hoglin_trophy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hot_cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hot_cream" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hot_cream_cone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hot_cream_cone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hot_wings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hot_wings" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hot_wings_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hot_wings_bucket" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hotdog.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hotdog" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hotdog_with_mixed_salad.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hotdog_with_mixed_salad" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/hotdog_with_nether_salad.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hotdog_with_nether_salad" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/letios_compost.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/letios_compost_0" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/magma_cake.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/magma_cake" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/magma_cake_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/magma_cake" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/magma_cake_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/magma_cake_slice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/minced_strider.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/minced_strider" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/nether_bricks_cabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/nether_bricks_cabinet" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/nether_bricks_soul_stove.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/nether_stove_soul" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/nether_bricks_stove.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/nether_stove_on" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/nether_burger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/nether_burger" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/plate_of_cold_striderloaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/cold_striderloaf" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/plate_of_ghasta_with_cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/ghasta_with_cream" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/plate_of_striderloaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/striderloaf" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/plate_of_stuffed_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/plate_of_stuffed_hoglin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/plate_of_stuffed_hoglin_ham.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/plate_of_hoglin_ham" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/plate_of_stuffed_hoglin_snout.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/plate_of_stuffed_snout" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powder_cannon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/powder_cannon" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_cabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_cabinet" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/powdery_cannon_door" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/custom_fence_inventory", 3 | "textures": { 4 | "texture": "mynethersdelight:block/powdery_fence" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/powdery_cannon_hanging_sign" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_mosaic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_mosaic" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_mosaic_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_mosaic_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_mosaic_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_mosaic_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_planks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/powdery_cannon_sign" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:block/powdery_torch" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/powdery_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/powdery_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/raw_stuffed_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/stuffed_hoglin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/red_loin_on_a_stick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/red_loin_stick" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/red_nether_bricks_cabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/red_nether_bricks_cabinet" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/resurgent_soil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/resurgent_soil" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/resurgent_soil_farmland.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/resurgent_soil_farmland" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/roast_ear.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/roast_ear" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/roast_stuffed_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/roast_stuffed_hoglin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/roasted_sausage.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/roasted_sausage" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/rock_soup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/rock_soup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/sausage_and_potatoes.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/sausage_and_potatoes" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/scotch_eggs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/scotch_eggs" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/sizzling_pudding.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/sizzling_pudding" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/skoglin_trophy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/skoglin_trophy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/slices_of_bread.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/slices_of_bread" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/spicy_cotton.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/spicy_cotton" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/spicy_curry.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/spicy_curry" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/spicy_hoglin_stew.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/spicy_hoglin_stew" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/spicy_noodle_soup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/spicy_noodle_soup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/spicy_skewer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/spicy_skewer" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/strider_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/broken_strider_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/strider_rock.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/strider_rock" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/strider_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/strider" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/strider_stew.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/strider_stew" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/strider_with_grilled_fungus.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/strider_and_grilled_fungus" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/striderloaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/striderloaf_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/stripped_powdery_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "mynethersdelight:block/stripped_powdery_block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/stuffed_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/stuffed_pepper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/tear_popsicle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/tear_popsicle" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/toasts.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/toasts" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/twisted_ghasta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/twisted_ghasta" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/warped_fungus_colony.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:block/warped_fungus_colony_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/waxed_hoglin_trophy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/hoglin_trophy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/models/item/zoglin_trophy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "mynethersdelight:item/zoglin_trophy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_back.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_east.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_front_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_front_open.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_west.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/blackstone_bricks_cabinet_west.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blazefire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/blazefire.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blazefire_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/blazefire_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blazefire_top.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": false, 4 | "frametime": 3 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/blazefire_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/blazefire_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/bread_loaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/bread_loaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/bullet_pepper_crate_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/bullet_pepper_crate_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/bullet_pepper_crate_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/bullet_pepper_crate_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/bullet_pepper_crate_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/bullet_pepper_crate_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_handle.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_parts.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_tray_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_tray_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_tray_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/cooking_pot_tray_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/crimson_fungus_colony_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/crimson_fungus_colony_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/crimson_fungus_colony_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/crimson_fungus_colony_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/crimson_fungus_colony_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/crimson_fungus_colony_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/crimson_fungus_colony_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/crimson_fungus_colony_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/ghasta_with_cream_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/ghasta_with_cream_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/hoglin_trophy_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/hoglin_trophy_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/leteos_compost_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/leteos_compost_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/leteos_compost_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/leteos_compost_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/leteos_compost_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/leteos_compost_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/magma_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/magma_cake.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/magma_cake_faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/magma_cake_faces.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/magma_cake_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/magma_cake_inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/magma_cake_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/magma_cake_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/magma_cake_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/magma_cake_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_bowl.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_bricks_cabinet_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_bricks_cabinet_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_bricks_cabinet_front_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_bricks_cabinet_front_open.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_bricks_cabinet_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_bricks_cabinet_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_bricks_cabinet_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_bricks_cabinet_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_stove_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_stove_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_front_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_stove_front_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_front_on.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": false, 4 | "frametime": 3 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_front_soul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_stove_front_soul.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_front_soul.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": false, 4 | "frametime": 3 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_stove_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_stove_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_top_on.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": false, 4 | "frametime": 3 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_top_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_stove_top_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_top_on.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": true, 4 | "frametime": 8 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_top_soul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/nether_stove_top_soul.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/nether_stove_top_soul.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": true, 4 | "frametime": 8 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_basket_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_basket_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_basket_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_basket_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_basket_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_basket_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_block_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cabinet_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cabinet_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cabinet_front_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cabinet_front_open.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cabinet_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cabinet_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cabinet_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cabinet_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_base_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_base_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_base_leaves_bloomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_base_leaves_bloomed.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_mid.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_mid_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cane_mid_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_large_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_large_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_large_leaves_bloomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_large_leaves_bloomed.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_small_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_small_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_small_leaves_bloomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_small_leaves_bloomed.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_spikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_spikes.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_stalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_cannon_stalk.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_door_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_door_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_door_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_door_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_fence.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_fence_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_fence_gate.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_fence_gate_particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_fence_gate_particle.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_fence_particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_fence_particle.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_mosaic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_mosaic.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_scaffolding_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_scaffolding_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_scaffolding_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_scaffolding_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_scaffolding_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_scaffolding_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_top_bloomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_top_bloomed.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_top_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_top_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_torch.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/powdery_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/powdery_trapdoor.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/red_nether_bricks_cabinet_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/red_nether_bricks_cabinet_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/red_nether_bricks_cabinet_front_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/red_nether_bricks_cabinet_front_open.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/red_nether_bricks_cabinet_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/red_nether_bricks_cabinet_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/red_nether_bricks_cabinet_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/red_nether_bricks_cabinet_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/resurgent_soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/resurgent_soil.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/resurgent_soil_exhaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/resurgent_soil_exhaling.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/resurgent_soil_farmland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/resurgent_soil_farmland.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/resurgent_soil_farmland_exhaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/resurgent_soil_farmland_exhaling.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/skoglin_trophy_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/skoglin_trophy_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/striderloaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/striderloaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/striderloaf_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/striderloaf_cold.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/stripped_powdery_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/stripped_powdery_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/stripped_powdery_block_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/stripped_powdery_block_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/stuffed_hoglin_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/stuffed_hoglin_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/stuffed_hoglin_tray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/stuffed_hoglin_tray.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/tray_ghasta_with_cream_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/tray_ghasta_with_cream_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/tray_striderloaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/tray_striderloaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/tray_striderloaf_cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/tray_striderloaf_cold.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/trophy_mounting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/trophy_mounting.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/trophy_mounting_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/trophy_mounting_back.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/warped_fungus_colony_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/warped_fungus_colony_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/warped_fungus_colony_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/warped_fungus_colony_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/warped_fungus_colony_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/warped_fungus_colony_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/warped_fungus_colony_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/warped_fungus_colony_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/block/zoglin_trophy_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/block/zoglin_trophy_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/entity/signs/hanging/powdery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/entity/signs/hanging/powdery.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/entity/signs/powdery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/entity/signs/powdery.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/gui/hanging_signs/powdery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/gui/hanging_signs/powdery.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/gui/jei/composition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/gui/jei/composition.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/gui/nether_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/gui/nether_pot.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/bacon-wrapped_sausage_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/bacon-wrapped_sausage_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/blazefire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/blazefire.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/bleeding_tartar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/bleeding_tartar.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/blue_tenderloin_steak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/blue_tenderloin_steak.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/boiled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/boiled_egg.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/bread_loaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/bread_loaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/breakfast_sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/breakfast_sampler.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/broken_strider_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/broken_strider_egg.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/bullet_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/bullet_pepper.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/burnt_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/burnt_roll.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/chilidog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/chilidog.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/cold_striderloaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/cold_striderloaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/cold_striderloaf_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/cold_striderloaf_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/cooked_loin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/cooked_loin.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/crimson_stroganoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/crimson_stroganoff.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/deviled_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/deviled_egg.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/dried_ghast_with_milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/dried_ghast_with_milk.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/egg_soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/egg_soup.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/egg_soup_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/egg_soup_cup.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/fried_hoglin_chop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/fried_hoglin_chop.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/fries_ghasta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/fries_ghasta.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/ghasmati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/ghasmati.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/ghast_dough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/ghast_dough.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/ghast_salad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/ghast_salad.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/ghast_sourdough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/ghast_sourdough.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/ghasta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/ghasta.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/ghasta_with_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/ghasta_with_cream.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/ghasta_with_cream_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/ghasta_with_cream_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/giant_takoyaki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/giant_takoyaki.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/golden_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/golden_egg.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/hoglin_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/hoglin_hide.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/hoglin_trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/hoglin_trophy.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/hot_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/hot_cream.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/hot_cream_cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/hot_cream_cone.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/hot_wings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/hot_wings.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/hot_wings_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/hot_wings_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/hotdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/hotdog.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/hotdog_with_mixed_salad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/hotdog_with_mixed_salad.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/hotdog_with_nether_salad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/hotdog_with_nether_salad.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/loin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/loin.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/magma_cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/magma_cake.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/magma_cake_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/magma_cake_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/minced_strider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/minced_strider.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/nether_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/nether_burger.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/plate_of_hoglin_ham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/plate_of_hoglin_ham.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/plate_of_stuffed_hoglin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/plate_of_stuffed_hoglin.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/plate_of_stuffed_snout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/plate_of_stuffed_snout.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/powder_cannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/powder_cannon.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/powdery_cannon_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/powdery_cannon_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/powdery_cannon_hanging_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/powdery_cannon_hanging_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/powdery_cannon_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/powdery_cannon_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/red_loin_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/red_loin_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/roast_ear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/roast_ear.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/roast_stuffed_hoglin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/roast_stuffed_hoglin.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/roasted_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/roasted_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/rock_soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/rock_soup.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/rock_soup_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/rock_soup_cup.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/sausage_and_potatoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/sausage_and_potatoes.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/scotch_eggs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/scotch_eggs.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/sizzling_pudding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/sizzling_pudding.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/skoglin_trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/skoglin_trophy.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/slices_of_bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/slices_of_bread.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/spicy_cotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/spicy_cotton.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/spicy_curry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/spicy_curry.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/spicy_hoglin_stew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/spicy_hoglin_stew.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/spicy_hoglin_stew_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/spicy_hoglin_stew_cup.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/spicy_noodle_soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/spicy_noodle_soup.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/spicy_noodle_soup_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/spicy_noodle_soup_cup.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/spicy_skewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/spicy_skewer.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/strider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/strider.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/strider_and_grilled_fungus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/strider_and_grilled_fungus.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/strider_rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/strider_rock.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/strider_stew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/strider_stew.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/strider_stew_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/strider_stew_cup.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/striderloaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/striderloaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/striderloaf_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/striderloaf_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/stuffed_hoglin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/stuffed_hoglin.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/stuffed_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/stuffed_pepper.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/tear_popsicle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/tear_popsicle.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/toasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/toasts.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/twisted_ghasta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/twisted_ghasta.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/item/zoglin_trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/item/zoglin_trophy.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/mob_effect/b_pungent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/mob_effect/b_pungent.png -------------------------------------------------------------------------------- /src/main/resources/assets/mynethersdelight/textures/mob_effect/g_pungent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/assets/mynethersdelight/textures/mob_effect/g_pungent.png -------------------------------------------------------------------------------- /src/main/resources/data/farmersrespite/recipes/chilidog_alt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "farmersrespite:blazing_chili" 6 | }, 7 | { 8 | "item": "mynethersdelight:hotdog" 9 | }, 10 | { 11 | "item": "mynethersdelight:hotdog" 12 | } 13 | ], 14 | "result": { 15 | "count": 2, 16 | "item": "mynethersdelight:chilidog" 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/loot_modifiers/add_loot_bastion_hoglin_stable.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:add_loot_table", 3 | "conditions": 4 | [ 5 | { 6 | "condition": "forge:loot_table_id", 7 | "loot_table_id": "minecraft:chests/bastion_hoglin_stable" 8 | } 9 | ], 10 | "lootTable": "mynethersdelight:chests/mnd_bastion_hoglin_stable" 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/loot_modifiers/add_loot_bastion_treasure.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:add_loot_table", 3 | "conditions": 4 | [ 5 | { 6 | "condition": "forge:loot_table_id", 7 | "loot_table_id": "minecraft:chests/bastion_treasure" 8 | } 9 | ], 10 | "lootTable": "mynethersdelight:chests/mnd_bastion_treasure" 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/loot_modifiers/add_loot_piglin_bartering.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:add_loot_table", 3 | "conditions": 4 | [ 5 | { 6 | "condition": "forge:loot_table_id", 7 | "loot_table_id": "minecraft:gameplay/piglin_bartering" 8 | } 9 | ], 10 | "lootTable": "mynethersdelight:gameplay/mnd_piglin_bartering" 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/loot_modifiers/remplace_hoglin_cooked_pork_loin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "mynethersdelight:remplace_item", 3 | "conditions": [], 4 | "entity": "minecraft:hoglin", 5 | "item": "mynethersdelight:cooked_loin", 6 | "replaces": "minecraft:cooked_porkchop" 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/loot_modifiers/remplace_hoglin_pork_loin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "mynethersdelight:remplace_item", 3 | "conditions": [], 4 | "entity": "minecraft:hoglin", 5 | "item": "mynethersdelight:hoglin_loin", 6 | "replaces": "minecraft:porkchop" 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/loot_modifiers/scavenging_strider_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:add_item", 3 | "conditions": [ 4 | { 5 | "condition": "minecraft:entity_properties", 6 | "entity": "this", 7 | "predicate": { 8 | "type": "minecraft:strider" 9 | } 10 | } 11 | ], 12 | "item": "mynethersdelight:strider_slice", 13 | "count": 2.0 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/recipes/stonecutting/nether_bricks_gabinet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:stonecutting", 3 | "count": 1, 4 | "ingredient": { 5 | "item": "minecraft:nether_bricks" 6 | }, 7 | "result": "mynethersdelight:nether_bricks_cabinet" 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/bullet_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:bullet_pepper", 4 | { 5 | "id": "nethersdelight:propelpearl", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/cooked_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:roasted_sausage", 4 | "mynethersdelight:cooked_loin", 5 | { 6 | "id": "nethersdelight:hoglin_sirloin", 7 | "required": false 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/cooked_hoglin_loin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:cooked_loin", 4 | { 5 | "id": "nethersdelight:hoglin_sirloin", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/crimson_colony.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:crimson_fungus_colony", 4 | { 5 | "id": "nethersdelight:crimson_fungus_colony", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/hoglin_hide.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:hoglin_hide", 4 | { 5 | "id": "nethersdelight:hoglin_hide", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/loin_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:cooked_loin", 4 | "mynethersdelight:hoglin_loin", 5 | { 6 | "id": "nethersdelight:hoglin_sirloin", 7 | "required": false 8 | }, 9 | { 10 | "id": "nethersdelight:hoglin_loin", 11 | "required": false 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/minced_strider.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:minced_strider", 4 | { 5 | "id": "nethersdelight:ground_strider", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/powder_cannon.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:powder_cannon", 4 | { 5 | "id": "nethersdelight:propelplant_cane", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/raw_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:hoglin_sausage", 4 | "mynethersdelight:hoglin_loin", 5 | { 6 | "id": "nethersdelight:hoglin_loin", 7 | "required": false 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/raw_hoglin_loin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:hoglin_loin", 4 | { 5 | "id": "nethersdelight:hoglin_loin", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/strider_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:strider_slice", 4 | { 5 | "id": "nethersdelight:strider_slice", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/stuffed_hoglin.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:raw_stuffed_hoglin", 4 | { 5 | "id": "nethersdelight:raw_stuffed_hoglin", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/mynethersdelight/tags/items/warped_colony.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "mynethersdelight:warped_fungus_colony", 4 | { 5 | "id": "nethersdelight:warped_fungus_colony", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/nethersdelight/recipes/cutting/hoglin_sausage_alt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "farmersdelight:cutting", 3 | "ingredients": [ 4 | { 5 | "item": "nethersdelight:hoglin_loin" 6 | } 7 | ], 8 | "result": [ 9 | { 10 | "count": 2, 11 | "item": "mynethersdelight:hoglin_sausage" 12 | } 13 | ], 14 | "tool": { 15 | "tag": "forge:tools/knives" 16 | } 17 | } -------------------------------------------------------------------------------- /src/main/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyTutta/MyNethersDelight/5de778d35e95f5f970a9d0c5216e1782896e0482/src/main/resources/logo.png -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "My Nether's Delight Resources", 4 | "pack_format": 15 5 | } 6 | } 7 | --------------------------------------------------------------------------------