add solderer, processors, silicon, quartz enriched iron
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
package storagecraft.tile.solderer;
|
||||
|
||||
import net.minecraft.init.Blocks;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import storagecraft.StorageCraftBlocks;
|
||||
import storagecraft.StorageCraftItems;
|
||||
import storagecraft.item.ItemProcessor;
|
||||
|
||||
public class SoldererRecipeCraftingGrid implements ISoldererRecipe
|
||||
{
|
||||
@Override
|
||||
public ItemStack getRow(int row)
|
||||
{
|
||||
if (row == 0)
|
||||
{
|
||||
return new ItemStack(StorageCraftItems.PROCESSOR, 1, ItemProcessor.TYPE_ADVANCED);
|
||||
}
|
||||
else if (row == 1)
|
||||
{
|
||||
return new ItemStack(StorageCraftBlocks.GRID, 1, 0);
|
||||
}
|
||||
else if (row == 2)
|
||||
{
|
||||
return new ItemStack(Blocks.crafting_table);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack getResult()
|
||||
{
|
||||
return new ItemStack(StorageCraftBlocks.GRID, 1, 1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getDuration()
|
||||
{
|
||||
return 500;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user