Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1.  
  2. # Name which will be displayed
  3. # when opening the station
  4. name: 'Materials Crafting Station (#page#/#max#)'
  5.  
  6. # The maximum amount of items in the crafting queue ie. the
  7. # max number of items players are able to craft simultaneously.
  8. max-queue-size: 10
  9.  
  10. # Configure GUI items here
  11. items:
  12. fill:
  13. material: AIR
  14. no-recipe:
  15. material: GRAY_STAINED_GLASS_PANE
  16. name: '&aNo Recipe'
  17. no-queue-item:
  18. material: GRAY_STAINED_GLASS_PANE
  19. name: '&aNo Item in Queue'
  20.  
  21. # Station recipes
  22. recipes:
  23. steel-sword:
  24.  
  25. # The item which the recipe gives
  26. output:
  27. type: SWORD
  28. id: STEEL_SWORD
  29. amount: 1
  30.  
  31. # Time it takes to craft the item
  32. crafting-time: 3
  33.  
  34. # Recipe options
  35. options:
  36. hide-when-locked: false
  37.  
  38. # Conditions to unlock the recipe
  39. conditions:
  40. - 'level 5'
  41. - 'perms mmoitems.recipe.steel-sword mmoitems.recipe.station.steel'
  42.  
  43. # Ingredients needed for the recipe
  44. # Format 1: 'mmoitem <ITEM_TYPE> <ITEM_ID> <amount> <gui_display_name>'
  45. # Format 2: 'vanilla <MATERIAL> <display_name> <amount> <gui_display_name>'
  46. ingredients:
  47. - 'mmoitem MATERIAL STEEL_INGOT 4 Steel_Ingot'
  48. - 'vanilla STICK . 2 Wooden_Stick'
  49.  
  50. steel-ingot:
  51. output:
  52. type: MATERIAL
  53. id: STEEL_INGOT
  54. amount: 3
  55. conditions:
  56. - 'level 6'
  57. ingredients:
  58. - 'vanilla IRON_INGOT . 4 Iron_Ingot'
  59.  
  60. silver-ingot:
  61. output:
  62. type: MATERIAL
  63. id: STEEL_INGOT
  64. amount: 3
  65. conditions:
  66. - 'level 6'
  67. ingredients:
  68. - 'vanilla IRON_INGOT . 4 Iron_Ingot'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement