本文整理汇总了Java中vazkii.botania.api.recipe.RecipeElvenTrade类的典型用法代码示例。如果您正苦于以下问题:Java RecipeElvenTrade类的具体用法?Java RecipeElvenTrade怎么用?Java RecipeElvenTrade使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
RecipeElvenTrade类属于vazkii.botania.api.recipe包,在下文中一共展示了RecipeElvenTrade类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: apply
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
/**
* Called to apply the set (if not player-specific)
*/
@Override
public void apply() {
if(what != null) {
LogHelper.info("Removing Botania Elven trades producing '{}'.", ItemUtility.outputItemName(what));
} else if(with != null) {
LogHelper.info("Removing Botania Elven trades using {}.",
Joiner.on(", ").join(Arrays.stream(with).map(ItemUtility::outputItemName).collect(Collectors.toList())));
} else {
LogHelper.info("Removing all Botania Elven trades.");
}
for(RecipeElvenTrade recipe : recipes) {
BotaniaAPI.elvenTradeRecipes.remove(recipe);
}
}
示例2: init
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
/**
* Called to initialize the set
*
* @throws OperationException If something went wrong
*/
@Override
public void init() throws OperationException {
if(output == null) throw new OperationException("Botania.addElvenTrade must have a valid 'output'.");
if(with == null || with.length <= 0) throw new OperationException("Botania.addElvenTrade must have at least one valid intput ('with').");
recipe = new RecipeElvenTrade(output, RecipeInput.getFacsimileItems(with));
}
示例3: init
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
/**
* Called to initialize the set
*
* @throws OperationException If something went wrong
*/
@Override
public void init() throws OperationException {
recipes.clear();
for(RecipeElvenTrade recipe : BotaniaAPI.elvenTradeRecipes) {
if(!ItemUtility.areRecipesEquivalent(what, recipe.getOutput(), with, recipe.getInputs())) continue;
recipes.add(recipe);
}
}
示例4: undo
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
/**
* Called to remove the set (if not player-specific)
*/
@Override
public void undo() {
for(RecipeElvenTrade recipe : recipes) {
BotaniaAPI.elvenTradeRecipes.add(recipe);
}
}
示例5: elvenTradePage
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
@Override
public LexiconPage elvenTradePage(String key, List<RecipeElvenTrade> recipes) {
return dummyPage(key);
}
示例6: elvenTradesPage
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
@Override
public LexiconPage elvenTradesPage(String key, RecipeElvenTrade recipe) {
return dummyPage(key);
}
示例7: registerElvenTradeRecipe
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
/**
* Registers a Elven Trade recipe (throw an item in an Alfheim Portal).
* @param outputs The ItemStacks to return.
* @param inputs The items required, can be ItemStack or ore dictionary entry string.
* @return The recipe created.
*/
public static RecipeElvenTrade registerElvenTradeRecipe(ItemStack[] outputs, Object... inputs) {
RecipeElvenTrade recipe = new RecipeElvenTrade(outputs, inputs);
elvenTradeRecipes.add(recipe);
return recipe;
}
示例8: registerElvenTradeRecipe
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
/**
* Registers a Elven Trade recipe (throw an item in an Alfheim Portal).
* @param output The ItemStack to return.
* @param inputs The items required, can be ItemStack or ore dictionary entry string.
* @return The recipe created.
*/
public static RecipeElvenTrade registerElvenTradeRecipe(ItemStack output, Object... inputs) {
RecipeElvenTrade recipe = new RecipeElvenTrade(output, inputs);
elvenTradeRecipes.add(recipe);
return recipe;
}
示例9: elvenTradePage
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
public LexiconPage elvenTradePage(String key, List<RecipeElvenTrade> recipes);
示例10: elvenTradesPage
import vazkii.botania.api.recipe.RecipeElvenTrade; //导入依赖的package包/类
public LexiconPage elvenTradesPage(String key, RecipeElvenTrade recipe);