Guest User

SauceMakerRecipes

a guest
Dec 5th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. package com.morefood.mod.crafting;
  2.  
  3. import net.minecraft.init.Items;
  4. import net.minecraft.item.Item;
  5. import net.minecraft.item.ItemStack;
  6.  
  7. import com.morefood.mod.Morefood;
  8.  
  9. public class SauceMakerRecipes {
  10.  
  11. public SauceMakerRecipes() {
  12.  
  13. }
  14.  
  15. public static ItemStack getJuicingResult(Item item, Item item2) {
  16. return getOutput(item, item2);
  17. }
  18.  
  19. public static ItemStack getOutput(Item item, Item item2) {
  20.  
  21. //Recipe 1
  22. if (item == Morefood.cropStrawberry && item2 == Items.bowl) {
  23. return new ItemStack(Morefood.itemStrawberrySauce, 1);
  24. }
  25. return null;
  26. }
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment