├── src └── main │ ├── resources │ ├── assets │ │ └── foodpower │ │ │ ├── models │ │ │ ├── item │ │ │ │ ├── oven.json │ │ │ │ ├── juicer.json │ │ │ │ ├── market.json │ │ │ │ ├── shaker.json │ │ │ │ ├── stockpot.json │ │ │ │ ├── frying_pan.json │ │ │ │ ├── kiwi_leave.json │ │ │ │ ├── lemon_leave.json │ │ │ │ ├── mango_leave.json │ │ │ │ ├── electric_pot.json │ │ │ │ ├── orange_leave.json │ │ │ │ ├── papaya_leave.json │ │ │ │ ├── recipe_table.json │ │ │ │ ├── chopping_board.json │ │ │ │ ├── electric_stove.json │ │ │ │ ├── universal_station.json │ │ │ │ ├── revolving_cake_stand.json │ │ │ │ ├── corn.json │ │ │ │ ├── kiwi.json │ │ │ │ ├── mint.json │ │ │ │ ├── oil.json │ │ │ │ ├── rice.json │ │ │ │ ├── salt.json │ │ │ │ ├── cabbage.json │ │ │ │ ├── cheese.json │ │ │ │ ├── chili.json │ │ │ │ ├── cream.json │ │ │ │ ├── dough.json │ │ │ │ ├── flour.json │ │ │ │ ├── ice.json │ │ │ │ ├── ketchup.json │ │ │ │ ├── lemon.json │ │ │ │ ├── mango.json │ │ │ │ ├── papaya.json │ │ │ │ ├── sauce.json │ │ │ │ ├── spinach.json │ │ │ │ ├── tomato.json │ │ │ │ ├── venom.json │ │ │ │ ├── batter.json │ │ │ │ ├── corn_seed.json │ │ │ │ ├── mint_seed.json │ │ │ │ ├── noodle.json │ │ │ │ ├── rice_seed.json │ │ │ │ ├── toast.json │ │ │ │ ├── cabbage_seed.json │ │ │ │ ├── cake_base.json │ │ │ │ ├── chef_card.json │ │ │ │ ├── chili_seed.json │ │ │ │ ├── dirty_food.json │ │ │ │ ├── raw_juice.json │ │ │ │ ├── raw_pizza.json │ │ │ │ ├── spinach_seed.json │ │ │ │ ├── tomato_seed.json │ │ │ │ ├── butter.json │ │ │ │ ├── cooked_rice.json │ │ │ │ ├── flat_dough.json │ │ │ │ ├── mixed_juice.json │ │ │ │ ├── orange.json │ │ │ │ ├── papaya_seed.json │ │ │ │ ├── refrigerator.json │ │ │ │ ├── toast_slice.json │ │ │ │ ├── cooked_pizza.json │ │ │ │ ├── ice_cream_base.json │ │ │ │ ├── fermented_endereye.json │ │ │ │ ├── kiwi_sapling.json │ │ │ │ ├── recipe_scroll_gold.json │ │ │ │ ├── recipe_scroll_iron.json │ │ │ │ ├── recipe_scroll_wood.json │ │ │ │ ├── lemon_sapling.json │ │ │ │ ├── mango_sapling.json │ │ │ │ ├── orange_sapling.json │ │ │ │ ├── papaya_sapling.json │ │ │ │ ├── recipe_scroll_diamond.json │ │ │ │ ├── tutorial_book.json │ │ │ │ └── recipe_scroll.json │ │ │ └── block │ │ │ │ ├── kiwi_leave_model.json │ │ │ │ ├── corn_crop_stage0.json │ │ │ │ ├── corn_crop_stage1.json │ │ │ │ ├── corn_crop_stage2.json │ │ │ │ ├── corn_crop_stage3.json │ │ │ │ ├── kiwi_sapling_model.json │ │ │ │ ├── lemon_leave_model.json │ │ │ │ ├── mango_leave_model.json │ │ │ │ ├── mint_crop_stage0.json │ │ │ │ ├── mint_crop_stage1.json │ │ │ │ ├── mint_crop_stage2.json │ │ │ │ ├── mint_crop_stage3.json │ │ │ │ ├── orange_leave_model.json │ │ │ │ ├── papaya_leave_model.json │ │ │ │ ├── rice_crop_stage0.json │ │ │ │ ├── rice_crop_stage1.json │ │ │ │ ├── rice_crop_stage2.json │ │ │ │ ├── rice_crop_stage3.json │ │ │ │ ├── chili_crop_stage0.json │ │ │ │ ├── chili_crop_stage1.json │ │ │ │ ├── chili_crop_stage2.json │ │ │ │ ├── chili_crop_stage3.json │ │ │ │ ├── lemon_sapling_model.json │ │ │ │ ├── mango_sapling_model.json │ │ │ │ ├── orange_sapling_model.json │ │ │ │ ├── papaya_sapling_model.json │ │ │ │ ├── tomato_crop_stage0.json │ │ │ │ ├── tomato_crop_stage1.json │ │ │ │ ├── tomato_crop_stage2.json │ │ │ │ ├── tomato_crop_stage3.json │ │ │ │ ├── cabbage_crop_stage0.json │ │ │ │ ├── cabbage_crop_stage1.json │ │ │ │ ├── cabbage_crop_stage2.json │ │ │ │ ├── cabbage_crop_stage3.json │ │ │ │ ├── spinach_crop_stage0.json │ │ │ │ ├── spinach_crop_stage1.json │ │ │ │ ├── spinach_crop_stage2.json │ │ │ │ ├── spinach_crop_stage3.json │ │ │ │ ├── cheese_cobweb_model.json │ │ │ │ ├── oven_model.json │ │ │ │ ├── market_model.json │ │ │ │ ├── chopping_board_model.json │ │ │ │ ├── universal_station_model.json │ │ │ │ ├── shaker_model.json │ │ │ │ └── revolving_cake_stand_model.json │ │ │ ├── blockstates │ │ │ ├── kiwi_leave.json │ │ │ ├── cheese_cobweb.json │ │ │ ├── lemon_leave.json │ │ │ ├── mango_leave.json │ │ │ ├── orange_leave.json │ │ │ ├── papaya_leave.json │ │ │ ├── kiwi_sapling.json │ │ │ ├── lemon_sapling.json │ │ │ ├── mango_sapling.json │ │ │ ├── orange_sapling.json │ │ │ ├── papaya_sapling.json │ │ │ ├── oven.json │ │ │ ├── juicer.json │ │ │ ├── market.json │ │ │ ├── shaker.json │ │ │ ├── stockpot.json │ │ │ ├── frying_pan.json │ │ │ ├── electric_pot.json │ │ │ ├── recipe_table.json │ │ │ ├── refrigerator.json │ │ │ ├── chopping_board.json │ │ │ ├── electric_stove.json │ │ │ ├── universal_station.json │ │ │ ├── revolving_cake_stand.json │ │ │ ├── corn_crop.json │ │ │ ├── mint_crop.json │ │ │ ├── rice_crop.json │ │ │ ├── chili_crop.json │ │ │ ├── tomato_crop.json │ │ │ ├── cabbage_crop.json │ │ │ └── spinach_crop.json │ │ │ └── textures │ │ │ ├── cooked │ │ │ ├── ice.png │ │ │ ├── toast.png │ │ │ ├── batter.png │ │ │ ├── noodle.png │ │ │ ├── cake_base.png │ │ │ ├── flat_dough.png │ │ │ ├── raw_juice.png │ │ │ ├── raw_pizza.png │ │ │ ├── cooked_pizza.png │ │ │ ├── cooked_rice.png │ │ │ ├── mixed_juice.png │ │ │ ├── toast_slice.png │ │ │ └── ice_cream_base.png │ │ │ ├── items │ │ │ ├── corn.png │ │ │ ├── kiwi.png │ │ │ ├── mint.png │ │ │ ├── oil.png │ │ │ ├── rice.png │ │ │ ├── salt.png │ │ │ ├── butter.png │ │ │ ├── cheese.png │ │ │ ├── chili.png │ │ │ ├── cream.png │ │ │ ├── dough.png │ │ │ ├── flour.png │ │ │ ├── lemon.png │ │ │ ├── mango.png │ │ │ ├── orange.png │ │ │ ├── papaya.png │ │ │ ├── sauce.png │ │ │ ├── tomato.png │ │ │ ├── venom.png │ │ │ ├── cabbage.png │ │ │ ├── chef_card.png │ │ │ ├── corn_seed.png │ │ │ ├── ketchup.png │ │ │ ├── mint_seed.png │ │ │ ├── rice_seed.png │ │ │ ├── spinach.png │ │ │ ├── chili_seed.png │ │ │ ├── dirty_food.png │ │ │ ├── kiwi_leave.png │ │ │ ├── lemon_leave.png │ │ │ ├── mango_leave.png │ │ │ ├── papaya_seed.png │ │ │ ├── tomato_seed.png │ │ │ ├── cabbage_seed.png │ │ │ ├── kiwi_sapling.png │ │ │ ├── lemon_sapling.png │ │ │ ├── mango_sapling.png │ │ │ ├── orange_leave.png │ │ │ ├── orange_sapling.png │ │ │ ├── papaya_leave.png │ │ │ ├── papaya_sapling.png │ │ │ ├── refrigerator.png │ │ │ ├── spinach_seed.png │ │ │ ├── tutorial_book.png │ │ │ ├── fermented_endereye.png │ │ │ ├── recipe_scroll_gold.png │ │ │ ├── recipe_scroll_iron.png │ │ │ ├── recipe_scroll_wood.png │ │ │ └── recipe_scroll_diamond.png │ │ │ ├── blocks │ │ │ ├── oven_top.png │ │ │ ├── frying_pan.png │ │ │ ├── juicer_top.png │ │ │ ├── kiwi_leave.png │ │ │ ├── market_top.png │ │ │ ├── oven_back.png │ │ │ ├── oven_front.png │ │ │ ├── oven_side.png │ │ │ ├── shaker_top.png │ │ │ ├── cheese_cobweb.png │ │ │ ├── juicer_bottom.png │ │ │ ├── kiwi_sapling.png │ │ │ ├── lemon_leave.png │ │ │ ├── lemon_sapling.png │ │ │ ├── mango_leave.png │ │ │ ├── mango_sapling.png │ │ │ ├── market_side.png │ │ │ ├── orange_leave.png │ │ │ ├── oven_bottom.png │ │ │ ├── papaya_leave.png │ │ │ ├── shaker_bottom.png │ │ │ ├── shaker_side.png │ │ │ ├── stockpot_side.png │ │ │ ├── juicer_topside.png │ │ │ ├── orange_sapling.png │ │ │ ├── papaya_sapling.png │ │ │ ├── chili_crop_stage0.png │ │ │ ├── chili_crop_stage1.png │ │ │ ├── chili_crop_stage2.png │ │ │ ├── chili_crop_stage3.png │ │ │ ├── chopping_board_top.png │ │ │ ├── corn_crop_stage0.png │ │ │ ├── corn_crop_stage1.png │ │ │ ├── corn_crop_stage2.png │ │ │ ├── corn_crop_stage3.png │ │ │ ├── electric_pot_back.png │ │ │ ├── electric_pot_front.png │ │ │ ├── electric_pot_side.png │ │ │ ├── electric_pot_top.png │ │ │ ├── electric_stove_top.png │ │ │ ├── juicer_bottomfront.png │ │ │ ├── juicer_bottomside.png │ │ │ ├── mint_crop_stage0.png │ │ │ ├── mint_crop_stage1.png │ │ │ ├── mint_crop_stage2.png │ │ │ ├── mint_crop_stage3.png │ │ │ ├── recipe_table_side.png │ │ │ ├── recipe_table_top.png │ │ │ ├── refrigerator_front.png │ │ │ ├── refrigerator_side.png │ │ │ ├── refrigerator_top.png │ │ │ ├── rice_crop_stage0.png │ │ │ ├── rice_crop_stage1.png │ │ │ ├── rice_crop_stage2.png │ │ │ ├── rice_crop_stage3.png │ │ │ ├── stockpot_topbottom.png │ │ │ ├── tomato_crop_stage0.png │ │ │ ├── tomato_crop_stage1.png │ │ │ ├── tomato_crop_stage2.png │ │ │ ├── tomato_crop_stage3.png │ │ │ ├── cabbage_crop_stage0.png │ │ │ ├── cabbage_crop_stage1.png │ │ │ ├── cabbage_crop_stage2.png │ │ │ ├── cabbage_crop_stage3.png │ │ │ ├── chopping_board_side.png │ │ │ ├── electric_pot_bottom.png │ │ │ ├── electric_stove_back.png │ │ │ ├── electric_stove_front.png │ │ │ ├── electric_stove_side.png │ │ │ ├── refrigerator_bottom.png │ │ │ ├── refrigerator_topback.png │ │ │ ├── spinach_crop_stage0.png │ │ │ ├── spinach_crop_stage1.png │ │ │ ├── spinach_crop_stage2.png │ │ │ ├── spinach_crop_stage3.png │ │ │ ├── electric_stove_bottom.png │ │ │ ├── refrigerator_bottomback.png │ │ │ ├── universal_station_side.png │ │ │ ├── universal_station_top.png │ │ │ ├── revolving_cake_stand_side.png │ │ │ └── revolving_cake_stand_top.png │ │ │ ├── entity │ │ │ ├── sour_boss.png │ │ │ └── sweet_boss.png │ │ │ ├── gui │ │ │ └── container │ │ │ │ ├── button.png │ │ │ │ ├── juicer.png │ │ │ │ ├── market.png │ │ │ │ ├── oven.png │ │ │ │ ├── shaker.png │ │ │ │ ├── default.png │ │ │ │ ├── stockpot.png │ │ │ │ ├── ui_kits.png │ │ │ │ ├── chef_card.png │ │ │ │ ├── frying_pan.png │ │ │ │ ├── electric_pot.png │ │ │ │ ├── recipe_table.png │ │ │ │ ├── refrigerator.png │ │ │ │ ├── tutorial_book.png │ │ │ │ ├── chopping_board.png │ │ │ │ ├── electric_stove.png │ │ │ │ ├── recipe_scroll_gold.png │ │ │ │ ├── recipe_scroll_iron.png │ │ │ │ ├── recipe_scroll_wood.png │ │ │ │ ├── universal_station.png │ │ │ │ ├── recipe_scroll_diamond.png │ │ │ │ └── revolving_cake_stand.png │ │ │ ├── meals │ │ │ ├── cake │ │ │ │ ├── cake_base.png │ │ │ │ ├── cake_kiwi.png │ │ │ │ ├── cake_mint.png │ │ │ │ ├── cake_apple.png │ │ │ │ ├── cake_lemon.png │ │ │ │ ├── cake_mango.png │ │ │ │ ├── cake_melon.png │ │ │ │ ├── cake_orange.png │ │ │ │ ├── cake_papaya.png │ │ │ │ ├── cake_cocoa_beans.png │ │ │ │ ├── cake_magma_cream.png │ │ │ │ ├── cake_chorus_fruit.png │ │ │ │ ├── cake_sweet_berries.png │ │ │ │ └── cake_fermented_endereye.png │ │ │ ├── juice │ │ │ │ ├── juice_base.png │ │ │ │ ├── juice_apple_juice.png │ │ │ │ ├── juice_apple_slice.png │ │ │ │ ├── juice_kiwi_juice.png │ │ │ │ ├── juice_kiwi_slice.png │ │ │ │ ├── juice_lemon_juice.png │ │ │ │ ├── juice_lemon_slice.png │ │ │ │ ├── juice_mango_juice.png │ │ │ │ ├── juice_mango_slice.png │ │ │ │ ├── juice_melon_juice.png │ │ │ │ ├── juice_melon_slice.png │ │ │ │ ├── juice_orange_juice.png │ │ │ │ ├── juice_orange_slice.png │ │ │ │ ├── juice_papaya_juice.png │ │ │ │ ├── juice_papaya_slice.png │ │ │ │ ├── juice_chorus_fruit_juice.png │ │ │ │ └── juice_chorus_fruit_slice.png │ │ │ ├── pizza │ │ │ │ ├── pizza_base.png │ │ │ │ ├── pizza_beef.png │ │ │ │ ├── pizza_corn.png │ │ │ │ ├── pizza_kelp.png │ │ │ │ ├── pizza_pork.png │ │ │ │ ├── pizza_cabbage.png │ │ │ │ ├── pizza_carrot.png │ │ │ │ ├── pizza_chicken.png │ │ │ │ ├── pizza_chili.png │ │ │ │ ├── pizza_mutton.png │ │ │ │ ├── pizza_potato.png │ │ │ │ ├── pizza_pumpkin.png │ │ │ │ ├── pizza_rabbit.png │ │ │ │ ├── pizza_spinach.png │ │ │ │ ├── pizza_tomato.png │ │ │ │ ├── pizza_beetroot.png │ │ │ │ ├── pizza_nether_wart.png │ │ │ │ ├── pizza_red_mushroom.png │ │ │ │ └── pizza_brown_mushroom.png │ │ │ ├── salad │ │ │ │ ├── salad_base.png │ │ │ │ ├── salad_beef.png │ │ │ │ ├── salad_corn.png │ │ │ │ ├── salad_kelp.png │ │ │ │ ├── salad_cabbage.png │ │ │ │ ├── salad_carrot.png │ │ │ │ ├── salad_chicken.png │ │ │ │ ├── salad_chili.png │ │ │ │ ├── salad_honey.png │ │ │ │ ├── salad_ketchup.png │ │ │ │ ├── salad_mutton.png │ │ │ │ ├── salad_potato.png │ │ │ │ ├── salad_pumpkin.png │ │ │ │ ├── salad_rabbit.png │ │ │ │ ├── salad_sauce.png │ │ │ │ ├── salad_spinach.png │ │ │ │ ├── salad_tomato.png │ │ │ │ ├── salad_beetroot.png │ │ │ │ ├── salad_porkchop.png │ │ │ │ ├── salad_ghast_tear.png │ │ │ │ ├── salad_nether_wart.png │ │ │ │ ├── salad_red_mushroom.png │ │ │ │ ├── salad_brown_mushroom.png │ │ │ │ ├── salad_dragon_breath.png │ │ │ │ └── salad_experience_bottle.png │ │ │ ├── ice_cream │ │ │ │ ├── ice_cream_base.png │ │ │ │ ├── ice_cream_kiwi.png │ │ │ │ ├── ice_cream_mint.png │ │ │ │ ├── ice_cream_apple.png │ │ │ │ ├── ice_cream_lemon.png │ │ │ │ ├── ice_cream_mango.png │ │ │ │ ├── ice_cream_melon.png │ │ │ │ ├── ice_cream_orange.png │ │ │ │ ├── ice_cream_papaya.png │ │ │ │ ├── ice_cream_cocoa_beans.png │ │ │ │ ├── ice_cream_magma_cream.png │ │ │ │ ├── ice_cream_chorus_fruit.png │ │ │ │ ├── ice_cream_sweet_berries.png │ │ │ │ └── ice_cream_fermented_endereye.png │ │ │ ├── sandwich │ │ │ │ ├── sandwich_apple.png │ │ │ │ ├── sandwich_base.png │ │ │ │ ├── sandwich_beef.png │ │ │ │ ├── sandwich_carrot.png │ │ │ │ ├── sandwich_chili.png │ │ │ │ ├── sandwich_corn.png │ │ │ │ ├── sandwich_kelp.png │ │ │ │ ├── sandwich_kiwi.png │ │ │ │ ├── sandwich_lemon.png │ │ │ │ ├── sandwich_mango.png │ │ │ │ ├── sandwich_melon.png │ │ │ │ ├── sandwich_mutton.png │ │ │ │ ├── sandwich_orange.png │ │ │ │ ├── sandwich_papaya.png │ │ │ │ ├── sandwich_pork.png │ │ │ │ ├── sandwich_potato.png │ │ │ │ ├── sandwich_rabbit.png │ │ │ │ ├── sandwich_tomato.png │ │ │ │ ├── sandwich_beetroot.png │ │ │ │ ├── sandwich_cabbage.png │ │ │ │ ├── sandwich_chicken.png │ │ │ │ ├── sandwich_pumpkin.png │ │ │ │ ├── sandwich_spinach.png │ │ │ │ ├── sandwich_nether_wart.png │ │ │ │ ├── sandwich_chorus_fruit.png │ │ │ │ ├── sandwich_red_mushroom.png │ │ │ │ └── sandwich_brown_mushroom.png │ │ │ ├── fried_rice │ │ │ │ ├── fried_rice_base.png │ │ │ │ ├── fried_rice_beef.png │ │ │ │ ├── fried_rice_corn.png │ │ │ │ ├── fried_rice_kelp.png │ │ │ │ ├── fried_rice_pork.png │ │ │ │ ├── fried_rice_cabbage.png │ │ │ │ ├── fried_rice_carrot.png │ │ │ │ ├── fried_rice_chicken.png │ │ │ │ ├── fried_rice_chili.png │ │ │ │ ├── fried_rice_honey.png │ │ │ │ ├── fried_rice_ketchup.png │ │ │ │ ├── fried_rice_mutton.png │ │ │ │ ├── fried_rice_potato.png │ │ │ │ ├── fried_rice_pumpkin.png │ │ │ │ ├── fried_rice_rabbit.png │ │ │ │ ├── fried_rice_sauce.png │ │ │ │ ├── fried_rice_spinach.png │ │ │ │ ├── fried_rice_tomato.png │ │ │ │ ├── fried_rice_beetroot.png │ │ │ │ ├── fried_rice_ghast_tear.png │ │ │ │ ├── fried_rice_nether_wart.png │ │ │ │ ├── fried_rice_red_mushroom.png │ │ │ │ ├── fried_rice_brown_mushroom.png │ │ │ │ ├── fried_rice_dragon_breath.png │ │ │ │ └── fried_rice_experience_bottle.png │ │ │ ├── honey_toast │ │ │ │ ├── honey_toast_apple.png │ │ │ │ ├── honey_toast_base.png │ │ │ │ ├── honey_toast_kiwi.png │ │ │ │ ├── honey_toast_lemon.png │ │ │ │ ├── honey_toast_mango.png │ │ │ │ ├── honey_toast_melon.png │ │ │ │ ├── honey_toast_mint.png │ │ │ │ ├── honey_toast_orange.png │ │ │ │ ├── honey_toast_papaya.png │ │ │ │ ├── honey_toast_chorus_fruit.png │ │ │ │ ├── honey_toast_cocoa_beans.png │ │ │ │ ├── honey_toast_magma_cream.png │ │ │ │ ├── honey_toast_sweet_berries.png │ │ │ │ └── honey_toast_fermented_endereye.png │ │ │ └── noodle_soup │ │ │ │ ├── noodle_soup_base.png │ │ │ │ ├── noodle_soup_beef.png │ │ │ │ ├── noodle_soup_chili.png │ │ │ │ ├── noodle_soup_corn.png │ │ │ │ ├── noodle_soup_kelp.png │ │ │ │ ├── noodle_soup_pork.png │ │ │ │ ├── noodle_soup_cabbage.png │ │ │ │ ├── noodle_soup_carrot.png │ │ │ │ ├── noodle_soup_chicken.png │ │ │ │ ├── noodle_soup_mutton.png │ │ │ │ ├── noodle_soup_potato.png │ │ │ │ ├── noodle_soup_pumpkin.png │ │ │ │ ├── noodle_soup_rabbit.png │ │ │ │ ├── noodle_soup_spinach.png │ │ │ │ ├── noodle_soup_tomato.png │ │ │ │ ├── noodle_soup_beetroot.png │ │ │ │ ├── noodle_soup_nether_wart.png │ │ │ │ ├── noodle_soup_red_mushroom.png │ │ │ │ └── noodle_soup_brown_mushroom.png │ │ │ ├── mob_effect │ │ │ ├── egg_power.png │ │ │ ├── oil_power.png │ │ │ ├── apple_power.png │ │ │ ├── beef_power.png │ │ │ ├── chili_power.png │ │ │ ├── corn_power.png │ │ │ ├── melon_power.png │ │ │ ├── mint_power.png │ │ │ ├── rice_power.png │ │ │ ├── salt_power.png │ │ │ ├── sauce_power.png │ │ │ ├── beetroot_power.png │ │ │ ├── cabbage_power.png │ │ │ ├── carrot_power.png │ │ │ ├── cheese_power.png │ │ │ ├── chicken_power.png │ │ │ ├── ketchup_power.png │ │ │ ├── mutton_power.png │ │ │ ├── porkchop_power.png │ │ │ ├── potato_power.png │ │ │ ├── pumpkin_power.png │ │ │ ├── spinach_power.png │ │ │ ├── chorus_fruit_power.png │ │ │ ├── cocoa_beans_power.png │ │ │ ├── dragon_breath_power.png │ │ │ ├── honey_bottle_power.png │ │ │ ├── milk_bucket_power.png │ │ │ ├── red_mushroom_power.png │ │ │ ├── sweet_berries_power.png │ │ │ ├── water_bucket_power.png │ │ │ ├── brown_mushroom_power.png │ │ │ ├── experience_bottle_power.png │ │ │ └── fermented_endereye_power.png │ │ │ └── special │ │ │ └── cream_shield.png │ ├── pack.mcmeta │ ├── data │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ └── foodpower │ │ │ ├── recipes │ │ │ ├── ingredients │ │ │ │ ├── butter.json │ │ │ │ ├── cream.json │ │ │ │ ├── flour.json │ │ │ │ ├── cheese.json │ │ │ │ ├── dough.json │ │ │ │ ├── ketchup.json │ │ │ │ ├── oil.json │ │ │ │ ├── sauce.json │ │ │ │ ├── salt.json │ │ │ │ └── fermented_endereye.json │ │ │ ├── other │ │ │ │ ├── chef_card.json │ │ │ │ ├── tutorial_book.json │ │ │ │ ├── recipe_scroll.json │ │ │ │ ├── market.json │ │ │ │ └── recipe_table.json │ │ │ └── kitchenappliances │ │ │ │ ├── frying_pan.json │ │ │ │ ├── chopping_board.json │ │ │ │ ├── refrigerator.json │ │ │ │ ├── stockpot.json │ │ │ │ ├── electric_pot.json │ │ │ │ ├── juicer.json │ │ │ │ ├── shaker.json │ │ │ │ ├── revolving_cake_stand.json │ │ │ │ ├── electric_stove.json │ │ │ │ ├── universal_station.json │ │ │ │ └── oven.json │ │ │ ├── loot_modifiers │ │ │ ├── apple_effect.json │ │ │ ├── cabbage_effect.json │ │ │ └── dragon_breath_effect.json │ │ │ └── loot_tables │ │ │ └── blocks │ │ │ ├── kiwi_leave.json │ │ │ ├── lemon_leave.json │ │ │ ├── mango_leave.json │ │ │ ├── orange_leave.json │ │ │ └── papaya_leave.json │ └── META-INF │ │ └── mods.toml │ └── java │ └── com │ └── github │ └── immortalmice │ └── foodpower │ ├── specialclass │ ├── DirtyFood.java │ └── CreamShield.java │ ├── container │ └── tutorialbook │ │ └── page │ │ ├── BossesPage.java │ │ ├── PatternsPage.java │ │ └── IPage.java │ ├── boss │ └── entities │ │ ├── EnderBoss.java │ │ ├── SaltyBoss.java │ │ ├── BitterBoss.java │ │ └── NetherBoss.java │ ├── handlers │ └── CommandHandler.java │ ├── baseclass │ ├── ItemFoodBase.java │ └── ItemBase.java │ ├── crop │ ├── CropSeed.java │ └── CropBlock.java │ ├── util │ ├── Position2D.java │ └── ItemStackNBT.java │ ├── lists │ └── FoodTypes.java │ ├── tree │ ├── TreeSaplingBush.java │ └── TreeLeave.java │ ├── capability │ └── interfaces │ │ ├── IFPFlavorExpCapability.java │ │ └── IFPPatternExpCapability.java │ └── cooking │ └── ICookingElement.java ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle.properties └── .gitignore /src/main/resources/assets/foodpower/models/item/oven.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/oven_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/juicer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/juicer_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/market.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/market_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/shaker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/shaker_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/stockpot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/stockpot_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/frying_pan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/frying_pan_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/kiwi_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/kiwi_leave_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/lemon_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/lemon_leave_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/mango_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/mango_leave_model" 3 | } -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/electric_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/electric_pot_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/orange_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/orange_leave_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/papaya_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/papaya_leave_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/recipe_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/recipe_table_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/chopping_board.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/chopping_board_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/electric_stove.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/electric_stove_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/universal_station.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/universal_station_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/revolving_cake_stand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:block/revolving_cake_stand_model" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/kiwi_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": {"model": "foodpower:block/kiwi_leave_model"} 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Food Power Resource", 4 | "pack_format": 5 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/cheese_cobweb.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": {"model": "foodpower:block/cheese_cobweb_model"} 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/lemon_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": {"model": "foodpower:block/lemon_leave_model"} 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/mango_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": {"model": "foodpower:block/mango_leave_model"} 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/orange_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": {"model": "foodpower:block/orange_leave_model"} 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/papaya_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": {"model": "foodpower:block/papaya_leave_model"} 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/corn.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/corn" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/kiwi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/kiwi" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/mint.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/mint" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/oil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/rice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/salt" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/cabbage.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/cabbage" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/cheese" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/chili.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/chili" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/cream" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/dough" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/flour.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/flour" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/ketchup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/ketchup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/lemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/lemon" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/mango.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/mango" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/papaya.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/papaya" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/sauce.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/sauce" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/spinach.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/spinach" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/tomato.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/tomato" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/venom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/venom" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/batter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/batter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/corn_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/corn_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/mint_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/mint_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/noodle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/noodle" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/rice_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/rice_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/toast.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/toast" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/kiwi_leave_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "foodpower:blocks/kiwi_leave" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/cabbage_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/cabbage_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/cake_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/cake_base" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/chef_card.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/chef_card" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/chili_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/chili_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/dirty_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/dirty_food" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/raw_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/raw_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/raw_pizza.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/raw_pizza" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/spinach_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/spinach_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/tomato_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/tomato_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/ice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/corn.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/kiwi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/kiwi.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/mint.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/oil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/oil.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/salt.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/corn_crop_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/corn_crop_stage0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/corn_crop_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/corn_crop_stage1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/corn_crop_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/corn_crop_stage2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/corn_crop_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/corn_crop_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/kiwi_sapling_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "foodpower:blocks/kiwi_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/lemon_leave_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "foodpower:blocks/lemon_leave" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/mango_leave_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "foodpower:blocks/mango_leave" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/mint_crop_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/mint_crop_stage0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/mint_crop_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/mint_crop_stage1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/mint_crop_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/mint_crop_stage2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/mint_crop_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/mint_crop_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/orange_leave_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "foodpower:blocks/orange_leave" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/papaya_leave_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "foodpower:blocks/papaya_leave" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/rice_crop_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/rice_crop_stage0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/rice_crop_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/rice_crop_stage1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/rice_crop_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/rice_crop_stage2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/rice_crop_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/rice_crop_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/butter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/butter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/cooked_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/cooked_rice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/flat_dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/flat_dough" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/mixed_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/mixed_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/orange" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/papaya_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/papaya_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/refrigerator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/refrigerator" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/toast_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/toast_slice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/toast.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/butter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/butter.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/cheese.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/chili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/chili.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/cream.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/dough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/dough.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/flour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/flour.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/lemon.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/mango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/mango.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/papaya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/papaya.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/sauce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/sauce.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/tomato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/venom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/venom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/chili_crop_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/chili_crop_stage0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/chili_crop_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/chili_crop_stage1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/chili_crop_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/chili_crop_stage2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/chili_crop_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/chili_crop_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/lemon_sapling_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "foodpower:blocks/lemon_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/mango_sapling_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "foodpower:blocks/mango_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/orange_sapling_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "foodpower:blocks/orange_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/papaya_sapling_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "foodpower:blocks/papaya_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/tomato_crop_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/tomato_crop_stage0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/tomato_crop_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/tomato_crop_stage1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/tomato_crop_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/tomato_crop_stage2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/tomato_crop_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/tomato_crop_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/cooked_pizza.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/cooked_pizza" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/ice_cream_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:cooked/ice_cream_base" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/oven_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/oven_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/batter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/batter.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/noodle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/noodle.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/cabbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/cabbage.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/chef_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/chef_card.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/corn_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/corn_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/ketchup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/ketchup.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/mint_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/mint_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/rice_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/rice_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/spinach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/spinach.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/cabbage_crop_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/cabbage_crop_stage0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/cabbage_crop_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/cabbage_crop_stage1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/cabbage_crop_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/cabbage_crop_stage2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/cabbage_crop_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/cabbage_crop_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/spinach_crop_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/spinach_crop_stage0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/spinach_crop_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/spinach_crop_stage1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/spinach_crop_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/spinach_crop_stage2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/spinach_crop_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "foodpower:blocks/spinach_crop_stage3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/fermented_endereye.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/fermented_endereye" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/kiwi_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/kiwi_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/recipe_scroll_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/recipe_scroll_gold" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/recipe_scroll_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/recipe_scroll_iron" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/recipe_scroll_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/recipe_scroll_wood" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/frying_pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/frying_pan.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/juicer_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/juicer_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/kiwi_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/kiwi_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/market_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/market_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/oven_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/oven_back.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/oven_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/oven_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/oven_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/oven_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/shaker_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/shaker_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/cake_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/cake_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/flat_dough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/flat_dough.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/raw_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/raw_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/raw_pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/raw_pizza.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/entity/sour_boss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/entity/sour_boss.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/entity/sweet_boss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/entity/sweet_boss.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/chili_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/chili_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/dirty_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/dirty_food.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/kiwi_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/kiwi_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/lemon_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/lemon_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/mango_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/mango_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/papaya_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/papaya_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/tomato_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/tomato_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/lemon_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/lemon_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/mango_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/mango_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/orange_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/orange_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/papaya_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/papaya_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/recipe_scroll_diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/recipe_scroll_diamond" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/cheese_cobweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/cheese_cobweb.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/juicer_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/juicer_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/kiwi_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/kiwi_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/lemon_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/lemon_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/lemon_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/lemon_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/mango_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/mango_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/mango_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/mango_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/market_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/market_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/orange_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/orange_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/oven_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/oven_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/papaya_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/papaya_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/shaker_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/shaker_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/shaker_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/shaker_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/stockpot_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/stockpot_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/cooked_pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/cooked_pizza.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/cooked_rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/cooked_rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/mixed_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/mixed_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/toast_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/toast_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/button.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/juicer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/juicer.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/market.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/market.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/oven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/oven.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/shaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/shaker.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/cabbage_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/cabbage_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/kiwi_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/kiwi_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/lemon_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/lemon_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/mango_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/mango_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/orange_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/orange_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/orange_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/orange_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/papaya_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/papaya_leave.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/papaya_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/papaya_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/refrigerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/refrigerator.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/spinach_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/spinach_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/tutorial_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/tutorial_book.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_kiwi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_kiwi.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_mint.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/egg_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/egg_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/oil_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/oil_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/special/cream_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/special/cream_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/tutorial_book.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "foodpower:items/tutorial_book" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/juicer_topside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/juicer_topside.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/orange_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/orange_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/papaya_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/papaya_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/cooked/ice_cream_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/cooked/ice_cream_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/default.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/stockpot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/stockpot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/ui_kits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/ui_kits.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_apple.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_lemon.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_mango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_mango.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_melon.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_papaya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_papaya.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_beef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_beef.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_corn.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_kelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_kelp.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_pork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_pork.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_beef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_beef.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_corn.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_kelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_kelp.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/apple_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/apple_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/beef_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/beef_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/chili_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/chili_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/corn_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/corn_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/melon_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/melon_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/mint_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/mint_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/rice_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/rice_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/salt_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/salt_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/sauce_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/sauce_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/cheese_cobweb_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "foodpower:blocks/cheese_cobweb" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/chili_crop_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/chili_crop_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/chili_crop_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/chili_crop_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/chili_crop_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/chili_crop_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/chili_crop_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/chili_crop_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/chopping_board_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/chopping_board_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/corn_crop_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/corn_crop_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/corn_crop_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/corn_crop_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/corn_crop_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/corn_crop_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/corn_crop_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/corn_crop_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_pot_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_pot_back.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_pot_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_pot_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_pot_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_pot_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_pot_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_pot_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_stove_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_stove_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/juicer_bottomfront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/juicer_bottomfront.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/juicer_bottomside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/juicer_bottomside.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/mint_crop_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/mint_crop_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/mint_crop_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/mint_crop_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/mint_crop_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/mint_crop_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/mint_crop_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/mint_crop_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/recipe_table_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/recipe_table_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/recipe_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/recipe_table_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/refrigerator_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/refrigerator_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/refrigerator_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/refrigerator_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/refrigerator_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/refrigerator_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/rice_crop_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/rice_crop_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/rice_crop_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/rice_crop_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/rice_crop_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/rice_crop_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/rice_crop_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/rice_crop_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/stockpot_topbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/stockpot_topbottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/tomato_crop_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/tomato_crop_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/tomato_crop_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/tomato_crop_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/tomato_crop_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/tomato_crop_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/tomato_crop_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/tomato_crop_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/chef_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/chef_card.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/frying_pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/frying_pan.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/fermented_endereye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/fermented_endereye.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/recipe_scroll_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/recipe_scroll_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/recipe_scroll_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/recipe_scroll_iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/recipe_scroll_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/recipe_scroll_wood.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_cabbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_cabbage.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_carrot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_chicken.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_chili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_chili.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_mutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_mutton.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_potato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_pumpkin.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_rabbit.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_spinach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_spinach.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_tomato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_cabbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_cabbage.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_carrot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_chicken.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_chili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_chili.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_honey.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_ketchup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_ketchup.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_mutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_mutton.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_potato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_pumpkin.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_rabbit.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_sauce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_sauce.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_spinach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_spinach.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_tomato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/beetroot_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/beetroot_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/cabbage_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/cabbage_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/carrot_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/carrot_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/cheese_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/cheese_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/chicken_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/chicken_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/ketchup_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/ketchup_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/mutton_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/mutton_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/porkchop_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/porkchop_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/potato_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/potato_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/pumpkin_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/pumpkin_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/spinach_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/spinach_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/cabbage_crop_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/cabbage_crop_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/cabbage_crop_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/cabbage_crop_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/cabbage_crop_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/cabbage_crop_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/cabbage_crop_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/cabbage_crop_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/chopping_board_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/chopping_board_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_pot_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_pot_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_stove_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_stove_back.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_stove_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_stove_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_stove_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_stove_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/refrigerator_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/refrigerator_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/refrigerator_topback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/refrigerator_topback.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/spinach_crop_stage0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/spinach_crop_stage0.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/spinach_crop_stage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/spinach_crop_stage1.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/spinach_crop_stage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/spinach_crop_stage2.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/spinach_crop_stage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/spinach_crop_stage3.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/electric_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/electric_pot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/recipe_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/recipe_table.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/refrigerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/refrigerator.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/tutorial_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/tutorial_book.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/items/recipe_scroll_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/items/recipe_scroll_diamond.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_cocoa_beans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_cocoa_beans.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_magma_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_magma_cream.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_beetroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_beetroot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_beetroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_beetroot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_porkchop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_porkchop.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/electric_stove_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/electric_stove_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/refrigerator_bottomback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/refrigerator_bottomback.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/universal_station_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/universal_station_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/universal_station_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/universal_station_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/chopping_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/chopping_board.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/electric_stove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/electric_stove.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_chorus_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_chorus_fruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_sweet_berries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_sweet_berries.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_kiwi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_kiwi.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_mint.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_apple_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_apple_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_apple_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_apple_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_kiwi_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_kiwi_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_kiwi_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_kiwi_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_lemon_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_lemon_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_lemon_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_lemon_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_mango_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_mango_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_mango_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_mango_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_melon_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_melon_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_melon_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_melon_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_orange_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_orange_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_orange_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_orange_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_papaya_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_papaya_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_papaya_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_papaya_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_nether_wart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_nether_wart.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_red_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_red_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_ghast_tear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_ghast_tear.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_nether_wart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_nether_wart.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_red_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_red_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_apple.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_beef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_beef.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_carrot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_chili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_chili.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_corn.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_kelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_kelp.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_kiwi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_kiwi.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_lemon.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_mango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_mango.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_melon.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_mutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_mutton.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_papaya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_papaya.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_pork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_pork.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_potato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_rabbit.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_tomato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/chorus_fruit_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/chorus_fruit_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/cocoa_beans_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/cocoa_beans_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/dragon_breath_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/dragon_breath_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/honey_bottle_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/honey_bottle_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/milk_bucket_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/milk_bucket_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/red_mushroom_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/red_mushroom_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/sweet_berries_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/sweet_berries_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/water_bucket_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/water_bucket_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/revolving_cake_stand_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/revolving_cake_stand_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/blocks/revolving_cake_stand_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/blocks/revolving_cake_stand_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/recipe_scroll_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/recipe_scroll_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/recipe_scroll_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/recipe_scroll_iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/recipe_scroll_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/recipe_scroll_wood.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/universal_station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/universal_station.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_beef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_beef.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_corn.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_kelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_kelp.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_pork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_pork.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_apple.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_lemon.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_mango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_mango.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_melon.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_papaya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_papaya.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/pizza/pizza_brown_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/pizza/pizza_brown_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_brown_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_brown_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_dragon_breath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_dragon_breath.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_beetroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_beetroot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_cabbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_cabbage.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_chicken.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_pumpkin.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_spinach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_spinach.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/brown_mushroom_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/brown_mushroom_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/kiwi_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "stage=0": {"model":"foodpower:block/kiwi_sapling_model"}, 4 | "stage=1": {"model":"foodpower:block/kiwi_sapling_model"} 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/recipe_scroll_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/recipe_scroll_diamond.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/gui/container/revolving_cake_stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/gui/container/revolving_cake_stand.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/cake/cake_fermented_endereye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/cake/cake_fermented_endereye.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_cabbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_cabbage.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_carrot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_chicken.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_chili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_chili.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_honey.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_ketchup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_ketchup.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_mutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_mutton.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_potato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_pumpkin.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_rabbit.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_sauce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_sauce.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_spinach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_spinach.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_tomato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_apple.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_kiwi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_kiwi.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_lemon.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_mango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_mango.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_melon.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_mint.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_beef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_beef.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_chili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_chili.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_corn.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_kelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_kelp.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_pork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_pork.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/salad/salad_experience_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/salad/salad_experience_bottle.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_nether_wart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_nether_wart.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/experience_bottle_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/experience_bottle_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/mob_effect/fermented_endereye_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/mob_effect/fermented_endereye_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/lemon_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "stage=0": {"model":"foodpower:block/lemon_sapling_model"}, 4 | "stage=1": {"model":"foodpower:block/lemon_sapling_model"} 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/mango_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "stage=0": {"model":"foodpower:block/mango_sapling_model"}, 4 | "stage=1": {"model":"foodpower:block/mango_sapling_model"} 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/orange_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "stage=0": {"model":"foodpower:block/orange_sapling_model"}, 4 | "stage=1": {"model":"foodpower:block/orange_sapling_model"} 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/papaya_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "stage=0": {"model":"foodpower:block/papaya_sapling_model"}, 4 | "stage=1": {"model":"foodpower:block/papaya_sapling_model"} 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_beetroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_beetroot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_papaya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_papaya.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_cocoa_beans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_cocoa_beans.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_magma_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_magma_cream.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_chorus_fruit_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_chorus_fruit_juice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/juice/juice_chorus_fruit_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/juice/juice_chorus_fruit_slice.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_cabbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_cabbage.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_carrot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_chicken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_chicken.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_mutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_mutton.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_potato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_pumpkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_pumpkin.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_rabbit.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_spinach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_spinach.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_tomato.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_chorus_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_chorus_fruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_red_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_red_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_ghast_tear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_ghast_tear.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_nether_wart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_nether_wart.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_red_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_red_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_chorus_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_chorus_fruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_sweet_berries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_sweet_berries.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_beetroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_beetroot.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_brown_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/sandwich/sandwich_brown_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "entries": [ 4 | "foodpower:cabbage_effect", 5 | "foodpower:apple_effect", 6 | "foodpower:dragon_breath_effect" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_brown_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_brown_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_dragon_breath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_dragon_breath.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_chorus_fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_chorus_fruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_cocoa_beans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_cocoa_beans.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_magma_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_magma_cream.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_nether_wart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_nether_wart.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_red_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_red_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_experience_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/fried_rice/fried_rice_experience_bottle.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_sweet_berries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_sweet_berries.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_fermented_endereye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/ice_cream/ice_cream_fermented_endereye.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_brown_mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/noodle_soup/noodle_soup_brown_mushroom.png -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_fermented_endereye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalmice/FoodPower/1.15.2/src/main/resources/assets/foodpower/textures/meals/honey_toast/honey_toast_fermented_endereye.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Sets default memory used for gradle commands. Can be overridden by user or command line properties. 2 | # This is required to provide enough memory for the Minecraft decompilation process. 3 | org.gradle.jvmargs=-Xmx3G 4 | org.gradle.daemon=false -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/butter.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:ingredients", 4 | "result": {"item": "foodpower:butter"}, 5 | "ingredients": [ 6 | {"item": "foodpower:cream"} 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:ingredients", 4 | "result": {"item": "foodpower:cream"}, 5 | "ingredients": [ 6 | {"item": "minecraft:milk_bucket"} 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/specialclass/DirtyFood.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.specialclass; 2 | 3 | import com.github.immortalmice.foodpower.baseclass.ItemBase; 4 | 5 | public class DirtyFood extends ItemBase{ 6 | public DirtyFood(){ 7 | super(); 8 | } 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/other/chef_card.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:other", 4 | "result": {"item": "foodpower:chef_card"}, 5 | "ingredients": [ 6 | {"item": "foodpower:butter"}, 7 | {"item": "minecraft:paper"} 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/flour.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:ingredients", 4 | "result": { 5 | "item": "foodpower:flour", 6 | "count": 2 7 | }, 8 | "ingredients": [ 9 | {"item": "minecraft:wheat"} 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/cheese.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:ingredients", 4 | "result": {"item": "foodpower:cheese"}, 5 | "ingredients": [ 6 | {"item": "minecraft:milk_bucket"}, 7 | {"item": "foodpower:salt"} 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:ingredients", 4 | "result": {"item": "foodpower:dough"}, 5 | "ingredients": [ 6 | {"item": "foodpower:flour"}, 7 | {"item": "minecraft:water_bucket"} 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/other/tutorial_book.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:other", 4 | "result": {"item": "foodpower:tutorial_book"}, 5 | "ingredients": [ 6 | {"item": "foodpower:butter"}, 7 | {"item": "minecraft:book"} 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/ketchup.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:ingredients", 4 | "result": {"item": "foodpower:ketchup"}, 5 | "ingredients": [ 6 | {"item": "foodpower:tomato"}, 7 | {"item": "minecraft:glass_bottle"} 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:ingredients", 4 | "result": {"item": "foodpower:oil"}, 5 | "ingredients": [ 6 | {"item": "minecraft:wheat_seeds"}, 7 | {"item": "minecraft:glass_bottle"} 8 | ] 9 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # eclipse 2 | bin 3 | *.launch 4 | .settings 5 | .metadata 6 | .classpath 7 | .project 8 | 9 | # idea 10 | out 11 | *.ipr 12 | *.iws 13 | *.iml 14 | .idea 15 | 16 | # gradle 17 | build 18 | .gradle 19 | 20 | # other 21 | eclipse 22 | run 23 | 24 | # Files from Forge MDK 25 | forge*changelog.txt 26 | -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/sauce.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:ingredients", 4 | "result": {"item": "foodpower:sauce"}, 5 | "ingredients": [ 6 | {"item": "minecraft:nether_wart"}, 7 | {"item": "minecraft:glass_bottle"} 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/container/tutorialbook/page/BossesPage.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.container.tutorialbook.page; 2 | 3 | public class BossesPage extends AbstractHomeablePage { 4 | public BossesPage() { 5 | super("tutorial_book.foodpower.boss_main_page.title"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/container/tutorialbook/page/PatternsPage.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.container.tutorialbook.page; 2 | 3 | public class PatternsPage extends AbstractHomeablePage { 4 | public PatternsPage() { 5 | super("tutorial_book.foodpower.pattern_main_page.title"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/frying_pan.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:frying_pan"}, 5 | "pattern": [ 6 | " ", 7 | "S S", 8 | "SSS" 9 | ], 10 | "key": { 11 | "S": {"item": "minecraft:smooth_stone"} 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/oven.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants":{ 3 | "facing=north": {"model": "foodpower:block/oven_model"}, 4 | "facing=east": {"model": "foodpower:block/oven_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/oven_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/oven_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:ingredients", 4 | "result": { 5 | "item": "foodpower:salt", 6 | "count": 16 7 | }, 8 | "ingredients": [ 9 | {"item": "minecraft:water_bucket"}, 10 | {"item": "minecraft:flint_and_steel"} 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/juicer.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants":{ 3 | "facing=north": {"model": "foodpower:block/juicer_model"}, 4 | "facing=east": {"model": "foodpower:block/juicer_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/juicer_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/juicer_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/market.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": {"model": "foodpower:block/market_model"}, 4 | "facing=east": {"model": "foodpower:block/market_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/market_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/market_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/shaker.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": {"model": "foodpower:block/shaker_model"}, 4 | "facing=east": {"model": "foodpower:block/shaker_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/shaker_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/shaker_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/stockpot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": {"model": "foodpower:block/stockpot_model"}, 4 | "facing=east": {"model": "foodpower:block/stockpot_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/stockpot_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/stockpot_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/other/recipe_scroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "group": "foopower:other", 4 | "result": { 5 | "item": "foodpower:recipe_scroll", 6 | "count": 2 7 | }, 8 | "ingredients": [ 9 | {"item": "foodpower:recipe_scroll"}, 10 | {"item": "minecraft:writable_book"} 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/frying_pan.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": {"model": "foodpower:block/frying_pan_model"}, 4 | "facing=east": {"model": "foodpower:block/frying_pan_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/frying_pan_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/frying_pan_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/ingredients/fermented_endereye.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:ingredients", 4 | "result": {"item": "foodpower:fermented_endereye"}, 5 | "pattern": [ 6 | "SSS", 7 | "SES", 8 | "SSS" 9 | ], 10 | "key": { 11 | "S": {"item": "minecraft:sugar"}, 12 | "E": {"item": "minecraft:ender_pearl"} 13 | } 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/chopping_board.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:chopping_board"}, 5 | "pattern": [ 6 | " ", 7 | "SSS", 8 | "WWW" 9 | ], 10 | "key": { 11 | "S": {"tag": "minecraft:wooden_slabs"}, 12 | "W": {"tag": "minecraft:logs"} 13 | } 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/refrigerator.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:refrigerator"}, 5 | "pattern": [ 6 | "III", 7 | "ISI", 8 | "III" 9 | ], 10 | "key": { 11 | "I": {"item": "minecraft:iron_ingot"}, 12 | "S": {"item": "minecraft:snow_block"} 13 | } 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/other/market.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:others", 4 | "result": {"item": "foodpower:market"}, 5 | "pattern": [ 6 | "LPL", 7 | "PEP", 8 | "LPL" 9 | ], 10 | "key": { 11 | "L": {"tag": "minecraft:logs"}, 12 | "P": {"tag": "minecraft:planks"}, 13 | "E": {"item": "minecraft:emerald"} 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/stockpot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:stockpot"}, 5 | "pattern": [ 6 | "SPS", 7 | "S S", 8 | "SSS" 9 | ], 10 | "key": { 11 | "S": {"item": "minecraft:smooth_stone"}, 12 | "P": {"item": "minecraft:stone_pressure_plate"} 13 | } 14 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/electric_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": {"model": "foodpower:block/electric_pot_model"}, 4 | "facing=east": {"model": "foodpower:block/electric_pot_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/electric_pot_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/electric_pot_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/recipe_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants":{ 3 | "facing=north": {"model": "foodpower:block/recipe_table_model"}, 4 | "facing=east": {"model": "foodpower:block/recipe_table_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/recipe_table_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/recipe_table_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/refrigerator.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": {"model": "foodpower:block/refrigerator_model"}, 4 | "facing=east": {"model": "foodpower:block/refrigerator_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/refrigerator_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/refrigerator_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/chopping_board.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": {"model": "foodpower:block/chopping_board_model"}, 4 | "facing=east": {"model": "foodpower:block/chopping_board_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/chopping_board_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/chopping_board_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/electric_stove.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": {"model": "foodpower:block/electric_stove_model"}, 4 | "facing=east": {"model": "foodpower:block/electric_stove_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/electric_stove_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/electric_stove_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/electric_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:electric_pot"}, 5 | "pattern": [ 6 | "IPI", 7 | "I I", 8 | "III" 9 | ], 10 | "key": { 11 | "I": {"item": "minecraft:iron_ingot"}, 12 | "P": {"item": "minecraft:heavy_weighted_pressure_plate"} 13 | } 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/juicer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:juicer"}, 5 | "pattern": [ 6 | "III", 7 | "IPI", 8 | "IBI" 9 | ], 10 | "key": { 11 | "I": {"item": "minecraft:iron_ingot"}, 12 | "P": {"item": "minecraft:piston"}, 13 | "B": {"item": "minecraft:bucket"} 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/shaker.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:shaker"}, 5 | "pattern": [ 6 | "III", 7 | "BRI", 8 | "III" 9 | ], 10 | "key": { 11 | "I": {"item": "minecraft:iron_ingot"}, 12 | "R": {"item": "minecraft:repeater"}, 13 | "B": {"item": "minecraft:bucket"} 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/universal_station.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "facing=north": {"model": "foodpower:block/universal_station_model"}, 4 | "facing=east": {"model": "foodpower:block/universal_station_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/universal_station_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/universal_station_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/revolving_cake_stand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:revolving_cake_stand"}, 5 | "pattern": [ 6 | "PPP", 7 | " I ", 8 | "III" 9 | ], 10 | "key": { 11 | "P": {"item": "minecraft:heavy_weighted_pressure_plate"}, 12 | "I": {"item": "minecraft:iron_ingot"} 13 | } 14 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/loot_modifiers/apple_effect.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "foodpower:apple_effect", 3 | "conditions": [{ 4 | "condition": "entity_properties", 5 | "entity": "THIS", 6 | "predicate": { 7 | "effects": { 8 | "foodpower:apple_power": { 9 | "amplifier": { 10 | "min": 0 11 | } 12 | } 13 | } 14 | } 15 | }], 16 | "probabilities": [0.2, 0.5, 0.8], 17 | "bonus": [1, 1, 2] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/loot_modifiers/cabbage_effect.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "foodpower:cabbage_effect", 3 | "conditions": [{ 4 | "condition": "entity_properties", 5 | "entity": "THIS", 6 | "predicate": { 7 | "effects": { 8 | "foodpower:cabbage_power": { 9 | "amplifier": { 10 | "min": 0 11 | } 12 | } 13 | } 14 | } 15 | }], 16 | "probabilities": [0.5, 1, 1], 17 | "bonus": [1, 1, 2] 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/electric_stove.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:electric_stove"}, 5 | "pattern": [ 6 | "CCC", 7 | "IBI", 8 | "III" 9 | ], 10 | "key": { 11 | "I": {"item": "minecraft:iron_ingot"}, 12 | "B": {"tag": "minecraft:buttons"}, 13 | "C": {"tag": "minecraft:coals"} 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/revolving_cake_stand.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants":{ 3 | "facing=north": {"model": "foodpower:block/revolving_cake_stand_model"}, 4 | "facing=east": {"model": "foodpower:block/revolving_cake_stand_model", "y": 90}, 5 | "facing=south": {"model": "foodpower:block/revolving_cake_stand_model", "y": 180}, 6 | "facing=west": {"model": "foodpower:block/revolving_cake_stand_model", "y": 270} 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/oven_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cube_all", 3 | "textures": { 4 | "particle": "foodpower:blocks/oven_side", 5 | "up": "foodpower:blocks/oven_top", 6 | "down": "foodpower:blocks/oven_bottom", 7 | "north": "foodpower:blocks/oven_front", 8 | "east": "foodpower:blocks/oven_side", 9 | "west": "foodpower:blocks/oven_side", 10 | "south": "foodpower:blocks/oven_back" 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/universal_station.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:universal_station"}, 5 | "pattern": [ 6 | "SSS", 7 | "BEB", 8 | "BBB" 9 | ], 10 | "key": { 11 | "S": {"item": "minecraft:smooth_stone_slab"}, 12 | "E": {"item": "minecraft:ender_pearl"}, 13 | "B": {"item": "minecraft:bricks"} 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/kitchenappliances/oven.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:kitchenappliance", 4 | "result": {"item": "foodpower:oven"}, 5 | "pattern": [ 6 | "BIB", 7 | "IGI", 8 | "ICI" 9 | ], 10 | "key": { 11 | "I": {"item": "minecraft:iron_ingot"}, 12 | "G": {"tag": "foodpower:glass_panes"}, 13 | "B": {"tag": "minecraft:buttons"}, 14 | "C": {"tag": "minecraft:coals"} 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/boss/entities/EnderBoss.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.boss.entities; 2 | 3 | import com.github.immortalmice.foodpower.baseclass.BossBase; 4 | 5 | import net.minecraft.entity.EntityType; 6 | import net.minecraft.world.BossInfo.Color; 7 | import net.minecraft.world.World; 8 | 9 | public class EnderBoss extends BossBase { 10 | public EnderBoss(EntityType type, World worldIn) { 11 | super(type, worldIn, Color.PURPLE); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/boss/entities/SaltyBoss.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.boss.entities; 2 | 3 | import com.github.immortalmice.foodpower.baseclass.BossBase; 4 | 5 | import net.minecraft.entity.EntityType; 6 | import net.minecraft.world.BossInfo.Color; 7 | import net.minecraft.world.World; 8 | 9 | public class SaltyBoss extends BossBase { 10 | public SaltyBoss(EntityType type, World worldIn) { 11 | super(type, worldIn, Color.BLUE); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/boss/entities/BitterBoss.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.boss.entities; 2 | 3 | import com.github.immortalmice.foodpower.baseclass.BossBase; 4 | 5 | import net.minecraft.entity.EntityType; 6 | import net.minecraft.world.BossInfo.Color; 7 | import net.minecraft.world.World; 8 | 9 | public class BitterBoss extends BossBase { 10 | public BitterBoss(EntityType type, World worldIn) { 11 | super(type, worldIn, Color.YELLOW); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/boss/entities/NetherBoss.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.boss.entities; 2 | 3 | import com.github.immortalmice.foodpower.baseclass.BossBase; 4 | 5 | import net.minecraft.entity.EntityType; 6 | import net.minecraft.world.BossInfo.Color; 7 | import net.minecraft.world.World; 8 | 9 | public class NetherBoss extends BossBase { 10 | public NetherBoss(EntityType type, World worldIn) { 11 | super(type, worldIn, Color.RED); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/recipes/other/recipe_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "group": "foopower:others", 4 | "result": {"item": "foodpower:recipe_table"}, 5 | "pattern": [ 6 | "LPL", 7 | "GBI", 8 | "LDL" 9 | ], 10 | "key": { 11 | "L": {"tag": "minecraft:logs"}, 12 | "P": {"tag": "minecraft:planks"}, 13 | "I": {"item": "minecraft:iron_ingot"}, 14 | "G": {"item": "minecraft:gold_ingot"}, 15 | "D": {"item": "minecraft:diamond"}, 16 | "B": {"item": "minecraft:writable_book"} 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/loot_modifiers/dragon_breath_effect.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "foodpower:dragon_breath_effect", 3 | "conditions": [{ 4 | "condition": "entity_properties", 5 | "entity": "KILLER_PLAYER", 6 | "predicate": { 7 | "effects": { 8 | "foodpower:dragon_breath_power": { 9 | "amplifier": { 10 | "min": 0 11 | } 12 | } 13 | } 14 | } 15 | }], 16 | "probabilities": [0.1, 0.2, 0.5] 17 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/corn_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "age=0": {"model": "foodpower:block/corn_crop_stage0"}, 4 | "age=1": {"model": "foodpower:block/corn_crop_stage0"}, 5 | "age=2": {"model": "foodpower:block/corn_crop_stage1"}, 6 | "age=3": {"model": "foodpower:block/corn_crop_stage1"}, 7 | "age=4": {"model": "foodpower:block/corn_crop_stage2"}, 8 | "age=5": {"model": "foodpower:block/corn_crop_stage2"}, 9 | "age=6": {"model": "foodpower:block/corn_crop_stage2"}, 10 | "age=7": {"model": "foodpower:block/corn_crop_stage3"} 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/mint_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "age=0": {"model": "foodpower:block/mint_crop_stage0"}, 4 | "age=1": {"model": "foodpower:block/mint_crop_stage0"}, 5 | "age=2": {"model": "foodpower:block/mint_crop_stage1"}, 6 | "age=3": {"model": "foodpower:block/mint_crop_stage1"}, 7 | "age=4": {"model": "foodpower:block/mint_crop_stage2"}, 8 | "age=5": {"model": "foodpower:block/mint_crop_stage2"}, 9 | "age=6": {"model": "foodpower:block/mint_crop_stage2"}, 10 | "age=7": {"model": "foodpower:block/mint_crop_stage3"} 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/rice_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "age=0": {"model": "foodpower:block/rice_crop_stage0"}, 4 | "age=1": {"model": "foodpower:block/rice_crop_stage0"}, 5 | "age=2": {"model": "foodpower:block/rice_crop_stage1"}, 6 | "age=3": {"model": "foodpower:block/rice_crop_stage1"}, 7 | "age=4": {"model": "foodpower:block/rice_crop_stage2"}, 8 | "age=5": {"model": "foodpower:block/rice_crop_stage2"}, 9 | "age=6": {"model": "foodpower:block/rice_crop_stage2"}, 10 | "age=7": {"model": "foodpower:block/rice_crop_stage3"} 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/handlers/CommandHandler.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.handlers; 2 | 3 | import com.github.immortalmice.foodpower.command.FlavorExpCommand; 4 | import com.github.immortalmice.foodpower.command.PatternExpCommand; 5 | import com.mojang.brigadier.CommandDispatcher; 6 | import net.minecraft.command.CommandSource; 7 | 8 | public class CommandHandler{ 9 | public static void registAllCommand(CommandDispatcher dispatcher){ 10 | PatternExpCommand.register(dispatcher); 11 | FlavorExpCommand.register(dispatcher); 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/chili_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "age=0": {"model": "foodpower:block/chili_crop_stage0"}, 4 | "age=1": {"model": "foodpower:block/chili_crop_stage0"}, 5 | "age=2": {"model": "foodpower:block/chili_crop_stage1"}, 6 | "age=3": {"model": "foodpower:block/chili_crop_stage1"}, 7 | "age=4": {"model": "foodpower:block/chili_crop_stage2"}, 8 | "age=5": {"model": "foodpower:block/chili_crop_stage2"}, 9 | "age=6": {"model": "foodpower:block/chili_crop_stage2"}, 10 | "age=7": {"model": "foodpower:block/chili_crop_stage3"} 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/tomato_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "age=0": {"model": "foodpower:block/tomato_crop_stage0"}, 4 | "age=1": {"model": "foodpower:block/tomato_crop_stage0"}, 5 | "age=2": {"model": "foodpower:block/tomato_crop_stage1"}, 6 | "age=3": {"model": "foodpower:block/tomato_crop_stage1"}, 7 | "age=4": {"model": "foodpower:block/tomato_crop_stage2"}, 8 | "age=5": {"model": "foodpower:block/tomato_crop_stage2"}, 9 | "age=6": {"model": "foodpower:block/tomato_crop_stage2"}, 10 | "age=7": {"model": "foodpower:block/tomato_crop_stage3"} 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/cabbage_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "age=0": {"model": "foodpower:block/cabbage_crop_stage0"}, 4 | "age=1": {"model": "foodpower:block/cabbage_crop_stage0"}, 5 | "age=2": {"model": "foodpower:block/cabbage_crop_stage1"}, 6 | "age=3": {"model": "foodpower:block/cabbage_crop_stage1"}, 7 | "age=4": {"model": "foodpower:block/cabbage_crop_stage2"}, 8 | "age=5": {"model": "foodpower:block/cabbage_crop_stage2"}, 9 | "age=6": {"model": "foodpower:block/cabbage_crop_stage2"}, 10 | "age=7": {"model": "foodpower:block/cabbage_crop_stage3"} 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/blockstates/spinach_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "age=0": {"model": "foodpower:block/spinach_crop_stage0"}, 4 | "age=1": {"model": "foodpower:block/spinach_crop_stage0"}, 5 | "age=2": {"model": "foodpower:block/spinach_crop_stage1"}, 6 | "age=3": {"model": "foodpower:block/spinach_crop_stage1"}, 7 | "age=4": {"model": "foodpower:block/spinach_crop_stage2"}, 8 | "age=5": {"model": "foodpower:block/spinach_crop_stage2"}, 9 | "age=6": {"model": "foodpower:block/spinach_crop_stage2"}, 10 | "age=7": {"model": "foodpower:block/spinach_crop_stage3"} 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/baseclass/ItemFoodBase.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.baseclass; 2 | 3 | import net.minecraft.item.Item; 4 | import net.minecraft.item.Food; 5 | 6 | public class ItemFoodBase extends ItemBase{ 7 | public ItemFoodBase(int hunger, float saturation, boolean isInCreativeTab){ 8 | /* Can wolf eat my sweetie? NO WAY!*/ 9 | super(new Item.Properties() 10 | .food(new Food.Builder().saturation(saturation).hunger(hunger).build()), isInCreativeTab); 11 | } 12 | 13 | public ItemFoodBase(int hunger, float saturation){ 14 | this(hunger, saturation, true); 15 | } 16 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/item/recipe_scroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "foodpower:item/recipe_scroll_wood", 3 | 4 | "overrides":[ 5 | { 6 | "predicate": {"foodpower:scroll_property": 0.0}, 7 | "model": "foodpower:item/recipe_scroll_wood" 8 | },{ 9 | "predicate": {"foodpower:scroll_property": 0.1}, 10 | "model": "foodpower:item/recipe_scroll_iron" 11 | },{ 12 | "predicate": {"foodpower:scroll_property": 0.2}, 13 | "model": "foodpower:item/recipe_scroll_gold" 14 | },{ 15 | "predicate": {"foodpower:scroll_property": 0.3}, 16 | "model": "foodpower:item/recipe_scroll_diamond" 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/baseclass/ItemBase.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.baseclass; 2 | 3 | import net.minecraft.item.Item; 4 | 5 | import com.github.immortalmice.foodpower.lists.FPCreativeTabs; 6 | 7 | public class ItemBase extends Item{ 8 | public ItemBase(Item.Properties propertiesIn){ 9 | super(propertiesIn); 10 | } 11 | 12 | public ItemBase(Item.Properties propertiesIn, boolean isInCreativeTab){ 13 | this(propertiesIn.group(isInCreativeTab ? FPCreativeTabs.ITEM_TAB : null)); 14 | } 15 | 16 | public ItemBase(){ 17 | this(new Item.Properties().group(FPCreativeTabs.ITEM_TAB)); 18 | } 19 | 20 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/crop/CropSeed.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.crop; 2 | 3 | import net.minecraft.item.Item; 4 | import net.minecraft.item.BlockNamedItem; 5 | 6 | import com.github.immortalmice.foodpower.crop.CropSeed; 7 | import com.github.immortalmice.foodpower.lists.FPCreativeTabs; 8 | 9 | public class CropSeed extends BlockNamedItem{ 10 | private String name; 11 | public CropSeed(String nameIn, CropBlock blockIn){ 12 | super(blockIn, new Item.Properties().group(FPCreativeTabs.ITEM_TAB)); 13 | 14 | this.name = nameIn; 15 | } 16 | 17 | public String getFPName(){ 18 | return this.name; 19 | } 20 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/crop/CropBlock.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.crop; 2 | 3 | import net.minecraft.block.SoundType; 4 | import net.minecraft.block.CropsBlock; 5 | import net.minecraft.block.material.Material; 6 | 7 | 8 | public class CropBlock extends CropsBlock{ 9 | private String name; 10 | public CropBlock(String nameIn){ 11 | super(Properties.create(Material.PLANTS) 12 | .hardnessAndResistance(0.0F) 13 | .doesNotBlockMovement() 14 | .tickRandomly() 15 | .sound(SoundType.CROP)); 16 | 17 | this.name = nameIn; 18 | } 19 | 20 | public String getFPName(){ 21 | return this.name; 22 | } 23 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/util/Position2D.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.util; 2 | 3 | public class Position2D{ 4 | public int x, y; 5 | 6 | public Position2D(){ 7 | this(0, 0); 8 | } 9 | 10 | public Position2D(int xIn, int yIn){ 11 | this.x = xIn; 12 | this.y = yIn; 13 | } 14 | 15 | public Position2D translate(int offset){ 16 | return this.translate(offset, offset); 17 | } 18 | 19 | public Position2D translate(int x, int y){ 20 | return new Position2D( 21 | this.x + x, 22 | this.y + y 23 | ); 24 | } 25 | 26 | public Position2D translateToLeftTop(){ 27 | return this.translate(PosProvider.SLOT_SIZE / 2 * -1); 28 | } 29 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/util/ItemStackNBT.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.util; 2 | 3 | import net.minecraft.item.ItemStack; 4 | import net.minecraft.nbt.CompoundNBT; 5 | 6 | public class ItemStackNBT{ 7 | public static final String INT_COUNT_KEY = "int_count"; 8 | 9 | public static ItemStack read(CompoundNBT nbt){ 10 | ItemStack stack = ItemStack.read(nbt); 11 | stack.setCount(nbt.getInt(ItemStackNBT.INT_COUNT_KEY)); 12 | return stack; 13 | } 14 | 15 | public static CompoundNBT write(ItemStack stack){ 16 | CompoundNBT nbt = stack.write(new CompoundNBT()); 17 | nbt.putInt(ItemStackNBT.INT_COUNT_KEY, stack.getCount()); 18 | return nbt; 19 | } 20 | } -------------------------------------------------------------------------------- /src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- 1 | modLoader="javafml" 2 | loaderVersion="[31,)" 3 | issueTrackerURL="https://github.com/immortalmice/FoodPower/issues" 4 | 5 | [[mods]] 6 | modId="foodpower" 7 | version="${version}" 8 | displayName="Food Power" 9 | credits="Pudding, donut, and all sweet things." 10 | authors="Immortalmice, YenHsinWu" 11 | description='''Food will give you power.<3''' 12 | 13 | [[dependencies.foodpower]] 14 | modId="forge" 15 | mandatory=true 16 | versionRange="[31,)" 17 | ordering="NONE" 18 | side="BOTH" 19 | 20 | [[dependencies.foodpower]] 21 | modId="minecraft" 22 | mandatory=true 23 | versionRange="[1.15.2]" 24 | ordering="NONE" 25 | side="BOTH" 26 | -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/loot_tables/blocks/kiwi_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools" : [ 3 | { 4 | "rolls" : 1, 5 | "conditions" : [ 6 | { 7 | "condition" : "random_chance", 8 | "chance" : 0.125 9 | } 10 | ], 11 | "entries" : [ 12 | { 13 | "type" : "item", 14 | "name" : "foodpower:kiwi_sapling", 15 | "weight" : 1, 16 | "quality" : 1.0 17 | } 18 | ] 19 | },{ 20 | "rolls" : 1, 21 | "conditions" : [ 22 | { 23 | "condition" : "random_chance", 24 | "chance" : 0.125 25 | } 26 | ], 27 | "entries" : [ 28 | { 29 | "type" : "item", 30 | "name" : "foodpower:kiwi", 31 | "weight" : 1, 32 | "quality" : 1.0 33 | } 34 | ] 35 | } 36 | ] 37 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/loot_tables/blocks/lemon_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools" : [ 3 | { 4 | "rolls" : 1, 5 | "conditions" : [ 6 | { 7 | "condition" : "random_chance", 8 | "chance" : 0.125 9 | } 10 | ], 11 | "entries" : [ 12 | { 13 | "type" : "item", 14 | "name" : "foodpower:lemon_sapling", 15 | "weight" : 1, 16 | "quality" : 1.0 17 | } 18 | ] 19 | },{ 20 | "rolls" : 1, 21 | "conditions" : [ 22 | { 23 | "condition" : "random_chance", 24 | "chance" : 0.125 25 | } 26 | ], 27 | "entries" : [ 28 | { 29 | "type" : "item", 30 | "name" : "foodpower:lemon", 31 | "weight" : 1, 32 | "quality" : 1.0 33 | } 34 | ] 35 | } 36 | ] 37 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/loot_tables/blocks/mango_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools" : [ 3 | { 4 | "rolls" : 1, 5 | "conditions" : [ 6 | { 7 | "condition" : "random_chance", 8 | "chance" : 0.125 9 | } 10 | ], 11 | "entries" : [ 12 | { 13 | "type" : "item", 14 | "name" : "foodpower:mango_sapling", 15 | "weight" : 1, 16 | "quality" : 1.0 17 | } 18 | ] 19 | },{ 20 | "rolls" : 1, 21 | "conditions" : [ 22 | { 23 | "condition" : "random_chance", 24 | "chance" : 0.125 25 | } 26 | ], 27 | "entries" : [ 28 | { 29 | "type" : "item", 30 | "name" : "foodpower:mango", 31 | "weight" : 1, 32 | "quality" : 1.0 33 | } 34 | ] 35 | } 36 | ] 37 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/loot_tables/blocks/orange_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools" : [ 3 | { 4 | "rolls" : 1, 5 | "conditions" : [ 6 | { 7 | "condition" : "random_chance", 8 | "chance" : 0.125 9 | } 10 | ], 11 | "entries" : [ 12 | { 13 | "type" : "item", 14 | "name" : "foodpower:orange_sapling", 15 | "weight" : 1, 16 | "quality" : 1.0 17 | } 18 | ] 19 | },{ 20 | "rolls" : 1, 21 | "conditions" : [ 22 | { 23 | "condition" : "random_chance", 24 | "chance" : 0.125 25 | } 26 | ], 27 | "entries" : [ 28 | { 29 | "type" : "item", 30 | "name" : "foodpower:orange", 31 | "weight" : 1, 32 | "quality" : 1.0 33 | } 34 | ] 35 | } 36 | ] 37 | } -------------------------------------------------------------------------------- /src/main/resources/data/foodpower/loot_tables/blocks/papaya_leave.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools" : [ 3 | { 4 | "rolls" : 1, 5 | "conditions" : [ 6 | { 7 | "condition" : "random_chance", 8 | "chance" : 0.125 9 | } 10 | ], 11 | "entries" : [ 12 | { 13 | "type" : "item", 14 | "name" : "foodpower:papaya_sapling", 15 | "weight" : 1, 16 | "quality" : 1.0 17 | } 18 | ] 19 | },{ 20 | "rolls" : 1, 21 | "conditions" : [ 22 | { 23 | "condition" : "random_chance", 24 | "chance" : 0.125 25 | } 26 | ], 27 | "entries" : [ 28 | { 29 | "type" : "item", 30 | "name" : "foodpower:papaya", 31 | "weight" : 1, 32 | "quality" : 1.0 33 | } 34 | ] 35 | } 36 | ] 37 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/lists/FoodTypes.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.lists; 2 | 3 | import java.util.ArrayList; 4 | import java.util.List; 5 | 6 | import com.github.immortalmice.foodpower.types.FoodType; 7 | 8 | public class FoodTypes{ 9 | public static final List list = new ArrayList(); 10 | 11 | public static final FoodType NONE = new FoodType("none"); 12 | 13 | public static final FoodType FRUIT = new FoodType("fruit"); 14 | public static final FoodType MEAT = new FoodType("meat"); 15 | public static final FoodType VEGETABLE = new FoodType("vegetable"); 16 | public static final FoodType SWEET = new FoodType("sweet"); 17 | public static final FoodType SEASONING = new FoodType("seasoning"); 18 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/tree/TreeSaplingBush.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.tree; 2 | 3 | import net.minecraft.block.Block; 4 | import net.minecraft.block.SaplingBlock; 5 | import net.minecraft.block.SoundType; 6 | import net.minecraft.block.material.Material; 7 | 8 | public class TreeSaplingBush extends SaplingBlock{ 9 | private String fpName; 10 | 11 | public TreeSaplingBush(String nameIn, FPTree treeIn){ 12 | super(treeIn, Block.Properties.create(Material.PLANTS) 13 | .hardnessAndResistance(0.0f) 14 | .tickRandomly() 15 | .sound(SoundType.PLANT)); 16 | 17 | this.fpName = nameIn; 18 | } 19 | 20 | public String getFPName(){ 21 | return this.fpName; 22 | } 23 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/market_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/block", 3 | "textures": { 4 | "particle": "foodpower:blocks/market_top", 5 | "top": "foodpower:blocks/market_top", 6 | "side": "foodpower:blocks/market_side" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [0, 0, 0], 11 | "to": [16, 16, 16], 12 | "faces": { 13 | "up": {"uv": [16, 16, 0, 0], "texture": "#top"}, 14 | "down": {"uv": [0, 0, 16, 16], "texture": "#top"}, 15 | "north": {"uv": [0, 0, 16, 16], "texture": "#side"}, 16 | "east": {"uv": [0, 0, 16, 16], "texture": "#side"}, 17 | "south": {"uv": [0, 0, 16, 16], "texture": "#side"}, 18 | "west": {"uv": [0, 0, 16, 16], "texture": "#side"} 19 | } 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/capability/interfaces/IFPFlavorExpCapability.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.capability.interfaces; 2 | 3 | import java.util.Map; 4 | 5 | import com.github.immortalmice.foodpower.types.FlavorType; 6 | 7 | /* Capability about FoodPower's Flavor Exp */ 8 | public interface IFPFlavorExpCapability{ 9 | 10 | int getExpLevel(FlavorType flavor); 11 | Map getAllExpLevel(); 12 | 13 | void setExpLevel(FlavorType flavor, int level); 14 | 15 | /* You can override this to make your own conversion between level and value. Ex. 20 value for 1 level */ 16 | /* Return how many value actually add, can pass in negative value, and return might be negative */ 17 | int addExp(FlavorType flavor, int value); 18 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/chopping_board_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/block", 3 | "textures": { 4 | "particle": "foodpower:blocks/chopping_board_side", 5 | "top": "foodpower:blocks/chopping_board_top", 6 | "side": "foodpower:blocks/chopping_board_side" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [0, 0, 0], 11 | "to": [16, 3, 16], 12 | "faces": { 13 | "up": {"uv": [16, 16, 0, 0], "texture": "#top"}, 14 | "down": {"uv": [0, 0, 16, 16], "texture": "#side"}, 15 | "north": {"uv": [0, 0, 16, 16], "texture": "#side"}, 16 | "east": {"uv": [0, 0, 16, 16], "texture": "#side"}, 17 | "south": {"uv": [0, 0, 16, 16], "texture": "#side"}, 18 | "west": {"uv": [0, 0, 16, 16], "texture": "#side"} 19 | } 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/capability/interfaces/IFPPatternExpCapability.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.capability.interfaces; 2 | 3 | import java.util.Map; 4 | 5 | import com.github.immortalmice.foodpower.cooking.CookingPattern; 6 | 7 | /* Capability about FoodPower's Pattern Exp */ 8 | public interface IFPPatternExpCapability{ 9 | 10 | int getExpLevel(CookingPattern pattern); 11 | Map getAllExpLevel(); 12 | 13 | void setExpLevel(CookingPattern pattern, int level); 14 | 15 | /* You can override this to make your own conversion between level and value. Ex. 20 value for 1 level */ 16 | /* Return how many value actually add, can pass in negative value, and return might be negative */ 17 | int addExp(CookingPattern pattern, int value); 18 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/cooking/ICookingElement.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.cooking; 2 | 3 | import com.github.immortalmice.foodpower.food.Ingredient; 4 | import com.github.immortalmice.foodpower.types.FoodType; 5 | 6 | public interface ICookingElement{ 7 | enum ElementType{ 8 | INGREDIENT, 9 | COOKED_FOOD, 10 | FOOD_TYPE 11 | } 12 | 13 | ElementType getElementType(); 14 | 15 | default boolean isMatch(Ingredient ingredientIn){ 16 | if(this instanceof Ingredient){ 17 | return ingredientIn.isEqual((Ingredient) this); 18 | }else if(this instanceof FoodType){ 19 | return ingredientIn.isType((FoodType) this); 20 | } 21 | return false; 22 | } 23 | 24 | default boolean isType(ElementType type){ 25 | return this.getElementType() == type; 26 | } 27 | } -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/universal_station_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/block", 3 | "textures": { 4 | "particle": "foodpower:blocks/universal_station_top", 5 | "top": "foodpower:blocks/universal_station_top", 6 | "side": "foodpower:blocks/universal_station_side" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [0, 0, 0], 11 | "to": [16, 16, 16], 12 | "faces": { 13 | "up": {"uv": [16, 16, 0, 0], "texture": "#top"}, 14 | "down": {"uv": [0, 0, 16, 16], "texture": "#top"}, 15 | "north": {"uv": [0, 0, 16, 16], "texture": "#side"}, 16 | "east": {"uv": [0, 0, 16, 16], "texture": "#side"}, 17 | "south": {"uv": [0, 0, 16, 16], "texture": "#side"}, 18 | "west": {"uv": [0, 0, 16, 16], "texture": "#side"} 19 | } 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/tree/TreeLeave.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.tree; 2 | 3 | 4 | import net.minecraft.block.Block; 5 | import net.minecraft.block.LeavesBlock; 6 | import net.minecraft.block.SoundType; 7 | import net.minecraft.block.material.Material; 8 | 9 | public class TreeLeave extends LeavesBlock{ 10 | private String fpName; 11 | 12 | public TreeLeave(String nameIn){ 13 | super(Block.Properties.create(Material.LEAVES) 14 | .hardnessAndResistance(0.2F) 15 | .sound(SoundType.PLANT) 16 | .tickRandomly() 17 | .variableOpacity() 18 | .notSolid());//is not Soild 19 | 20 | this.fpName = nameIn; 21 | } 22 | 23 | public String getFPName(){ 24 | return this.fpName; 25 | } 26 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/container/tutorialbook/page/IPage.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.container.tutorialbook.page; 2 | 3 | import java.util.function.Consumer; 4 | 5 | import com.github.immortalmice.foodpower.container.tutorialbook.TutorialBookContainer.Navigator; 6 | import com.github.immortalmice.foodpower.util.Position2D; 7 | 8 | import net.minecraft.client.gui.FontRenderer; 9 | import net.minecraft.client.gui.screen.Screen; 10 | import net.minecraft.client.gui.widget.Widget; 11 | import net.minecraft.client.renderer.ItemRenderer; 12 | 13 | public interface IPage { 14 | default void render(int mouseX, int mouseY, Screen screen, FontRenderer font, ItemRenderer itemRenderer) {} 15 | default void init(Consumer add, Navigator navigator, Position2D offset) {} 16 | } 17 | -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/shaker_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/block", 3 | "textures": { 4 | "particle": "foodpower:blocks/shaker_side", 5 | "top": "foodpower:blocks/shaker_top", 6 | "bottom": "foodpower:blocks/shaker_bottom", 7 | "side": "foodpower:blocks/shaker_side" 8 | }, 9 | "elements": [ 10 | { 11 | "from": [3, 0, 3], 12 | "to": [13, 16, 13], 13 | "faces": { 14 | "up": {"uv": [13, 13, 3, 3], "texture": "#top"}, 15 | "down": {"uv": [3, 3, 13, 13], "texture": "#bottom"}, 16 | "north": {"uv": [3, 0, 13, 16], "texture": "#side"}, 17 | "east": {"uv": [3, 0, 13, 16], "texture": "#side"}, 18 | "south": {"uv": [3, 0, 13, 16], "texture": "#side"}, 19 | "west": {"uv": [3, 0, 13, 16], "texture": "#side"} 20 | } 21 | } 22 | ] 23 | } -------------------------------------------------------------------------------- /src/main/java/com/github/immortalmice/foodpower/specialclass/CreamShield.java: -------------------------------------------------------------------------------- 1 | package com.github.immortalmice.foodpower.specialclass; 2 | 3 | import com.github.immortalmice.foodpower.lists.FPCreativeTabs; 4 | import com.github.immortalmice.foodpower.lists.OtherItems.Items; 5 | 6 | import net.minecraft.entity.LivingEntity; 7 | import net.minecraft.item.Item; 8 | import net.minecraft.item.ItemStack; 9 | import net.minecraft.item.ShieldItem; 10 | 11 | public class CreamShield extends ShieldItem { 12 | public CreamShield() { 13 | super(new Item.Properties().maxDamage(220).group(FPCreativeTabs.ITEM_TAB)); 14 | } 15 | 16 | @Override 17 | public boolean isShield(ItemStack stack, LivingEntity entity) { 18 | return super.isShield(stack, entity) || entity.getActiveItemStack().getItem() == Items.CREAM_SHIELD; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/foodpower/models/block/revolving_cake_stand_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/block", 3 | "textures": { 4 | "particle": "foodpower:blocks/revolving_cake_stand_side", 5 | "top": "foodpower:blocks/revolving_cake_stand_top", 6 | "side": "foodpower:blocks/revolving_cake_stand_side" 7 | }, 8 | "elements": [ 9 | { 10 | "from": [0, 0, 0], 11 | "to": [16, 16, 16], 12 | "faces": { 13 | "up": {"uv": [16, 16, 0, 0], "texture": "#top"}, 14 | "down": {"uv": [0, 0, 16, 16], "texture": "#side"}, 15 | "north": {"uv": [0, 0, 16, 16], "texture": "#side"}, 16 | "east": {"uv": [0, 0, 16, 16], "texture": "#side"}, 17 | "south": {"uv": [0, 0, 16, 16], "texture": "#side"}, 18 | "west": {"uv": [0, 0, 16, 16], "texture": "#side"} 19 | } 20 | } 21 | ] 22 | } --------------------------------------------------------------------------------