Class

import mods.pyrotech.BrickOven;

Methods

static void addRecipe(
  string name,       // unique recipe name
  IItemStack output,
  IIngredient input 
);

static void blacklistSmeltingRecipes(
  IIngredient[] output
);

static void blacklistAllSmeltingRecipes();

Blacklist all smelting recipes.


static void whitelistSmeltingRecipes(
  IIngredient[] output
);

static void removeRecipes(
  IIngredient output // output ingredient to match
);

static void setGameStages(
  Stages stages // game stages
);

Sets game stage logic required to use the device.


Examples

import mods.pyrotech.BrickOven;

// cook an apple into a baked apple
BrickOven.addRecipe("baked_apple_from_apple", <pyrotech:apple_baked>, <minecraft:apple>);