Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.TechDweebGaming.MystTech.crafting;
- import net.minecraft.init.Items;
- import net.minecraft.item.ItemStack;
- import com.TechDweebGaming.MystTech.item.ModItems;
- import com.TechDweebGaming.MystTech.tileentity.CompressorTileEntity;
- public class CompressorRecipes {
- private static CompressorTileEntity te;
- static ItemStack CreeperEssence = new ItemStack(ModItems.CreeperEssence);
- public static void registerCompressorRecipes(ItemStack parItemStackInput, ItemStack parItemStackOutput) {
- //Detect if output slot is empty
- if (parItemStackOutput == null) {
- if (parItemStackInput.isItemEqual(CreeperEssence)) {
- if (haveEnoughEnergy(2500) == true) {
- processCompression(new ItemStack(Items.skull, 1, 4), 2500);
- }
- }
- }
- }
- public static boolean haveEnoughEnergy(int energyUsage) {
- if (te.EnergyBuffer > energyUsage) {
- return true;
- } else {
- return false;
- }
- }
- public static void processCompression(ItemStack parItemStackOutput, int energyUsage) {
- //Consume Power
- int prevEnergyBuffer = te.EnergyBuffer;
- te.EnergyBuffer = prevEnergyBuffer - energyUsage;
- //Process Items
- te.setInventorySlotContents(0, null);
- te.setInventorySlotContents(1, parItemStackOutput);
- te.markDirty();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement