recipes.yml

recipes.yml

This is the heart of the plugin. It defines every hopper tier, its speed, and its crafting recipe. You can add, remove, or edit tiers here.

Structure of a Tier

# This is the unique ID. Used in commands like /fh give.
tier_name: # tier name inserted in the (tier_name) not after the colon
  # The number of items to move at once. Higher is faster. Vanilla is 1.
  speed: 4
  crafting:
    # Set to true to allow this hopper to be crafted.
    enabled: true
    # A 3x3 grid for the recipe. Use material names (e.g., DIAMOND)
    # or other hopper IDs (e.g., fastest).
    recipe:
      - [ 'ITEM_1', 'ITEM_2', 'ITEM_3' ]
      - [ 'ITEM_4', 'ITEM_5', 'ITEM_6' ]
      - [ 'ITEM_7', 'ITEM_8', 'ITEM_9' ]
    # If you want nothing do 'AIR'

Using Hoppers in Recipes: You can use both standard Minecraft material names (e.g., DIAMOND) and the unique ID of other TurboHoppers (e.g., slowest). This allows you to create an upgrade progression where players must craft the tiers in order.

Last updated