🧩Recipe

Recipes:

internal_name:  
  Req-permission: <true/false>
  Money: <amount>
  Can-buy: <true/false>
  Level: <amount>        
  Type: '<type>'        
  Materials: 
  - <material 1>:<amount>
  - <material 2>:<amount>
  - <material 3>:<amount>
  ...
  Description:
  - <line 1>
  - <line 2>
  ...
  Time: <second>

Recipe Format:

Format

in lore-format.yml

internal_name

it is the result, can be found in items.yml it means in items.yml have an item have same internal_name as this

Req-permission

does the recipe require permission? if true player don't have permission: forge.craft.<internal_name> won't see the recipe when using /forge open

Money

Currency required (vault) Example: 10, 150, 25000,...

Can-buy

can blueprint be bought in blueprint shop

Level

Level required (vanilla) Example: 6.3, 18.6, 50.92,...

Type

Gui styles, supported 4 style, can make a custom gui style in styles.yml

three default gui's style
frame type

Materials

<material> can be vanilla material (make sure you choose correct), how about dataed item? it should be <material>-<data> (data 1.14 above is custom model data) <amount> should be integer. Example: - STONE-1:400, - DIRT:60 - DIAMOND:100 ...

Description

<line> it same lore Example: - 'CAn found in Blueprint shop,...'

Time

Time it take player to forge item Example: '10', '30'

How to create?

config in recipes.yml based on format or using /forge create recipe ...

Find - Create - Edit - Refresh

Examples:

fire_sword: Type: 'vertical' Money: 1000 Level: 10 Materials: - MAGMA_BLOCK:64 - BLAZE_POWDER:64 - LAVA_BUCKET:1 - MAGMA_CREAM:64

obsidian_axe: Type: 'horizontal' Money: 2500 Level: 10 Materials: - OBSIDIAN:64 - STICK:64 - COAL_BLOCK:64 - MAGMA_BLOCK:64

Last updated