Advertisement
Guest User

Untitled

a guest
Mar 16th, 2019
2,640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.42 KB | None | 0 0
  1. #####
  2. # From the Custom Items Minecraft Plugin — https://www.spigotmc.org/resources/63848/
  3. # By jojodmo — http://jojodmo.com
  4. #####
  5.  
  6. #####
  7. # Adding custom recipes to Minecraft items. This will let you turn
  8. # One compressed cobblestone into nine Minecraft cobblestone
  9. #
  10. # This should be in the file named cobblestone.yml, because we are
  11. # Making changes to Minecraft's cobblestone
  12. #####
  13.  
  14.   # Native must be set to true for any Minecraft items
  15.   native: true
  16.  
  17.   # OPTIONAL. Custom recipes that can be used to craft this item. Again, pay attention to formatting.
  18.   recipes:
  19.     # Start of a new recipe
  20.     -
  21.       # REQUIRED. Whether or not the recipe is shaped. This recipe is not shaped
  22.       shaped: false
  23.  
  24.       # REQUIRED. All of the items required for the recipe. The amounts can add up to at most nine.
  25.       # Again, pay close attention to the formatting. Start each new item with a -, and indent all children.
  26.       # Because this recipe is not shaped (shaped: false), each child of items must have both 'item' and 'amount'
  27.       items:
  28.        # Start of a new item
  29.         -
  30.           # REQUIRED. the item; see referencing items above. This references the custom item compressedCobblestone
  31.           item: compressedCobblestone
  32.  
  33.           # REQUIRED. the amount of the above item
  34.           amount: 1
  35.  
  36.       # OPTIONAL. The amount of cobblestone created from this recipe. Defaults to 1
  37.       resultAmount: 9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement