Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.morefood.mod.crafting;
- import net.minecraft.init.Items;
- import net.minecraft.item.Item;
- import net.minecraft.item.ItemStack;
- import com.morefood.mod.Morefood;
- public class SauceMakerRecipes {
- public SauceMakerRecipes() {
- }
- public static ItemStack getJuicingResult(Item item, Item item2) {
- return getOutput(item, item2);
- }
- public static ItemStack getOutput(Item item, Item item2) {
- //Recipe 1
- if (item == Morefood.cropStrawberry && item2 == Items.bowl) {
- return new ItemStack(Morefood.itemStrawberrySauce, 1);
- }
- return null;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment