Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.16 KB | None | 0 0
  1. package com.trustinlies.supernatural.recipes;
  2.  
  3. import com.google.common.collect.Maps;
  4. import com.trustinlies.supernatural.init.ItemInit;
  5. import net.minecraft.item.Item;
  6. import net.minecraft.item.ItemStack;
  7.  
  8. import java.util.Map;
  9.  
  10. public class WellRecipes {
  11.  
  12.     private static final WellRecipes essenceWell = new WellRecipes();
  13.     private final Map focusList = Maps.newHashMap();
  14.     private final Map experienceList = Maps.newHashMap();
  15.  
  16.     public static WellRecipes instance(){
  17.         return essenceWell;
  18.     }
  19.  
  20.     private WellRecipes(){
  21.         addWellRecipe(
  22.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  23.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  24.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  25.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  26.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  27.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  28.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  29.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  30.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  31.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  32.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  33.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  34.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  35.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  36.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  37.                 new ItemStack(ItemInit.CREEPER_ESSENCE),
  38.                 new ItemStack(ItemInit.OBSIDIAN_SOUL_GEM_EMPTY),
  39.                 new ItemStack(ItemInit.ZINC_INGOT), 0.7F);
  40.  
  41.     }
  42.  
  43.     public void addWellRecipe(ItemStack input1, ItemStack input2, ItemStack input3, ItemStack input4, ItemStack input5, ItemStack input6, ItemStack input7, ItemStack input8, ItemStack input9, ItemStack input10, ItemStack input11, ItemStack input12, ItemStack input13, ItemStack input14, ItemStack input15, ItemStack input16, ItemStack input17, ItemStack output, float exp){
  44.         focusList.put(input1, input2, input3, input4, input5, input6, input7, input8, input9, input10, input11, input12, input13, input14, input15, input16, input17, output);
  45.     }
  46.  
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement