Advertisement
Guest User

Untitled

a guest
Jul 14th, 2013
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. #####################################
  2. # This is an example custom #
  3. # Feel free to edit as you please! #
  4. #####################################
  5. #
  6. #========================================================================================================
  7. # ***NAME***
  8. # Name of the food - this name will show up in-game, and supports colours with &
  9. name: '&cHealth Potion'
  10. #========================================================================================================
  11. # ***DESCRIPTION***
  12. # Description of the food. This will show up in-game as well.
  13. # To add more another line, just add another.. for example:
  14. # 6: 'My test'
  15. # Make sure it's aligned correctly!
  16. description:
  17. 1: '&aPotion lvl 1'
  18. 2: '&aRestores 10 health'
  19. #========================================================================================================
  20. # ***PERMISSION***
  21. # Permission to craft this item
  22. permission: MoarStuff.Drinks.Healing1
  23. #========================================================================================================
  24. # ***ITEM TYPE***
  25. # The ID of the item that is the result of crafting
  26. item-type: 373
  27. #========================================================================================================
  28. # *** CRAFTING ***
  29. # If it is shapeless, just add the ingredient ids int here. for example:
  30. # ingredients:
  31. # - 02
  32. # - 07
  33. #
  34. # For shaped, ingredients is a bit more confusing.
  35. # Each number represents a possible spot in the recipe.
  36. # Next to the number, after the semicolon, add the item id which it represents
  37. # For example:
  38. # 1: 2
  39. # We just made it so that '1' represents 2 or 'grass'.
  40. # When we call it in our shape, it will represent grass in the crafting table spot.
  41. # The numbers are ordered like so:
  42. # TOP LEFT, TOP MIDDLE, TOP RIGHT, MIDDLE LEFT, MIDDLE MIDDLE, MIDDLE RIGHT, BOTTOM LEFT, BOTTOM MIDDLE, BOTTOM RIGHT
  43. # **warning** - if you want to use air, leave the ingredient spot blank
  44. recipe:
  45. shapeless:
  46. ingredients: []
  47. shaped:
  48. ingredients:
  49. a: 296
  50. b: 371
  51. c: 318
  52. d:
  53. e:
  54. f:
  55. g:
  56. h:
  57. i:
  58. shape: cac,bab,cac
  59. #========================================================================================================
  60. # *** EFFECTS ***
  61. #
  62. # This is one of the most tricky parts of this whole plugin. If you mess anything up here, it may cause errors
  63. # or maybe even server crashes. But don't worry, it's pretty simple if you can understand english. If not,
  64. # post on plugin page asking for help, or maybe help me translate? :D
  65. #
  66. # Bows only have the option to check when the bow fires, or when the arrow from the bow hits.
  67. #
  68. effects:
  69. on_consume:
  70. potion-1: ADD_POTION;PLAYER;SPEED;30;0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement