• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java RecipePetals类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java IRCUser类代码示例发布时间:2022-05-22
下一篇:
Java PfxOptions类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap