当前位置: 首页>>代码示例>>Java>>正文


Java RecipePetals类代码示例

本文整理汇总了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);
    }
}
 
开发者ID:legendblade,项目名称:CraftingHarmonics,代码行数:19,代码来源:RemovePetalRecipeOperation.java

示例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);
    }
}
 
开发者ID:legendblade,项目名称:CraftingHarmonics,代码行数:15,代码来源:RemovePetalRecipeOperation.java

示例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);
    }
}
 
开发者ID:legendblade,项目名称:CraftingHarmonics,代码行数:10,代码来源:RemovePetalRecipeOperation.java

示例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));
}
 
开发者ID:legendblade,项目名称:CraftingHarmonics,代码行数:12,代码来源:AddPetalRecipeOperation.java

示例5: petalRecipesPage

import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
@Override
public LexiconPage petalRecipesPage(String key, List<RecipePetals> recipes) {
	return dummyPage(key);
}
 
开发者ID:VapourDrive,项目名称:Hammerz,代码行数:5,代码来源:DummyMethodHandler.java

示例6: petalRecipePage

import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
@Override
public LexiconPage petalRecipePage(String key, RecipePetals recipe) {
	return dummyPage(key);
}
 
开发者ID:VapourDrive,项目名称:Hammerz,代码行数:5,代码来源:DummyMethodHandler.java

示例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;
}
 
开发者ID:VapourDrive,项目名称:Hammerz,代码行数:14,代码来源:BotaniaAPI.java

示例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;
}
 
开发者ID:Nincodedo,项目名称:Nincrafty-Things,代码行数:13,代码来源:BotaniaAPI.java

示例9: petalRecipesPage

import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
public LexiconPage petalRecipesPage(String key, List<RecipePetals> recipes); 
开发者ID:VapourDrive,项目名称:Hammerz,代码行数:2,代码来源:IInternalMethodHandler.java

示例10: petalRecipePage

import vazkii.botania.api.recipe.RecipePetals; //导入依赖的package包/类
public LexiconPage petalRecipePage(String key, RecipePetals recipe); 
开发者ID:VapourDrive,项目名称:Hammerz,代码行数:2,代码来源:IInternalMethodHandler.java


注:本文中的vazkii.botania.api.recipe.RecipePetals类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。