v1.0.3
  • GitHub

Navigation

  • Home
  • Getting Started
    • Scripting
    • Tutorial - First Script
    • Tutorial - For Loops
  • Commands
    • enchant
    • fluid
    • hand
    • inventory
    • ore
    • recipe
    • te (Thermal Expansion)
  • Actions
    • Vanilla
      • furnace
      • recipes
    • Just Enough Items
      • jei
    • Thermal Expansion
      • Devices
        • te.collector
        • te.coolant
        • te.diffuser
        • te.factorizer
        • te.fisher
        • te.tapper
      • Machines
        • te.compactor
        • te.crucible
        • te.furnace
          • add
          • remove
          • food.remove
          • pyro.add
          • pyro.remove
        • te.insolator
        • te.pulverizer
        • te.sawmill
        • te.smelter
  • Arguments
    • all
    • boolean
    • float
    • fluid
    • ingredient
    • integer
    • item
    • null
    • ore
    • string
  • Roadmap
  • Changelog

te.furnace

Tweaks involving the Redstone Furnace from Thermal Expansion.

Note

The furnace command can be used to view recipes.



add

te.furnace.add : item output, item input, integer energy, boolean isFood

Adds a recipe to the Redstone Furnace.

The isFood setting determines whether the item is added to the list of foods for the Trivection Chamber augment.

Example

#convert diamond to emerald
te.furnace.add : item(emerald), item(minecraft:diamond), 4000, false;



remove

te.furnace.remove : all *
te.furnace.remove : item input

Remove all or selected items.

Example

#disable all recipes
te.furnace.remove : *;

#disable the recipe for diamond
te.furnace.remove : item(minecraft:diamond);



food.remove

te.furnace.food.remove : all *
te.furnace.food.remove : item input

Remove all or selected items from the list of foods for the Trivection Chamber augment.

Example

#disable all food recipes
te.furnace.food.remove : *;



pyro.add

te.furnace.pyro.add : item output, item input, integer energy, integer creosote

Adds a recipe to the Redstone Furnace when using the Pyrolytic Conversion augment.

The creosote argument determines the amount of Creosote created.

Example

#convert diamond to emerald and 1 bucket of creosote
te.furnace.pyro.add : item(emerald), item(minecraft:diamond), 4000, 1000;



pyro.remove

te.furnace.pyro.remove : all *
te.furnace.pyro.remove : item input

Remove all or selected items when using the Pyrolytic Conversion augment.

Example

#disable all pyrolosis recipes
te.furnace.pyro.remove : *;


Built with MkDocs. Theme created by MinecraftForge. Hosted by Read the Docs.