Way being picky.
This commit is contained in:
parent
e3644f2d2b
commit
7e30b02d69
303 changed files with 622 additions and 311 deletions
|
@ -8,7 +8,8 @@ import thaumcraft.api.aspects.AspectList;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class CrucibleRecipe {
|
||||
public class CrucibleRecipe
|
||||
{
|
||||
public ItemStack recipeOutput;
|
||||
public Object catalyst;
|
||||
public AspectList aspects;
|
||||
|
|
|
@ -6,7 +6,8 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.world.World;
|
||||
import thaumcraft.api.aspects.AspectList;
|
||||
|
||||
public interface IArcaneRecipe {
|
||||
public interface IArcaneRecipe
|
||||
{
|
||||
/**
|
||||
* Used to check if a recipe matches current crafting inventory
|
||||
*
|
||||
|
|
|
@ -13,7 +13,8 @@ import java.util.ArrayList;
|
|||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
|
||||
public class InfusionEnchantmentRecipe {
|
||||
public class InfusionEnchantmentRecipe
|
||||
{
|
||||
public AspectList aspects;
|
||||
public String research;
|
||||
public ItemStack[] components;
|
||||
|
|
|
@ -9,7 +9,8 @@ import thaumcraft.api.aspects.AspectList;
|
|||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class InfusionRecipe {
|
||||
public class InfusionRecipe
|
||||
{
|
||||
public AspectList aspects;
|
||||
public String research;
|
||||
public ItemStack[] components;
|
||||
|
|
|
@ -13,7 +13,8 @@ import thaumcraft.api.aspects.AspectList;
|
|||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
|
||||
public class ShapedArcaneRecipe implements IArcaneRecipe {
|
||||
public class ShapedArcaneRecipe implements IArcaneRecipe
|
||||
{
|
||||
//Added in for future ease of change, but hard coded for now.
|
||||
private static final int MAX_CRAFT_GRID_WIDTH = 3;
|
||||
private static final int MAX_CRAFT_GRID_HEIGHT = 3;
|
||||
|
|
|
@ -13,7 +13,8 @@ import thaumcraft.api.aspects.AspectList;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
|
||||
public class ShapelessArcaneRecipe implements IArcaneRecipe {
|
||||
public class ShapelessArcaneRecipe implements IArcaneRecipe
|
||||
{
|
||||
private ItemStack output = null;
|
||||
private ArrayList input = new ArrayList();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue