22 lines
421 B
Java
22 lines
421 B
Java
package techreborn.api.recipe;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
import techreborn.init.ModItems;
|
|
import techreborn.lib.Reference;
|
|
|
|
public class ScrapboxRecipe extends BaseRecipe
|
|
{
|
|
|
|
public ScrapboxRecipe(ItemStack output)
|
|
{
|
|
super(Reference.scrapboxRecipe, 0, 0);
|
|
inputs.add(new ItemStack(ModItems.scrapBox));
|
|
addOutput(output);
|
|
}
|
|
|
|
@Override
|
|
public String getUserFreindlyName()
|
|
{
|
|
return "Scrapbox";
|
|
}
|
|
}
|