├── gradle └── wrapper │ └── gradle-wrapper.jar ├── src └── main │ └── resources │ ├── assets │ ├── minecraft │ │ └── models │ │ │ └── item │ │ │ ├── beef_eating_0.json │ │ │ ├── beef_eating_1.json │ │ │ ├── beef_eating_2.json │ │ │ ├── cod_eating_0.json │ │ │ ├── cod_eating_1.json │ │ │ ├── cod_eating_2.json │ │ │ ├── apple_eating_0.json │ │ │ ├── apple_eating_1.json │ │ │ ├── apple_eating_2.json │ │ │ ├── bread_eating_0.json │ │ │ ├── bread_eating_1.json │ │ │ ├── bread_eating_2.json │ │ │ ├── carrot_eating_0.json │ │ │ ├── carrot_eating_1.json │ │ │ ├── carrot_eating_2.json │ │ │ ├── chicken_eating_0.json │ │ │ ├── chicken_eating_1.json │ │ │ ├── chicken_eating_2.json │ │ │ ├── cookie_eating_0.json │ │ │ ├── cookie_eating_1.json │ │ │ ├── cookie_eating_2.json │ │ │ ├── mutton_eating_0.json │ │ │ ├── mutton_eating_1.json │ │ │ ├── mutton_eating_2.json │ │ │ ├── potato_eating_0.json │ │ │ ├── potato_eating_1.json │ │ │ ├── potato_eating_2.json │ │ │ ├── rabbit_eating_0.json │ │ │ ├── rabbit_eating_1.json │ │ │ ├── rabbit_eating_2.json │ │ │ ├── salmon_eating_0.json │ │ │ ├── salmon_eating_1.json │ │ │ ├── salmon_eating_2.json │ │ │ ├── beetroot_eating_0.json │ │ │ ├── beetroot_eating_1.json │ │ │ ├── beetroot_eating_2.json │ │ │ ├── porkchop_eating_0.json │ │ │ ├── porkchop_eating_1.json │ │ │ ├── porkchop_eating_2.json │ │ │ ├── baked_potato_eating_0.json │ │ │ ├── baked_potato_eating_1.json │ │ │ ├── baked_potato_eating_2.json │ │ │ ├── chorus_fruit_eating_0.json │ │ │ ├── chorus_fruit_eating_1.json │ │ │ ├── chorus_fruit_eating_2.json │ │ │ ├── cooked_beef_eating_0.json │ │ │ ├── cooked_beef_eating_1.json │ │ │ ├── cooked_beef_eating_2.json │ │ │ ├── cooked_cod_eating_0.json │ │ │ ├── cooked_cod_eating_1.json │ │ │ ├── cooked_cod_eating_2.json │ │ │ ├── dried_kelp_eating_0.json │ │ │ ├── dried_kelp_eating_1.json │ │ │ ├── dried_kelp_eating_2.json │ │ │ ├── glow_berries_eating_0.json │ │ │ ├── glow_berries_eating_1.json │ │ │ ├── glow_berries_eating_2.json │ │ │ ├── golden_apple_eating_0.json │ │ │ ├── golden_apple_eating_1.json │ │ │ ├── golden_apple_eating_2.json │ │ │ ├── melon_slice_eating_0.json │ │ │ ├── melon_slice_eating_1.json │ │ │ ├── melon_slice_eating_2.json │ │ │ ├── pufferfish_eating_0.json │ │ │ ├── pufferfish_eating_1.json │ │ │ ├── pufferfish_eating_2.json │ │ │ ├── pumpkin_pie_eating_0.json │ │ │ ├── pumpkin_pie_eating_1.json │ │ │ ├── pumpkin_pie_eating_2.json │ │ │ ├── rabbit_stew_eating_0.json │ │ │ ├── rabbit_stew_eating_1.json │ │ │ ├── rabbit_stew_eating_2.json │ │ │ ├── rotten_flesh_eating_0.json │ │ │ ├── rotten_flesh_eating_1.json │ │ │ ├── rotten_flesh_eating_2.json │ │ │ ├── spider_eye_eating_0.json │ │ │ ├── spider_eye_eating_1.json │ │ │ ├── spider_eye_eating_2.json │ │ │ ├── beetroot_soup_eating_0.json │ │ │ ├── beetroot_soup_eating_1.json │ │ │ ├── beetroot_soup_eating_2.json │ │ │ ├── cooked_chicken_eating_0.json │ │ │ ├── cooked_chicken_eating_1.json │ │ │ ├── cooked_chicken_eating_2.json │ │ │ ├── cooked_mutton_eating_0.json │ │ │ ├── cooked_mutton_eating_1.json │ │ │ ├── cooked_mutton_eating_2.json │ │ │ ├── cooked_rabbit_eating_0.json │ │ │ ├── cooked_rabbit_eating_1.json │ │ │ ├── cooked_rabbit_eating_2.json │ │ │ ├── cooked_salmon_eating_0.json │ │ │ ├── cooked_salmon_eating_1.json │ │ │ ├── cooked_salmon_eating_2.json │ │ │ ├── golden_carrot_eating_0.json │ │ │ ├── golden_carrot_eating_1.json │ │ │ ├── golden_carrot_eating_2.json │ │ │ ├── honey_bottle_drinking_0.json │ │ │ ├── honey_bottle_drinking_1.json │ │ │ ├── honey_bottle_drinking_2.json │ │ │ ├── milk_bucket_drinking_0.json │ │ │ ├── milk_bucket_drinking_1.json │ │ │ ├── milk_bucket_drinking_2.json │ │ │ ├── mushroom_stew_eating_0.json │ │ │ ├── mushroom_stew_eating_1.json │ │ │ ├── mushroom_stew_eating_2.json │ │ │ ├── sweet_berries_eating_0.json │ │ │ ├── sweet_berries_eating_1.json │ │ │ ├── sweet_berries_eating_2.json │ │ │ ├── tropical_fish_eating_0.json │ │ │ ├── tropical_fish_eating_1.json │ │ │ ├── tropical_fish_eating_2.json │ │ │ ├── cooked_porkchop_eating_0.json │ │ │ ├── cooked_porkchop_eating_1.json │ │ │ ├── cooked_porkchop_eating_2.json │ │ │ ├── ominous_bottle_drinking_0.json │ │ │ ├── ominous_bottle_drinking_1.json │ │ │ ├── ominous_bottle_drinking_2.json │ │ │ ├── poisonous_potato_eating_0.json │ │ │ ├── poisonous_potato_eating_1.json │ │ │ ├── poisonous_potato_eating_2.json │ │ │ ├── suspicious_stew_eating_0.json │ │ │ ├── suspicious_stew_eating_1.json │ │ │ └── suspicious_stew_eating_2.json │ └── eatinganimationid │ │ ├── eatinganimationicon.png │ │ └── textures │ │ └── item │ │ ├── apple_eating_0.png │ │ ├── apple_eating_1.png │ │ ├── apple_eating_2.png │ │ ├── beef_eating_0.png │ │ ├── beef_eating_1.png │ │ ├── beef_eating_2.png │ │ ├── bread_eating_0.png │ │ ├── bread_eating_1.png │ │ ├── bread_eating_2.png │ │ ├── cod_eating_0.png │ │ ├── cod_eating_1.png │ │ ├── cod_eating_2.png │ │ ├── carrot_eating_0.png │ │ ├── carrot_eating_1.png │ │ ├── carrot_eating_2.png │ │ ├── chicken_eating_0.png │ │ ├── chicken_eating_1.png │ │ ├── chicken_eating_2.png │ │ ├── cookie_eating_0.png │ │ ├── cookie_eating_1.png │ │ ├── cookie_eating_2.png │ │ ├── mutton_eating_0.png │ │ ├── mutton_eating_1.png │ │ ├── mutton_eating_2.png │ │ ├── potato_eating_0.png │ │ ├── potato_eating_1.png │ │ ├── potato_eating_2.png │ │ ├── rabbit_eating_0.png │ │ ├── rabbit_eating_1.png │ │ ├── rabbit_eating_2.png │ │ ├── salmon_eating_0.png │ │ ├── salmon_eating_1.png │ │ ├── salmon_eating_2.png │ │ ├── beetroot_eating_0.png │ │ ├── beetroot_eating_1.png │ │ ├── beetroot_eating_2.png │ │ ├── bottle_without_cork.png │ │ ├── cooked_cod_eating_0.png │ │ ├── cooked_cod_eating_1.png │ │ ├── cooked_cod_eating_2.png │ │ ├── dried_kelp_eating_0.png │ │ ├── dried_kelp_eating_1.png │ │ ├── dried_kelp_eating_2.png │ │ ├── porkchop_eating_0.png │ │ ├── porkchop_eating_1.png │ │ ├── porkchop_eating_2.png │ │ ├── pufferfish_eating_0.png │ │ ├── pufferfish_eating_1.png │ │ ├── pufferfish_eating_2.png │ │ ├── spider_eye_eating_0.png │ │ ├── spider_eye_eating_1.png │ │ ├── spider_eye_eating_2.png │ │ ├── baked_potato_eating_0.png │ │ ├── baked_potato_eating_1.png │ │ ├── baked_potato_eating_2.png │ │ ├── chorus_fruit_eating_0.png │ │ ├── chorus_fruit_eating_1.png │ │ ├── chorus_fruit_eating_2.png │ │ ├── cooked_beef_eating_0.png │ │ ├── cooked_beef_eating_1.png │ │ ├── cooked_beef_eating_2.png │ │ ├── glow_berries_eating_0.png │ │ ├── glow_berries_eating_1.png │ │ ├── glow_berries_eating_2.png │ │ ├── golden_apple_eating_0.png │ │ ├── golden_apple_eating_1.png │ │ ├── golden_apple_eating_2.png │ │ ├── melon_slice_eating_0.png │ │ ├── melon_slice_eating_1.png │ │ ├── melon_slice_eating_2.png │ │ ├── pumpkin_pie_eating_0.png │ │ ├── pumpkin_pie_eating_1.png │ │ ├── pumpkin_pie_eating_2.png │ │ ├── rabbit_stew_eating_0.png │ │ ├── rabbit_stew_eating_1.png │ │ ├── rabbit_stew_eating_2.png │ │ ├── rotten_flesh_eating_0.png │ │ ├── rotten_flesh_eating_1.png │ │ ├── rotten_flesh_eating_2.png │ │ ├── beetroot_soup_eating_0.png │ │ ├── beetroot_soup_eating_1.png │ │ ├── beetroot_soup_eating_2.png │ │ ├── cooked_chicken_eating_0.png │ │ ├── cooked_chicken_eating_1.png │ │ ├── cooked_chicken_eating_2.png │ │ ├── cooked_mutton_eating_0.png │ │ ├── cooked_mutton_eating_1.png │ │ ├── cooked_mutton_eating_2.png │ │ ├── cooked_porkchop_eating_0.png │ │ ├── cooked_porkchop_eating_1.png │ │ ├── cooked_porkchop_eating_2.png │ │ ├── cooked_rabbit_eating_0.png │ │ ├── cooked_rabbit_eating_1.png │ │ ├── cooked_rabbit_eating_2.png │ │ ├── cooked_salmon_eating_0.png │ │ ├── cooked_salmon_eating_1.png │ │ ├── cooked_salmon_eating_2.png │ │ ├── golden_carrot_eating_0.png │ │ ├── golden_carrot_eating_1.png │ │ ├── golden_carrot_eating_2.png │ │ ├── honey_bottle_drinking_0.png │ │ ├── honey_bottle_drinking_1.png │ │ ├── honey_bottle_drinking_2.png │ │ ├── milk_bucket_drinking_0.png │ │ ├── milk_bucket_drinking_1.png │ │ ├── milk_bucket_drinking_2.png │ │ ├── mushroom_stew_eating_0.png │ │ ├── mushroom_stew_eating_1.png │ │ ├── mushroom_stew_eating_2.png │ │ ├── suspicious_stew_eating_0.png │ │ ├── suspicious_stew_eating_1.png │ │ ├── suspicious_stew_eating_2.png │ │ ├── sweet_berries_eating_0.png │ │ ├── sweet_berries_eating_1.png │ │ ├── sweet_berries_eating_2.png │ │ ├── tropical_fish_eating_0.png │ │ ├── tropical_fish_eating_1.png │ │ ├── tropical_fish_eating_2.png │ │ ├── ominous_bottle_drinking_0.png │ │ ├── ominous_bottle_drinking_1.png │ │ ├── ominous_bottle_drinking_2.png │ │ ├── poisonous_potato_eating_0.png │ │ ├── poisonous_potato_eating_1.png │ │ ├── poisonous_potato_eating_2.png │ │ ├── potion_overlay_drinking_0.png │ │ ├── potion_overlay_drinking_1.png │ │ └── potion_overlay_drinking_2.png │ └── resourcepacks │ └── supporteatinganimation │ ├── pack.png │ ├── pack.mcmeta │ └── assets │ ├── foodplusid │ └── models │ │ └── item │ │ ├── root_eating_0.json │ │ ├── root_eating_1.json │ │ ├── root_eating_2.json │ │ ├── lichen_eating_0.json │ │ ├── lichen_eating_1.json │ │ ├── lichen_eating_2.json │ │ ├── turnip_eating_0.json │ │ ├── turnip_eating_1.json │ │ ├── turnip_eating_2.json │ │ ├── ad_soup_eating_0.json │ │ ├── ad_soup_eating_1.json │ │ ├── ad_soup_eating_2.json │ │ ├── apple_pie_eating_0.json │ │ ├── apple_pie_eating_1.json │ │ ├── apple_pie_eating_2.json │ │ ├── bat_wing_eating_0.json │ │ ├── bat_wing_eating_1.json │ │ ├── bat_wing_eating_2.json │ │ ├── bee_pill_eating_0.json │ │ ├── bee_pill_eating_1.json │ │ ├── bee_pill_eating_2.json │ │ ├── caramel_eating_0.json │ │ ├── caramel_eating_1.json │ │ ├── caramel_eating_2.json │ │ ├── chocolate_eating_0.json │ │ ├── chocolate_eating_1.json │ │ ├── chocolate_eating_2.json │ │ ├── honey_gum_eating_0.json │ │ ├── honey_gum_eating_1.json │ │ ├── honey_gum_eating_2.json │ │ ├── hot_stuff_eating_0.json │ │ ├── hot_stuff_eating_1.json │ │ ├── hot_stuff_eating_2.json │ │ ├── meat_pie_eating_0.json │ │ ├── meat_pie_eating_1.json │ │ ├── meat_pie_eating_2.json │ │ ├── red_candy_eating_0.json │ │ ├── red_candy_eating_1.json │ │ ├── red_candy_eating_2.json │ │ ├── sea_salad_eating_0.json │ │ ├── sea_salad_eating_1.json │ │ ├── sea_salad_eating_2.json │ │ ├── tolchonka_eating_0.json │ │ ├── tolchonka_eating_1.json │ │ ├── tolchonka_eating_2.json │ │ ├── varenie_eating_0.json │ │ ├── varenie_eating_1.json │ │ ├── varenie_eating_2.json │ │ ├── apple_juice_eating_0.json │ │ ├── apple_juice_eating_1.json │ │ ├── apple_juice_eating_2.json │ │ ├── awful_stew_eating_0.json │ │ ├── awful_stew_eating_1.json │ │ ├── awful_stew_eating_2.json │ │ ├── baked_flesh_eating_0.json │ │ ├── baked_flesh_eating_1.json │ │ ├── baked_flesh_eating_2.json │ │ ├── beef_salad_eating_0.json │ │ ├── beef_salad_eating_1.json │ │ ├── beef_salad_eating_2.json │ │ ├── beet_bread_eating_0.json │ │ ├── beet_bread_eating_1.json │ │ ├── beet_bread_eating_2.json │ │ ├── black_candy_eating_0.json │ │ ├── black_candy_eating_1.json │ │ ├── black_candy_eating_2.json │ │ ├── blue_candy_eating_0.json │ │ ├── blue_candy_eating_1.json │ │ ├── blue_candy_eating_2.json │ │ ├── brown_candy_eating_0.json │ │ ├── brown_candy_eating_1.json │ │ ├── brown_candy_eating_2.json │ │ ├── carrot_pie_eating_0.json │ │ ├── carrot_pie_eating_1.json │ │ ├── carrot_pie_eating_2.json │ │ ├── cocoa_shake_eating_0.json │ │ ├── cocoa_shake_eating_1.json │ │ ├── cocoa_shake_eating_2.json │ │ ├── cyan_candy_eating_0.json │ │ ├── cyan_candy_eating_1.json │ │ ├── cyan_candy_eating_2.json │ │ ├── fish_salad_eating_0.json │ │ ├── fish_salad_eating_1.json │ │ ├── fish_salad_eating_2.json │ │ ├── gold_potato_eating_0.json │ │ ├── gold_potato_eating_1.json │ │ ├── gold_potato_eating_2.json │ │ ├── gray_candy_eating_0.json │ │ ├── gray_candy_eating_1.json │ │ ├── gray_candy_eating_2.json │ │ ├── green_candy_eating_0.json │ │ ├── green_candy_eating_1.json │ │ ├── green_candy_eating_2.json │ │ ├── lime_candy_eating_0.json │ │ ├── lime_candy_eating_1.json │ │ ├── lime_candy_eating_2.json │ │ ├── melon_juice_eating_0.json │ │ ├── melon_juice_eating_1.json │ │ ├── melon_juice_eating_2.json │ │ ├── milk_shake_eating_0.json │ │ ├── milk_shake_eating_1.json │ │ ├── milk_shake_eating_2.json │ │ ├── pink_candy_eating_0.json │ │ ├── pink_candy_eating_1.json │ │ ├── pink_candy_eating_2.json │ │ ├── pork_salad_eating_0.json │ │ ├── pork_salad_eating_1.json │ │ ├── pork_salad_eating_2.json │ │ ├── pumkin_soup_eating_0.json │ │ ├── pumkin_soup_eating_1.json │ │ ├── pumkin_soup_eating_2.json │ │ ├── raw_stride_eating_0.json │ │ ├── raw_stride_eating_1.json │ │ ├── raw_stride_eating_2.json │ │ ├── white_candy_eating_0.json │ │ ├── white_candy_eating_1.json │ │ ├── white_candy_eating_2.json │ │ ├── beef_sandwich_eating_0.json │ │ ├── beef_sandwich_eating_1.json │ │ ├── beef_sandwich_eating_2.json │ │ ├── beetroot_juice_eating_0.json │ │ ├── beetroot_juice_eating_1.json │ │ ├── beetroot_juice_eating_2.json │ │ ├── berri_cookie_eating_0.json │ │ ├── berri_cookie_eating_1.json │ │ ├── berri_cookie_eating_2.json │ │ ├── berry_cookie_eating_0.json │ │ ├── berry_cookie_eating_1.json │ │ ├── berry_cookie_eating_2.json │ │ ├── carrot_bread_eating_0.json │ │ ├── carrot_bread_eating_1.json │ │ ├── carrot_bread_eating_2.json │ │ ├── carrot_cookie_eating_0.json │ │ ├── carrot_cookie_eating_1.json │ │ ├── carrot_cookie_eating_2.json │ │ ├── carrot_juice_eating_0.json │ │ ├── carrot_juice_eating_1.json │ │ ├── carrot_juice_eating_2.json │ │ ├── chicken_salad_eating_0.json │ │ ├── chicken_salad_eating_1.json │ │ ├── chicken_salad_eating_2.json │ │ ├── cooked_stride_eating_0.json │ │ ├── cooked_stride_eating_1.json │ │ ├── cooked_stride_eating_2.json │ │ ├── fish_sandwich_eating_0.json │ │ ├── fish_sandwich_eating_1.json │ │ ├── fish_sandwich_eating_2.json │ │ ├── glow_varenie_eating_0.json │ │ ├── glow_varenie_eating_1.json │ │ ├── glow_varenie_eating_2.json │ │ ├── gold_beetroot_eating_0.json │ │ ├── gold_beetroot_eating_1.json │ │ ├── gold_beetroot_eating_2.json │ │ ├── golden_turnip_eating_0.json │ │ ├── golden_turnip_eating_1.json │ │ ├── golden_turnip_eating_2.json │ │ ├── honey_cookie_eating_0.json │ │ ├── honey_cookie_eating_1.json │ │ ├── honey_cookie_eating_2.json │ │ ├── lichen_bread_eating_0.json │ │ ├── lichen_bread_eating_1.json │ │ ├── lichen_bread_eating_2.json │ │ ├── magenta_candy_eating_0.json │ │ ├── magenta_candy_eating_1.json │ │ ├── magenta_candy_eating_2.json │ │ ├── medovik_slice_eating_0.json │ │ ├── medovik_slice_eating_1.json │ │ ├── medovik_slice_eating_2.json │ │ ├── milled_lichen_eating_0.json │ │ ├── milled_lichen_eating_1.json │ │ ├── milled_lichen_eating_2.json │ │ ├── mutton_salad_eating_0.json │ │ ├── mutton_salad_eating_1.json │ │ ├── mutton_salad_eating_2.json │ │ ├── orange_candy_eating_0.json │ │ ├── orange_candy_eating_1.json │ │ ├── orange_candy_eating_2.json │ │ ├── pork_sandwich_eating_0.json │ │ ├── pork_sandwich_eating_1.json │ │ ├── pork_sandwich_eating_2.json │ │ ├── potato_bread_eating_0.json │ │ ├── potato_bread_eating_1.json │ │ ├── potato_bread_eating_2.json │ │ ├── pumpkin_soup_eating_0.json │ │ ├── pumpkin_soup_eating_1.json │ │ ├── pumpkin_soup_eating_2.json │ │ ├── purple_candy_eating_0.json │ │ ├── purple_candy_eating_1.json │ │ ├── purple_candy_eating_2.json │ │ ├── rabbit_salad_eating_0.json │ │ ├── rabbit_salad_eating_1.json │ │ ├── rabbit_salad_eating_2.json │ │ ├── raw_frog_leg_eating_0.json │ │ ├── raw_frog_leg_eating_1.json │ │ ├── raw_frog_leg_eating_2.json │ │ ├── red_sus_candy_eating_0.json │ │ ├── red_sus_candy_eating_1.json │ │ ├── red_sus_candy_eating_2.json │ │ ├── salmon_salad_eating_0.json │ │ ├── salmon_salad_eating_1.json │ │ ├── salmon_salad_eating_2.json │ │ ├── yellow_candy_eating_0.json │ │ ├── yellow_candy_eating_1.json │ │ └── yellow_candy_eating_2.json │ ├── naturalist │ └── models │ │ └── item │ │ ├── bass_eating_0.json │ │ ├── bass_eating_1.json │ │ ├── bass_eating_2.json │ │ ├── duck_eating_0.json │ │ ├── duck_eating_1.json │ │ ├── duck_eating_2.json │ │ ├── catfish_eating_0.json │ │ ├── catfish_eating_1.json │ │ ├── catfish_eating_2.json │ │ ├── venison_eating_0.json │ │ ├── venison_eating_1.json │ │ ├── venison_eating_2.json │ │ ├── cooked_bass_eating_0.json │ │ ├── cooked_bass_eating_1.json │ │ ├── cooked_bass_eating_2.json │ │ ├── cooked_duck_eating_0.json │ │ ├── cooked_duck_eating_1.json │ │ ├── cooked_duck_eating_2.json │ │ ├── cooked_egg_eating_0.json │ │ ├── cooked_egg_eating_1.json │ │ ├── cooked_egg_eating_2.json │ │ ├── lizard_tail_eating_0.json │ │ ├── lizard_tail_eating_1.json │ │ ├── lizard_tail_eating_2.json │ │ ├── cooked_catfish_eating_0.json │ │ ├── cooked_catfish_eating_1.json │ │ ├── cooked_catfish_eating_2.json │ │ ├── cooked_venison_eating_0.json │ │ ├── cooked_venison_eating_1.json │ │ └── cooked_venison_eating_2.json │ ├── create │ └── models │ │ └── item │ │ ├── sweet_roll_eating_0.json │ │ ├── sweet_roll_eating_1.json │ │ ├── sweet_roll_eating_2.json │ │ ├── honeyed_apple_eating_0.json │ │ ├── honeyed_apple_eating_1.json │ │ ├── honeyed_apple_eating_2.json │ │ ├── builders_tea_drinking_0.json │ │ ├── builders_tea_drinking_1.json │ │ ├── builders_tea_drinking_2.json │ │ ├── bar_of_chocolate_eating_0.json │ │ ├── bar_of_chocolate_eating_1.json │ │ └── bar_of_chocolate_eating_2.json │ ├── adorn │ └── models │ │ └── item │ │ ├── glow_berry_tea_eating_0.json │ │ ├── glow_berry_tea_eating_1.json │ │ ├── glow_berry_tea_eating_2.json │ │ ├── hot_chocolate_eating_0.json │ │ ├── hot_chocolate_eating_1.json │ │ ├── hot_chocolate_eating_2.json │ │ ├── nether_wart_coffee_eating_0.json │ │ ├── nether_wart_coffee_eating_1.json │ │ ├── nether_wart_coffee_eating_2.json │ │ ├── sweet_berry_juice_eating_0.json │ │ ├── sweet_berry_juice_eating_1.json │ │ └── sweet_berry_juice_eating_2.json │ ├── botania │ └── models │ │ └── item │ │ ├── mana_cookie_eating_0.json │ │ ├── mana_cookie_eating_1.json │ │ ├── mana_cookie_eating_2.json │ │ ├── infinite_fruit_eating_0.json │ │ ├── infinite_fruit_eating_1.json │ │ └── infinite_fruit_eating_2.json │ ├── farmersdelight │ └── models │ │ └── item │ │ ├── bacon_eating_0.json │ │ ├── bacon_eating_1.json │ │ ├── bacon_eating_2.json │ │ ├── ham_eating_0.json │ │ ├── ham_eating_1.json │ │ ├── ham_eating_2.json │ │ ├── onion_eating_0.json │ │ ├── onion_eating_1.json │ │ ├── onion_eating_2.json │ │ ├── rice_eating_0.json │ │ ├── rice_eating_1.json │ │ ├── rice_eating_2.json │ │ ├── cabbage_eating_0.json │ │ ├── cabbage_eating_1.json │ │ ├── cabbage_eating_2.json │ │ ├── tomato_eating_0.json │ │ ├── tomato_eating_1.json │ │ ├── tomato_eating_2.json │ │ ├── beef_patty_eating_0.json │ │ ├── beef_patty_eating_1.json │ │ ├── beef_patty_eating_2.json │ │ ├── beef_stew_eating_0.json │ │ ├── beef_stew_eating_1.json │ │ ├── beef_stew_eating_2.json │ │ ├── bone_broth_eating_0.json │ │ ├── bone_broth_eating_1.json │ │ ├── bone_broth_eating_2.json │ │ ├── cake_slice_eating_0.json │ │ ├── cake_slice_eating_1.json │ │ ├── cake_slice_eating_2.json │ │ ├── cod_roll_eating_0.json │ │ ├── cod_roll_eating_1.json │ │ ├── cod_roll_eating_2.json │ │ ├── cod_slice_eating_0.json │ │ ├── cod_slice_eating_1.json │ │ ├── cod_slice_eating_2.json │ │ ├── dumplings_eating_0.json │ │ ├── dumplings_eating_1.json │ │ ├── dumplings_eating_2.json │ │ ├── fish_stew_eating_0.json │ │ ├── fish_stew_eating_1.json │ │ ├── fish_stew_eating_2.json │ │ ├── fried_egg_eating_0.json │ │ ├── fried_egg_eating_1.json │ │ ├── fried_egg_eating_2.json │ │ ├── fried_rice_eating_0.json │ │ ├── fried_rice_eating_1.json │ │ ├── fried_rice_eating_2.json │ │ ├── hamburger_eating_0.json │ │ ├── hamburger_eating_1.json │ │ ├── hamburger_eating_2.json │ │ ├── hot_cocoa_eating_0.json │ │ ├── hot_cocoa_eating_1.json │ │ ├── hot_cocoa_eating_2.json │ │ ├── kelp_roll_eating_0.json │ │ ├── kelp_roll_eating_1.json │ │ ├── kelp_roll_eating_2.json │ │ ├── pie_crust_eating_0.json │ │ ├── pie_crust_eating_1.json │ │ ├── pie_crust_eating_2.json │ │ ├── raw_pasta_eating_0.json │ │ ├── raw_pasta_eating_1.json │ │ ├── raw_pasta_eating_2.json │ │ ├── smoked_ham_eating_0.json │ │ ├── smoked_ham_eating_1.json │ │ └── smoked_ham_eating_2.json │ ├── snowpig │ └── models │ │ └── item │ │ ├── frozen_ham_eating_0.json │ │ ├── frozen_ham_eating_1.json │ │ ├── frozen_ham_eating_2.json │ │ ├── frozen_porkchop_eating_0.json │ │ ├── frozen_porkchop_eating_1.json │ │ └── frozen_porkchop_eating_2.json │ ├── betterend │ └── models │ │ └── item │ │ ├── end_fish_raw_eating_0.json │ │ ├── end_fish_raw_eating_1.json │ │ ├── end_fish_raw_eating_2.json │ │ ├── amber_root_raw_eating_0.json │ │ ├── amber_root_raw_eating_1.json │ │ ├── amber_root_raw_eating_2.json │ │ ├── blossom_berry_eating_0.json │ │ ├── blossom_berry_eating_1.json │ │ ├── blossom_berry_eating_2.json │ │ ├── end_fish_cooked_eating_0.json │ │ ├── end_fish_cooked_eating_1.json │ │ └── end_fish_cooked_eating_2.json │ ├── expandeddelight │ └── models │ │ └── item │ │ ├── peanut_eating_0.json │ │ ├── peanut_eating_1.json │ │ ├── peanut_eating_2.json │ │ ├── asparagus_eating_0.json │ │ ├── asparagus_eating_1.json │ │ └── asparagus_eating_2.json │ ├── betternether │ └── models │ │ └── item │ │ ├── black_apple_eating_0.json │ │ ├── black_apple_eating_1.json │ │ └── black_apple_eating_2.json │ ├── hybrid-aquatic │ └── models │ │ └── item │ │ ├── raw_crab_eating_0.json │ │ ├── raw_crab_eating_1.json │ │ └── raw_crab_eating_2.json │ ├── the_bumblezone │ └── models │ │ └── item │ │ ├── bee_bread_eating_0.json │ │ ├── bee_bread_eating_1.json │ │ ├── bee_bread_eating_2.json │ │ ├── bee_soup_eating_0.json │ │ ├── bee_soup_eating_1.json │ │ └── bee_soup_eating_2.json │ └── winterly │ └── models │ └── item │ └── blue_candy_cane_eating_0.json └── settings.gradle /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/beef_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/beef_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/beef_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/beef_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/beef_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/beef_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cod_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cod_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cod_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cod_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cod_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cod_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/resourcepacks/supporteatinganimation/pack.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/eatinganimationicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/eatinganimationicon.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/apple_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/apple_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/apple_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/apple_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/apple_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/apple_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/bread_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/bread_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/bread_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/bread_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/bread_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/bread_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/carrot_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/carrot_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/carrot_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/carrot_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/carrot_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/carrot_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/chicken_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/chicken_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/chicken_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/chicken_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/chicken_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/chicken_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cookie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cookie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cookie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cookie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cookie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cookie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/mutton_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/mutton_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/mutton_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/mutton_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/mutton_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/mutton_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/potato_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/potato_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/potato_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/potato_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/potato_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/potato_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/rabbit_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/rabbit_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/rabbit_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/rabbit_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/rabbit_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/rabbit_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/salmon_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/salmon_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/salmon_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/salmon_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/salmon_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/salmon_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/beetroot_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/beetroot_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/beetroot_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/beetroot_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/beetroot_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/beetroot_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/porkchop_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/porkchop_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/porkchop_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/porkchop_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/porkchop_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/porkchop_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/baked_potato_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/baked_potato_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/baked_potato_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/baked_potato_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/baked_potato_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/baked_potato_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/chorus_fruit_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/chorus_fruit_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/chorus_fruit_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/chorus_fruit_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/chorus_fruit_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/chorus_fruit_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_beef_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_beef_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_beef_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_beef_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_beef_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_beef_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_cod_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_cod_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_cod_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_cod_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_cod_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_cod_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/dried_kelp_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/dried_kelp_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/dried_kelp_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/dried_kelp_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/dried_kelp_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/dried_kelp_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/glow_berries_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/glow_berries_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/glow_berries_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/glow_berries_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/glow_berries_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/glow_berries_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/golden_apple_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/golden_apple_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/golden_apple_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/golden_apple_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/golden_apple_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/golden_apple_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/melon_slice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/melon_slice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/melon_slice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/melon_slice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/melon_slice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/melon_slice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/pufferfish_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/pufferfish_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/pufferfish_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/pufferfish_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/pufferfish_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/pufferfish_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/pumpkin_pie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/pumpkin_pie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/pumpkin_pie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/pumpkin_pie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/pumpkin_pie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/pumpkin_pie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/rabbit_stew_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/rabbit_stew_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/rabbit_stew_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/rabbit_stew_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/rabbit_stew_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/rabbit_stew_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/rotten_flesh_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/rotten_flesh_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/rotten_flesh_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/rotten_flesh_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/rotten_flesh_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/rotten_flesh_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/spider_eye_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/spider_eye_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/spider_eye_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/spider_eye_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/spider_eye_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/spider_eye_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/apple_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/apple_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/apple_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/apple_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/apple_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/apple_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/beef_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/beef_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/beef_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/beef_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/beef_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/beef_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/bread_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/bread_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/bread_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/bread_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/bread_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/bread_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cod_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cod_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cod_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cod_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cod_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cod_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/beetroot_soup_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/beetroot_soup_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/beetroot_soup_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/beetroot_soup_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/beetroot_soup_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/beetroot_soup_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_chicken_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_chicken_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_chicken_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_chicken_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_chicken_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_chicken_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_mutton_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_mutton_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_mutton_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_mutton_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_mutton_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_mutton_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_rabbit_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_rabbit_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_rabbit_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_rabbit_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_rabbit_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_rabbit_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_salmon_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_salmon_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_salmon_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_salmon_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_salmon_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_salmon_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/golden_carrot_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/golden_carrot_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/golden_carrot_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/golden_carrot_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/golden_carrot_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/golden_carrot_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/honey_bottle_drinking_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/honey_bottle_drinking_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/honey_bottle_drinking_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/honey_bottle_drinking_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/honey_bottle_drinking_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/honey_bottle_drinking_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/milk_bucket_drinking_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/milk_bucket_drinking_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/milk_bucket_drinking_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/milk_bucket_drinking_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/milk_bucket_drinking_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/milk_bucket_drinking_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/mushroom_stew_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/mushroom_stew_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/mushroom_stew_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/mushroom_stew_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/mushroom_stew_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/mushroom_stew_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/sweet_berries_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/sweet_berries_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/sweet_berries_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/sweet_berries_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/sweet_berries_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/sweet_berries_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/tropical_fish_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/tropical_fish_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/tropical_fish_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/tropical_fish_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/tropical_fish_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/tropical_fish_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 34, 4 | "description": "\u00A7c\u00A7lEating Animation\n\u00A7c\u00A7lmods support" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/carrot_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/carrot_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/carrot_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/carrot_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/carrot_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/carrot_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/chicken_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/chicken_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/chicken_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/chicken_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/chicken_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/chicken_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cookie_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cookie_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cookie_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cookie_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cookie_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cookie_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/mutton_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/mutton_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/mutton_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/mutton_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/mutton_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/mutton_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/potato_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/potato_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/potato_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/potato_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/potato_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/potato_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/rabbit_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/rabbit_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/rabbit_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/rabbit_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/rabbit_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/rabbit_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/salmon_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/salmon_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/salmon_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/salmon_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/salmon_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/salmon_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_porkchop_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_porkchop_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_porkchop_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_porkchop_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/cooked_porkchop_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/cooked_porkchop_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/ominous_bottle_drinking_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/ominous_bottle_drinking_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/ominous_bottle_drinking_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/ominous_bottle_drinking_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/ominous_bottle_drinking_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/ominous_bottle_drinking_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/poisonous_potato_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/poisonous_potato_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/poisonous_potato_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/poisonous_potato_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/poisonous_potato_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/poisonous_potato_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/suspicious_stew_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/suspicious_stew_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/suspicious_stew_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/suspicious_stew_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/models/item/suspicious_stew_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "eatinganimationid:item/suspicious_stew_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/beetroot_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/beetroot_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/beetroot_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/beetroot_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/beetroot_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/beetroot_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/bottle_without_cork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/bottle_without_cork.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_cod_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_cod_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_cod_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_cod_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_cod_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_cod_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/dried_kelp_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/dried_kelp_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/dried_kelp_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/dried_kelp_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/dried_kelp_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/dried_kelp_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/porkchop_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/porkchop_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/porkchop_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/porkchop_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/porkchop_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/porkchop_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/pufferfish_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/pufferfish_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/pufferfish_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/pufferfish_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/pufferfish_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/pufferfish_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/spider_eye_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/spider_eye_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/spider_eye_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/spider_eye_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/spider_eye_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/spider_eye_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/root_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/root_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/root_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/root_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/root_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/root_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/bass_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/bass_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/bass_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/bass_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/bass_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/bass_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/duck_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/duck_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/duck_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/duck_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/duck_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/duck_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/baked_potato_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/baked_potato_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/baked_potato_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/baked_potato_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/baked_potato_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/baked_potato_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/chorus_fruit_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/chorus_fruit_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/chorus_fruit_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/chorus_fruit_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/chorus_fruit_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/chorus_fruit_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_beef_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_beef_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_beef_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_beef_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_beef_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_beef_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/glow_berries_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/glow_berries_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/glow_berries_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/glow_berries_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/glow_berries_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/glow_berries_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/golden_apple_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/golden_apple_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/golden_apple_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/golden_apple_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/golden_apple_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/golden_apple_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/melon_slice_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/melon_slice_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/melon_slice_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/melon_slice_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/melon_slice_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/melon_slice_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/pumpkin_pie_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/pumpkin_pie_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/pumpkin_pie_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/pumpkin_pie_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/pumpkin_pie_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/pumpkin_pie_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/rabbit_stew_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/rabbit_stew_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/rabbit_stew_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/rabbit_stew_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/rabbit_stew_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/rabbit_stew_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/rotten_flesh_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/rotten_flesh_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/rotten_flesh_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/rotten_flesh_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/rotten_flesh_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/rotten_flesh_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/sweet_roll_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/sweet_roll_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/sweet_roll_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/sweet_roll_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/sweet_roll_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/sweet_roll_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/lichen_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/lichen_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/lichen_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/lichen_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/lichen_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/lichen_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/turnip_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/turnip_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/turnip_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/turnip_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/turnip_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/turnip_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/beetroot_soup_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/beetroot_soup_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/beetroot_soup_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/beetroot_soup_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/beetroot_soup_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/beetroot_soup_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_chicken_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_chicken_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_chicken_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_chicken_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_chicken_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_chicken_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_mutton_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_mutton_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_mutton_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_mutton_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_mutton_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_mutton_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_porkchop_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_porkchop_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_porkchop_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_porkchop_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_porkchop_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_porkchop_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_rabbit_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_rabbit_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_rabbit_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_rabbit_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_rabbit_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_rabbit_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_salmon_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_salmon_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_salmon_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_salmon_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/cooked_salmon_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/cooked_salmon_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/golden_carrot_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/golden_carrot_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/golden_carrot_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/golden_carrot_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/golden_carrot_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/golden_carrot_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/honey_bottle_drinking_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/honey_bottle_drinking_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/honey_bottle_drinking_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/honey_bottle_drinking_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/honey_bottle_drinking_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/honey_bottle_drinking_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/milk_bucket_drinking_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/milk_bucket_drinking_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/milk_bucket_drinking_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/milk_bucket_drinking_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/milk_bucket_drinking_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/milk_bucket_drinking_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/mushroom_stew_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/mushroom_stew_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/mushroom_stew_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/mushroom_stew_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/mushroom_stew_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/mushroom_stew_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/suspicious_stew_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/suspicious_stew_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/suspicious_stew_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/suspicious_stew_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/suspicious_stew_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/suspicious_stew_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/sweet_berries_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/sweet_berries_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/sweet_berries_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/sweet_berries_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/sweet_berries_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/sweet_berries_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/tropical_fish_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/tropical_fish_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/tropical_fish_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/tropical_fish_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/tropical_fish_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/tropical_fish_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/glow_berry_tea_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/glow_berry_tea_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/glow_berry_tea_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/glow_berry_tea_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/glow_berry_tea_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/glow_berry_tea_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/hot_chocolate_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/hot_chocolate_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/hot_chocolate_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/hot_chocolate_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/hot_chocolate_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/hot_chocolate_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/botania/models/item/mana_cookie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "botania:item/mana_cookie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/botania/models/item/mana_cookie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "botania:item/mana_cookie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/botania/models/item/mana_cookie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "botania:item/mana_cookie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/honeyed_apple_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/honeyed_apple_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/honeyed_apple_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/honeyed_apple_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/honeyed_apple_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/honeyed_apple_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/bacon_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/bacon_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/bacon_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/bacon_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/bacon_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/bacon_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/ham_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/ham_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/ham_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/ham_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/ham_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/ham_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/onion_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/onion_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/onion_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/onion_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/onion_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/onion_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/rice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/rice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/rice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/rice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/rice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/rice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/ad_soup_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/ad_soup_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/ad_soup_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/ad_soup_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/ad_soup_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/ad_soup_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/apple_pie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/apple_pie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/apple_pie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/apple_pie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/apple_pie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/apple_pie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/bat_wing_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/bat_wing_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/bat_wing_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/bat_wing_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/bat_wing_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/bat_wing_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/bee_pill_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/bee_pill_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/bee_pill_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/bee_pill_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/bee_pill_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/bee_pill_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/caramel_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/caramel_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/caramel_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/caramel_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/caramel_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/caramel_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/chocolate_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/chocolate_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/chocolate_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/chocolate_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/chocolate_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/chocolate_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/honey_gum_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/honey_gum_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/honey_gum_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/honey_gum_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/honey_gum_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/honey_gum_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/hot_stuff_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/hot_stuff_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/hot_stuff_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/hot_stuff_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/hot_stuff_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/hot_stuff_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/meat_pie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/meat_pie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/meat_pie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/meat_pie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/meat_pie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/meat_pie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/red_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/red_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/red_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/red_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/red_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/red_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/sea_salad_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/sea_salad_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/sea_salad_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/sea_salad_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/sea_salad_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/sea_salad_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/tolchonka_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/tolchonka_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/tolchonka_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/tolchonka_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/tolchonka_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/tolchonka_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/varenie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/varenie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/varenie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/varenie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/varenie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/varenie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/catfish_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/catfish_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/catfish_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/catfish_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/catfish_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/catfish_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/venison_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/venison_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/venison_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/venison_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/venison_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/venison_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/snowpig/models/item/frozen_ham_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "snowpig:item/frozen_ham_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/snowpig/models/item/frozen_ham_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "snowpig:item/frozen_ham_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/snowpig/models/item/frozen_ham_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "snowpig:item/frozen_ham_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | maven { 4 | name = 'Fabric' 5 | url = 'https://maven.fabricmc.net/' 6 | } 7 | gradlePluginPortal() 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/ominous_bottle_drinking_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/ominous_bottle_drinking_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/ominous_bottle_drinking_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/ominous_bottle_drinking_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/ominous_bottle_drinking_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/ominous_bottle_drinking_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/poisonous_potato_eating_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/poisonous_potato_eating_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/poisonous_potato_eating_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/poisonous_potato_eating_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/poisonous_potato_eating_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/poisonous_potato_eating_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/potion_overlay_drinking_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/potion_overlay_drinking_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/potion_overlay_drinking_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/potion_overlay_drinking_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/eatinganimationid/textures/item/potion_overlay_drinking_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theoness1/EatingAnimation/HEAD/src/main/resources/assets/eatinganimationid/textures/item/potion_overlay_drinking_2.png -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/end_fish_raw_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/end_fish_raw_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/end_fish_raw_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/end_fish_raw_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/end_fish_raw_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/end_fish_raw_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/botania/models/item/infinite_fruit_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "botania:item/infinite_fruit_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/botania/models/item/infinite_fruit_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "botania:item/infinite_fruit_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/botania/models/item/infinite_fruit_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "botania:item/infinite_fruit_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/builders_tea_drinking_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/builders_tea_drinking_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/builders_tea_drinking_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/builders_tea_drinking_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/builders_tea_drinking_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/builders_tea_drinking_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/expandeddelight/models/item/peanut_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "expandeddelight:item/peanut_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/expandeddelight/models/item/peanut_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "expandeddelight:item/peanut_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/expandeddelight/models/item/peanut_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "expandeddelight:item/peanut_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cabbage_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cabbage_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cabbage_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cabbage_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cabbage_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cabbage_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/tomato_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/tomato_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/tomato_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/tomato_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/tomato_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/tomato_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/apple_juice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/apple_juice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/apple_juice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/apple_juice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/apple_juice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/apple_juice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/awful_stew_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/awful_stew_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/awful_stew_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/awful_stew_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/awful_stew_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/awful_stew_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/baked_flesh_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/baked_flesh_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/baked_flesh_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/baked_flesh_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/baked_flesh_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/baked_flesh_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beef_salad_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beef_salad_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beef_salad_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beef_salad_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beef_salad_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beef_salad_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beet_bread_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beet_bread_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beet_bread_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beet_bread_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beet_bread_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beet_bread_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/black_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/black_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/black_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/black_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/black_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/black_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/blue_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/blue_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/blue_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/blue_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/blue_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/blue_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/brown_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/brown_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/brown_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/brown_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/brown_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/brown_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_pie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_pie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_pie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_pie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_pie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_pie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/cocoa_shake_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/cocoa_shake_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/cocoa_shake_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/cocoa_shake_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/cocoa_shake_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/cocoa_shake_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/cyan_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/cyan_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/cyan_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/cyan_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/cyan_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/cyan_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/fish_salad_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/fish_salad_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/fish_salad_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/fish_salad_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/fish_salad_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/fish_salad_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/gold_potato_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/gold_potato_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/gold_potato_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/gold_potato_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/gold_potato_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/gold_potato_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/gray_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/gray_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/gray_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/gray_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/gray_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/gray_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/green_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/green_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/green_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/green_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/green_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/green_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/lime_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/lime_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/lime_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/lime_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/lime_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/lime_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/melon_juice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/melon_juice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/melon_juice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/melon_juice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/melon_juice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/melon_juice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/milk_shake_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/milk_shake_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/milk_shake_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/milk_shake_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/milk_shake_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/milk_shake_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pink_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pink_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pink_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pink_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pink_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pink_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pork_salad_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pork_salad_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pork_salad_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pork_salad_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pork_salad_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pork_salad_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pumkin_soup_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pumkin_soup_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pumkin_soup_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pumkin_soup_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pumkin_soup_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pumkin_soup_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/raw_stride_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/raw_stride_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/raw_stride_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/raw_stride_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/raw_stride_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/raw_stride_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/white_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/white_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/white_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/white_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/white_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/white_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_bass_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_bass_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_bass_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_bass_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_bass_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_bass_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_duck_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_duck_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_duck_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_duck_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_duck_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_duck_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_egg_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_egg_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_egg_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_egg_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_egg_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_egg_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/lizard_tail_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/lizard_tail_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/lizard_tail_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/lizard_tail_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/lizard_tail_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/lizard_tail_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/nether_wart_coffee_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/nether_wart_coffee_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/nether_wart_coffee_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/nether_wart_coffee_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/nether_wart_coffee_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/nether_wart_coffee_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/sweet_berry_juice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/sweet_berry_juice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/sweet_berry_juice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/sweet_berry_juice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/adorn/models/item/sweet_berry_juice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "adorn:item/sweet_berry_juice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/amber_root_raw_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/amber_root_raw_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/amber_root_raw_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/amber_root_raw_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/amber_root_raw_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/amber_root_raw_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/blossom_berry_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/blossom_berry_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/blossom_berry_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/blossom_berry_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/blossom_berry_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/blossom_berry_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/end_fish_cooked_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/end_fish_cooked_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/end_fish_cooked_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/end_fish_cooked_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betterend/models/item/end_fish_cooked_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betterend:item/end_fish_cooked_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betternether/models/item/black_apple_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betternether:item/black_apple_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betternether/models/item/black_apple_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betternether:item/black_apple_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/betternether/models/item/black_apple_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "betternether:item/black_apple_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/bar_of_chocolate_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/bar_of_chocolate_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/bar_of_chocolate_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/bar_of_chocolate_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/create/models/item/bar_of_chocolate_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "create:item/bar_of_chocolate_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/expandeddelight/models/item/asparagus_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "expandeddelight:item/asparagus_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/expandeddelight/models/item/asparagus_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "expandeddelight:item/asparagus_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/expandeddelight/models/item/asparagus_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "expandeddelight:item/asparagus_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/beef_patty_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/beef_patty_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/beef_patty_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/beef_patty_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/beef_patty_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/beef_patty_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/beef_stew_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/beef_stew_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/beef_stew_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/beef_stew_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/beef_stew_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/beef_stew_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/bone_broth_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/bone_broth_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/bone_broth_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/bone_broth_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/bone_broth_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/bone_broth_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cake_slice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cake_slice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cake_slice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cake_slice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cake_slice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cake_slice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cod_roll_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cod_roll_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cod_roll_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cod_roll_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cod_roll_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cod_roll_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cod_slice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cod_slice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cod_slice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cod_slice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/cod_slice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/cod_slice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/dumplings_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/dumplings_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/dumplings_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/dumplings_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/dumplings_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/dumplings_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/fish_stew_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/fish_stew_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/fish_stew_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/fish_stew_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/fish_stew_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/fish_stew_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/fried_egg_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/fried_egg_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/fried_egg_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/fried_egg_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/fried_egg_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/fried_egg_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/fried_rice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/fried_rice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/fried_rice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/fried_rice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/fried_rice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/fried_rice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/hamburger_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/hamburger_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/hamburger_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/hamburger_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/hamburger_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/hamburger_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/hot_cocoa_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/hot_cocoa_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/hot_cocoa_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/hot_cocoa_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/hot_cocoa_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/hot_cocoa_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/kelp_roll_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/kelp_roll_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/kelp_roll_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/kelp_roll_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/kelp_roll_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/kelp_roll_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/pie_crust_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/pie_crust_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/pie_crust_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/pie_crust_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/pie_crust_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/pie_crust_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/raw_pasta_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/raw_pasta_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/raw_pasta_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/raw_pasta_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/raw_pasta_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/raw_pasta_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/smoked_ham_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/smoked_ham_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/smoked_ham_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/smoked_ham_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/farmersdelight/models/item/smoked_ham_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "farmersdelight:item/smoked_ham_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beef_sandwich_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beef_sandwich_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beef_sandwich_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beef_sandwich_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beef_sandwich_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beef_sandwich_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beetroot_juice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beetroot_juice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beetroot_juice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beetroot_juice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/beetroot_juice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/beetroot_juice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/berri_cookie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/berri_cookie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/berri_cookie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/berri_cookie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/berri_cookie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/berri_cookie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/berry_cookie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/berry_cookie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/berry_cookie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/berry_cookie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/berry_cookie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/berry_cookie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_bread_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_bread_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_bread_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_bread_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_bread_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_bread_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_cookie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_cookie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_cookie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_cookie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_cookie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_cookie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_juice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_juice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_juice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_juice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/carrot_juice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/carrot_juice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/chicken_salad_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/chicken_salad_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/chicken_salad_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/chicken_salad_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/chicken_salad_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/chicken_salad_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/cooked_stride_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/cooked_stride_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/cooked_stride_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/cooked_stride_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/cooked_stride_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/cooked_stride_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/fish_sandwich_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/fish_sandwich_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/fish_sandwich_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/fish_sandwich_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/fish_sandwich_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/fish_sandwich_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/glow_varenie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/glow_varenie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/glow_varenie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/glow_varenie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/glow_varenie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/glow_varenie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/gold_beetroot_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/gold_beetroot_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/gold_beetroot_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/gold_beetroot_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/gold_beetroot_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/gold_beetroot_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/golden_turnip_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/golden_turnip_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/golden_turnip_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/golden_turnip_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/golden_turnip_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/golden_turnip_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/honey_cookie_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/honey_cookie_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/honey_cookie_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/honey_cookie_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/honey_cookie_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/honey_cookie_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/lichen_bread_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/lichen_bread_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/lichen_bread_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/lichen_bread_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/lichen_bread_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/lichen_bread_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/magenta_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/magenta_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/magenta_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/magenta_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/magenta_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/magenta_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/medovik_slice_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/medovik_slice_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/medovik_slice_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/medovik_slice_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/medovik_slice_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/medovik_slice_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/milled_lichen_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/milled_lichen_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/milled_lichen_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/milled_lichen_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/milled_lichen_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/milled_lichen_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/mutton_salad_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/mutton_salad_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/mutton_salad_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/mutton_salad_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/mutton_salad_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/mutton_salad_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/orange_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/orange_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/orange_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/orange_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/orange_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/orange_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pork_sandwich_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pork_sandwich_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pork_sandwich_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pork_sandwich_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pork_sandwich_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pork_sandwich_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/potato_bread_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/potato_bread_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/potato_bread_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/potato_bread_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/potato_bread_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/potato_bread_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pumpkin_soup_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pumpkin_soup_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pumpkin_soup_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pumpkin_soup_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/pumpkin_soup_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/pumpkin_soup_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/purple_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/purple_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/purple_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/purple_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/purple_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/purple_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/rabbit_salad_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/rabbit_salad_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/rabbit_salad_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/rabbit_salad_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/rabbit_salad_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/rabbit_salad_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/raw_frog_leg_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/raw_frog_leg_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/raw_frog_leg_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/raw_frog_leg_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/raw_frog_leg_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/raw_frog_leg_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/red_sus_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/red_sus_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/red_sus_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/red_sus_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/red_sus_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/red_sus_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/salmon_salad_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/salmon_salad_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/salmon_salad_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/salmon_salad_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/salmon_salad_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/salmon_salad_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/yellow_candy_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/yellow_candy_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/yellow_candy_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/yellow_candy_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/foodplusid/models/item/yellow_candy_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodplusid:item/yellow_candy_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/hybrid-aquatic/models/item/raw_crab_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "hybrid-aquatic:item/raw_crab_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/hybrid-aquatic/models/item/raw_crab_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "hybrid-aquatic:item/raw_crab_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/hybrid-aquatic/models/item/raw_crab_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "hybrid-aquatic:item/raw_crab_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_catfish_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_catfish_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_catfish_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_catfish_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_catfish_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_catfish_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_venison_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_venison_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_venison_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_venison_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/naturalist/models/item/cooked_venison_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "naturalist:item/cooked_venison_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/snowpig/models/item/frozen_porkchop_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "snowpig:item/frozen_porkchop_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/snowpig/models/item/frozen_porkchop_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "snowpig:item/frozen_porkchop_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/snowpig/models/item/frozen_porkchop_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "snowpig:item/frozen_porkchop_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/the_bumblezone/models/item/bee_bread_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "the_bumblezone:item/bee_bread_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/the_bumblezone/models/item/bee_bread_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "the_bumblezone:item/bee_bread_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/the_bumblezone/models/item/bee_bread_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "the_bumblezone:item/bee_bread_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/the_bumblezone/models/item/bee_soup_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "the_bumblezone:item/bee_soup_eating_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/the_bumblezone/models/item/bee_soup_eating_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "the_bumblezone:item/bee_soup_eating_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/the_bumblezone/models/item/bee_soup_eating_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "the_bumblezone:item/bee_soup_eating_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/supporteatinganimation/assets/winterly/models/item/blue_candy_cane_eating_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "winterly:item/blue_candy_cane_eating_0" 5 | } 6 | } --------------------------------------------------------------------------------