本文整理汇总了Java中vazkii.botania.api.recipe.RecipePetals类的典型用法代码示例。如果您正苦于以下问题:Java RecipePetals类的具体用法?Java RecipePetals怎么用?Java RecipePetals使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
RecipePetals类属于vazkii.botania.api.recipe包,在下文中一共展示了RecipePetals类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: apply
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
/**
* Called to apply the set (if not player-specific)
*/
@Override
public void apply() {
if(what != null) {
LogHelper.info("Removing Botania petal apothecary recipes producing '{}'.", ItemUtility.outputItemName(what));
} else if(with != null) {
LogHelper.info("Removing Botania petal apothecary recipes using {}.",
Joiner.on(", ").join(Arrays.stream(with).map(ItemUtility::outputItemName).collect(Collectors.toList())));
} else {
LogHelper.info("Removing all Botania petal apothecary recipes.");
}
for(RecipePetals recipe : recipes) {
BotaniaAPI.petalRecipes.remove(recipe);
}
}
示例2: init
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
/**
* Called to initialize the set
*
* @throws OperationException If something went wrong
*/
@Override
public void init() throws OperationException {
recipes.clear();
for(RecipePetals recipe : BotaniaAPI.petalRecipes) {
if(!ItemUtility.areRecipesEquivalent(what, recipe.getOutput(), with, recipe.getInputs())) continue;
recipes.add(recipe);
}
}
示例3: undo
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
/**
* Called to remove the set (if not player-specific)
*/
@Override
public void undo() {
for(RecipePetals recipe : recipes) {
BotaniaAPI.petalRecipes.add(recipe);
}
}
示例4: init
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的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.addPetalRecipe must have a valid 'output'.");
if(with == null || with.length <= 0) throw new OperationException("Botania.addPetalRecipe must have at least one valid intput ('with').");
recipe = new RecipePetals(output, RecipeInput.getFacsimileItems(with));
}
示例5: petalRecipesPage
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
@Override
public LexiconPage petalRecipesPage(String key, List<RecipePetals> recipes) {
return dummyPage(key);
}
示例6: petalRecipePage
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
@Override
public LexiconPage petalRecipePage(String key, RecipePetals recipe) {
return dummyPage(key);
}
示例7: registerPetalRecipe
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
/**
* Registers a Petal Recipe.
* @param output The ItemStack to craft.
* @param inputs The objects for crafting. Can be ItemStack, MappableStackWrapper
* or String (case for Ore Dictionary). The array can't be larger than 16.
* @return The recipe created.
*/
public static RecipePetals registerPetalRecipe(ItemStack output, Object... inputs) {
Preconditions.checkArgument(inputs.length <= 16);
RecipePetals recipe = new RecipePetals(output, inputs);
petalRecipes.add(recipe);
return recipe;
}
示例8: registerPetalRecipe
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
/**
* Registers a Petal Recipe.
* @param output The ItemStack to craft.
* @param inputs The objects for crafting. Can be ItemStack, MappableStackWrapper
* or String (case for Ore Dictionary). The array can't be larger than 16.
* @return The recipe created.
*/
public static RecipePetals registerPetalRecipe(ItemStack output, Object... inputs) {
RecipePetals recipe = new RecipePetals(output, inputs);
petalRecipes.add(recipe);
return recipe;
}
示例9: petalRecipesPage
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
public LexiconPage petalRecipesPage(String key, List<RecipePetals> recipes);
示例10: petalRecipePage
import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
public LexiconPage petalRecipePage(String key, RecipePetals recipe);