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


Java RecipeElvenTrade类代码示例

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

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

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

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

示例5: elvenTradePage

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

示例6: elvenTradesPage

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

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

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

示例9: elvenTradePage

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

示例10: elvenTradesPage

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


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