PintoPlugins

Documentation for all plugins produced by PintoJ


Project maintained by TheGreatPintoJ Hosted on GitHub Pages — Theme by mattgraham

Config — Details

This page documents all configuration used by the plugin (primary focus: recipes.yml). Keep changes minimal and use the plugin GUI to generate result payloads.

Locations

Top-level format

Field reference

Notes:

Examples

Shaped recipe (3x3)

my_custom_pickaxe:
  result: <serialized item stack>
  recipe:
    - "DIAMOND,DIAMOND,DIAMOND"
    - "AIR,STICK,AIR"
    - "AIR,STICK,AIR"
  type: shaped
  enabled: true
  category: tools

Shapeless recipe

berry_salad:
  result: <serialized item stack>
  recipe:
    - "APPLE"
    - "BERRY"
  type: shapeless
  enabled: true
  category: food

Furnace / smelting recipe

super_ingot:
  result: <serialized item stack>
  recipe:
    - "RAW_SUPER_ORE"
  type: furnace
  enabled: true
  cooktime: 200    # ticks
  experience: 0.7
  category: materials

Stonecutter (single-input)

polished_marble:
  result: <serialized item stack>
  recipe:
    - "MARBLE_BLOCK"
  type: stonecutter
  enabled: true

Best practices

Troubleshooting