2016-05-16 22:52:27 +02:00
|
|
|
/*
|
|
|
|
* This file ("IMethodHandler.java") is part of the Actually Additions mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
* http://ellpeck.de/actaddlicense
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-2016 Ellpeck
|
2016-05-16 22:52:27 +02:00
|
|
|
*/
|
|
|
|
|
2016-05-14 13:51:18 +02:00
|
|
|
package de.ellpeck.actuallyadditions.api.internal;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.api.recipe.CoffeeIngredient;
|
2016-05-14 14:14:06 +02:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2016-05-14 13:51:18 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.potion.PotionEffect;
|
2016-05-14 14:14:06 +02:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2016-05-14 13:51:18 +02:00
|
|
|
|
2016-10-30 17:13:46 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2016-05-14 13:51:18 +02:00
|
|
|
/**
|
|
|
|
* This is the internal method handler.
|
|
|
|
* Use ActuallyAdditionsAPI.methodHandler for calling
|
|
|
|
* This is not supposed to be implemented.
|
|
|
|
*/
|
|
|
|
public interface IMethodHandler{
|
|
|
|
|
|
|
|
boolean addEffectToStack(ItemStack stack, CoffeeIngredient ingredient);
|
|
|
|
|
|
|
|
PotionEffect getSameEffectFromStack(ItemStack stack, PotionEffect effect);
|
|
|
|
|
|
|
|
void addEffectProperties(ItemStack stack, PotionEffect effect, boolean addDur, boolean addAmp);
|
|
|
|
|
|
|
|
void addEffectToStack(ItemStack stack, PotionEffect effect);
|
|
|
|
|
|
|
|
PotionEffect[] getEffectsFromStack(ItemStack stack);
|
2016-05-14 14:14:06 +02:00
|
|
|
|
|
|
|
boolean invokeConversionLens(IBlockState hitState, BlockPos hitBlock, IAtomicReconstructor tile);
|
2016-07-31 17:20:49 +02:00
|
|
|
|
2016-10-30 17:13:46 +01:00
|
|
|
boolean addCrusherRecipes(List<ItemStack> inputs, List<ItemStack> outputOnes, int outputOneAmounts, List<ItemStack> outputTwos, int outputTwoAmounts, int outputTwoChance);
|
2016-05-14 13:51:18 +02:00
|
|
|
}
|