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
          • add
          • remove
          • leaf.add
          • fertilizer.add
          • fertilizer.remove
      • 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

te.tapper

Tweaks involving the Arboreal Extractor from Thermal Expansion.

Note

The tapper command can be used to view recipes.



add

te.tapper.add : item log, fluid fluid

Adds a fluid output based on the block being tapped.

Note

In order for custom logs to work, make sure their leaves are also registered

Example

#causes tapping oak logs to produce lava
te.tapper.add : item(minecraft:log), fluid(lava);



remove

te.tapper.remove : all *

Remove all logs.

Example

#disable all reagents
te.tapper.remove : *;



leaf.add

te.tapper.leaf.add : item log, item leaf

Registers a leaf to a provided log. The Arboreal Extractor will only work on trees with a correct leaves attached.

This means that when adding a custom tree, the correct leaves will need to be registered to its log type.



fertilizer.add

te.tapper.fertilizer.add : item item, integer multiplier

Adds a fertilizer with the specified multiplier.

Example

#adds diamond to the fertilizers with x5 multiplier
te.tapper.fertilizer.add : item(minecraft:diamond), 5;



fertilizer.remove

te.tapper.fertilizer.remove : all *

Remove all fertilizers.

Example

#disable all fertilizers
te.tapper.fertilizer.remove : *;


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