Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. # the special ability of the job
  2. ability {
  3. cooldown=600
  4. name="Fast Destroy"
  5. # the settings of the potion effect
  6. potionEffect {
  7. ambiance=false
  8. # the amplifier of the effect, see http://minecraft.gamepedia.com/Commands#effect
  9. amplifier=2
  10. # the duration of the effect, see http://minecraft.gamepedia.com/Commands#effect
  11. duration=1200
  12. # if particles are shown
  13. particles=true
  14. # the name of the type of the potion, see http://minecraft.gamepedia.com/Data_values#Status_effects names
  15. potionType="minecraft:haste"
  16. }
  17. type=effect
  18. }
  19. # the stuff that awards ep to the player
  20. actions {
  21. break {
  22. items=[
  23. {
  24. # setting if also another job has this item, if true all items will be checked if they can be used
  25. alsoInOtherJob=false
  26. # an blockstate or blocktype as a string, see http://minecraft.gamepedia.com/Data_values#Block_IDs it also supports blockdata
  27. item="gregtech:ore_magnetite_0"
  28. # the item matches everything
  29. matchesAll=false
  30. # level needed to use this item with the action
  31. needLevel=0
  32. # amount of job xp gained after finishing the action with this item
  33. xp=100.0
  34. }
  35. ]
  36. }
  37. }
  38. # the boni of the job
  39. bonus {
  40. economy=[
  41. {
  42. # actions that can award this bonus (BREAK, ENTITY_DAMAGE, ENTITY_KILL, ENTITY_TAME, ITEM_USE, PLACE)
  43. actions=[]
  44. # maximal amount of money
  45. amountMax=0.02
  46. # minimal amount of money
  47. amountMin=0.02
  48. # the id of the currency to use, defaults to the default currency
  49. currency=null
  50. # an optional list of jobitems that are allowed to reward this bonus
  51. jobItems=[]
  52. # maximum level the bonus is awarded at
  53. maxLevel=-1
  54. # message send when the bonus is awarded
  55. message {
  56. text="test123"
  57. }
  58. # the minimum level a player need to get the bonus
  59. minLevel=0
  60. # if true it will only be awarded if the job is selected
  61. onlySelected=true
  62. # the probability that the bonus is awarded (between 0.0 and 1.0)
  63. probability=1.0
  64. # the message will only be send if this is true
  65. sendMessage=true
  66. }
  67. ]
  68. }
  69. # description shown on the info comment
  70. description="Bergabeiter fΓΌr erze!"
  71. # id of the job used for the comments and to save the data to the player
  72. id=miner
  73. # a list of ep points the player needs for each level, if not set it will use the default levels
  74. level=[]
  75. # name of the job shown to the user
  76. name=Miner
  77. # permission needed to join the job
  78. permission=""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement