Mekanism-tilera-Edition/common/rebelkeithy/mods/metallurgy/api/IOreInfo.java

40 lines
973 B
Java

package rebelkeithy.mods.metallurgy.api;
import net.minecraft.item.ItemStack;
public interface IOreInfo
{
// Returns an array of OreDictionary keys of the dusts the make this if it's
// an alloy
// if it's not an alloy, this returns null
public String[] getAlloyRecipe();
public ItemStack getBlock();
public ItemStack getBrick();
// If this ore drops something other than itself, this returns the ItemStack
// of the drop, otherwise returns null
public ItemStack getDrop();
public int getDropAmountMax();
public int getDropAmountMin();
// Returns the itemstack of dust this ore crushes into, if no dust exists,
// returns null
public ItemStack getDust();
// Returns the itemstack of ingot for this ore, if no ingot exists, returns
// null
public ItemStack getIngot();
public String getName();
public ItemStack getOre();
public OreType getType();
public boolean isEnabled();
}