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
        • add
        • remove
        • fuel.add
        • fuel.remove
      • 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
        • te.insolator
        • te.pulverizer
        • te.sawmill
        • te.smelter
  • Arguments
    • all
    • boolean
    • float
    • fluid
    • ingredient
    • integer
    • item
    • null
    • ore
    • string
  • Roadmap
  • Changelog

furnace

Tweaks involving changing of Vanilla furnace recipes and fuels.



add

furnace.add : item output, item input
furnace.add : item output, item input, float experience

Adds a recipe to the furnace with the option to specify the experience dropped.

Example

#add recipe to turn diamonds into emeralds
furnace.add : item(minecraft:emerald), item(minecraft:diamond), 4.0;



remove

furnace.remove : all *
furnace.remove : item output

Remove all or a recipe specified by its output.

Example

#disable all furnace recipes
furnace.remove : *;

#disable the vanilla stone recipe
furnace.remove : item(minecraft:stone);



fuel.add

furnace.fuel.add : item fuel, integer burnTime)

Adds a new fuel type, burning for the specified time.

Example

#add diamonds as a fuel, burning 10 times longer than coal
furnace.fuel.add : item(minecraft:diamond), 8000;



fuel.remove

furnace.fuel.remove : all *
furnace.fuel.remove : item fuel

Removes all or a specified fuel.

Example

#remove all fuels.
furnace.fuel.remove : *;

#remove coal as a fuel.
furnace.fuel.remove : item(minecraft:coal);


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