Advanced config explanation

# AIO Jetpacks configuration

# Enable or disable permissions system
use-permissions: true

# You can add your own jetpacks here
jetpacks:
  # === PROFILE START ===
  # The jetpacks profile name, needs to be unique
  example:
    # Display name, that the jetpack item should have
    displayName: Example Jetpack
    # The item that should be used as jetpack
    item: IRON_CHESTPLATE
    # The jetpacks recipe, to use no recipe, type []
    recipe:
    # First recipe row, to leave a field empty, write NULL
    - NULL REDSTONE NULL
    # Second recipe row, to leave a field empty, write NULL
    - REDSTONE IRON_CHESTPLATE REDSTONE
    # Third recipe row, to leave a field empty, write NULL
    - FEATHER BLAZE_ROD FEATHER
    # Here you can add enchantments to the item, write {} to leave empty.
    enchantments:
      # <ENCHANTMENT>: Level
      PROTECTION_ENVIRONMENTAL: 5
    # Set if fuel is infinite
    infiniteFuel: false
    # The fuel item to use
    fuel: COAL
    # How many ticks you can fly with one piece of fuel
    ticksPerFuel: 300
    # Normal speed of the jetpack
    normalSpeed: 1.0
    # Speed when pressing sprint key + W
    fastSpeed: 1.5
    # Speed when sneaking
    slowSpeed: 0.5
    # Idle drain delay of potion effects in ticks. 0 means every tick, 1 means every 2nd tick. Set it to -1 to disable idle drain.
    effectsIdleDrain: -1
    # Here you can add potion effects, write {} to leave empty.
    effects:
      # <EFFECT>: Effect strength
      SPEED: 2
  # === PROFILE END ===
  # Add as many jetpacks as you want, after this.