Advertisement
Mykeware

Untitled

Mar 6th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. testcrate { # This line represents the crate id.
  2. items=[
  3. {
  4. amount=1 # The amount of an item.
  5. chance=25 # The chance, out of 100, that this item will be drawn.
  6. command="give %p pixelmon:exp_share 1" # A command to run on picking this item.
  7. id="pixelmon:pixelmon_sprite" # The id of the item we're using
  8. lore="Pika" # Lore.
  9. name="Pikachu Photo" # A name
  10. },
  11. {
  12. amount=1 # The amount of an item.
  13. chance=25 # The chance, out of 100, that this item will be drawn.
  14. command="give %p pixelmon:lucky_egg 1" # A command to run on picking this item.
  15. id="pixelmon:pixelmon_sprite" # The id of the item we're using
  16. lore="Char" # Lore.
  17. name="Charmander Photo" # A name
  18. }
  19. #Make sure your chances don't add past 100 or you'll get an error!
  20. ]
  21. name="ยง6Vote Crate" # Make sure this looks good everywhere :)
  22. type=Spinner # Types will be added in the future, but keeping this as a Spinner will keep your config future proof.
  23. }
  24. #Keys will also be configurable in the future, so keep your eye out.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement