Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.59 KB | None | 0 0
  1. #Welcome to the Custom Pets yml.
  2. #Here you can create as many pets as your heart desires.
  3. #
  4. #Placeholders:
  5. # - {player}
  6. # - %min-max% (Example: %1-10%) This generates a random number from 1-10. Useful for many things.
  7. #
  8. #What happens when the pet activates:
  9. #
  10. # Different activation events determine when the pet activates.
  11. # Here is the list:
  12. #
  13. # PlayerInteractEvent - Whenever a player right-clicks the pet.
  14. # PetTimerEvent - Every (timer-length) seconds, the skills for the pet's level runs.
  15. # EntityDamageEvent - When you take any form of damage.
  16. # EntityDamageByEntityEvent - When you deal damage to another entity.
  17. # EntityDeathEvent - When you kill another entity.
  18. # BlockBreakEvent - When you break blocks.
  19. #
  20. # There are conditions that you can specify AFTER the arguments for each command that must be met in order for it to be ran.
  21. # Each event has it's own set of conditions.
  22. # Each command can have unlimited conditions as long as they are availiable in the event.
  23. #
  24. # PlayerInteractEvent - No conditions.
  25. #
  26. # PetTimerEvent - No conditions.
  27. #
  28. # EntityDamageEvent:
  29. #
  30. # - DamageCause:(cause) - The victim's cause must be this cause.
  31. # Ex: DamageCause:FALL
  32. #
  33. # EntityDamageByEntityEvent - When you deal damage to another entity.
  34. #
  35. # - Material:(material) - The damager's item used must be this material.
  36. # Ex: Material:DIAMOND_SWORD
  37. #
  38. # - EntityType:(entityType) - The victim must be of this specific entity type for the skill to run.
  39. # Ex: EntityType:PIG
  40. #
  41. # EntityDeathEvent - When you kill another entity.
  42. #
  43. # - Material:(material) - The damager's item used must be this material.
  44. # Ex: Material:DIAMOND_SWORD
  45. #
  46. # - EntityType:(entityType) - The victim must be of this specific entity type for the skill to run.
  47. # Ex: EntityType:PIG
  48. #
  49. # BlockBreakEvent - When you break blocks.
  50. #
  51. # - Material:(material) - The breaker's item used must be this material.
  52. # Ex: Material:DIAMOND_PICKAXE
  53. #
  54. # - BlockType:(blockType) - The block that must be broken.
  55. # Ex: BlockType:STONE
  56. #
  57. #
  58. #To decide what a pet does, a pre determined list of commands has been made
  59. #To make the configuration easy enough for anyone to do.
  60. #The current list is:
  61. #"[command]" - Run a command through console - Example use: "[command] eco give {player} 100"
  62. #"[potion]" - Give the pet owner a potion - Example use: "[potion] POTION_NAME DURATION LEVEL" ("[potion] SPEED 1 3") = Speed potion for 1 second at level 3. For this one specifically, you can also do ("[potion] SPEED infinite 3") = The same effect, but with infinite duration as long as the pet remains in their inventory. Lastly, if you type for example ("[potion] POISON 10 3 5") = Poison for 10 seconds at level 3 for all players in a radius of 5.
  63. #"[remove-potion]" - Remove a potion from the pet owner - Example use "[remove-potion] POTION_NAME" ("[potion] SPEED") - Remove the SPEED potion.
  64. #"[cooldown]" - Cooldown of the pet - Example use: "[cooldown] 5" - Pet cannot be used for 5 seconds after activation.
  65. #"[gamemode]" - Change the gamemode of the player - Example use: "[gamemode] 1" - Sets the gamemode of the player to creative. (0 = Survival, 1 = Creative, 2 = SPEC, 3 = Adventure
  66. #"[replace-item] - Replace a certain amount of one item with a certain amount of another. - Example use: "[replace-item] BUCKET LAVA_BUCKET 32" - Replaces 32 buckets with lava ones. If you put 0 you can replace all items.
  67. #"[give-item]" - Give the player an item - Example use: "[give-item] ITEM_NAME AMOUNT" ("[item] DIRT 1") Gives the player one dirt.
  68. #"[particle]" - Players a particle effect around the player - Example use: "[particle] PARTICLE_NAME DURATION" - "[particle] BLOCK_DUST 20" - Plays Block Dust for 1 second
  69. #"[sound]" - Plays sound around the player - Example use: "[sound] SOUND_NAME DURATION PITCH" ("[sound] ANVIL_DROP 3 2) - Plays the sound anvil drop for 3 seconds at a pitch of 2
  70. #"[teleport]" - TP a player to a set location - Example use: "[teleport] 66 80 90"
  71. #"[max-health-change]") - Change the max health of the player - Example use: "[max-health-change] 30" - Player will have a max health of 15 hearts
  72. #"[heal]" - Health the player, will not exceed the max health - Example use "[heal] 10" - Heals the player by 5 hearts
  73. #"[break-blocks]" - Naturally break the blocks around the player - Example use "[break-blocks] 3" Breaks all the blocks within a range of 3
  74. #"[message]" - Message the player - Example use "[message] &aYour pet has found 100 tokens."
  75. #"[timed-command]" - Run a command that runs again when the time is up. - Example use "[timed-command] 5 fly {player}" - Runs the fly command for 5 seconds on the player.
  76. #"[damage-boost]" - Boosts the damage on a specified entity or for a certain weapon. Example use "[damage-boost] 10000.0 EntityType:PIG" or "[damage-boost] 1.0 Material:DIAMOND_AXE" The number is how much damage is added.
  77. #"[damage-near]" - Damages players in the specified radius. Example use "[damage-near] 1 5" - Damages the players in a radius of 5 by 1 damage.
  78. #"[explosion]" - Creates an explosion. Example use "[explosion] 1" - Creates an explosion of power 1.
  79. #"[fire]" - Sets players on fire in the specified radius. Example use "[fire] 3 5" - Sets the players in a radius of 5 on fire for 3 seconds.
  80. #"[freeze]" - Cauldron freeze players in the specified radius. Example use "[freeze] 3 5 CAULDRON" - Sets the players in a radius of 5 as frozen in a cauldron for 3 seconds.
  81. #"[inflict-potion-effect]" When damaging a player, inflict a potion effect as well. Example use "[inflict-potion-effect] POTION_NAME DURATION LEVEL" ("[inflict-potion-effect] POISON 1 3") = Poison potion for 1 second at level 3.
  82. #"[reduce-damage]" Reduce the damage of a certain damage cause by a divisor. Example use "[reduce-damage] 2 DamageCause:FALL" - Divides all fall damage by 2.
  83. #"[throw]" - Throws players in the specified radius. Example use "[throw] 3 5" - Damages the players in a radius of 5 with 3 power.
  84. #"[exp]" - Adds exp to a player's exp. Example use "[exp] 10" - Adds 10 exp to the player's exp.
  85. #"[exp-boost] - Adds an exp booster to a player of a certain multiplier for a certain amount of time. Example use "[exp-boost] 2 30" - Adds a 2x exp boost to the player for 30 seconds.
  86. #"[money-boost]" - Adds a money booster to a player of a certain multiplier for a certain amount of time on a certain action. Example use "[money-boost] 1.1 60 COMMAND_SELL" - Adds a 10% money boost to the player for 60 seconds on the /sell hand command in EssentialsX.
  87. #"[cage]" - Wraps yourself around in an unbreakable cage so that you can be safe or so you can trap enemy players. Example use "[cage] OBSIDIAN IRON_FENCE IRON_BLOCK 5 5 5 10" - Wraps yourself in a cage with the roof being obsidian, walls being iron fence, floor being iron block, dimensions (length, width, height), and for a time of 10 seconds before it despawns. To trap other players in a radius, simply add the radius to the end of the command.
  88.  
  89. cp:
  90. Chewbacca-Pet:
  91. values:
  92. displayName: '&6&lChewbacca Pet &7[LVL %level%]'
  93. skin: zomfgpanic
  94. tier: 1
  95. maxLevel: 3
  96. enabled: true
  97. lore:
  98. 1:
  99. - '&7Deal more axe damage.'
  100. - '&7It gets better the higher the level.'
  101. - ' '
  102. - '&c&lAGGRESSIVE'
  103. - ' '
  104. - '&7Right-Click to activate.'
  105. - ' '
  106. - '&e&lLevel:&e %level%'
  107. - '&e&lEXP:&e %exp% / %maxexp%'
  108. - '&c%progressmap%'
  109. hotbarActivationOnly: false
  110. disabledInOtherFactionLand: false
  111. addedExpMessage: true
  112. disabledWorlds:
  113. - ''
  114. activationEvent: "EntityDamageByEntityEvent"
  115. onActivation:
  116. EntityDamageByEntityEvent:
  117. 1:
  118. - "[damage-boost] 1.0 Material:WOOD_AXE Material:WOODEN_AXE Material:IRON_AXE Material:GOLD_AXE Material:DIAMOND_AXE"
  119. 2:
  120. - "[damage-boost] 2.0 Material:WOOD_AXE Material:WOODEN_AXE Material:IRON_AXE Material:GOLD_AXE Material:DIAMOND_AXE"
  121. 3:
  122. - "[damage-boost] 4.0 Material:WOOD_AXE Material:WOODEN_AXE Material:IRON_AXE Material:GOLD_AXE Material:DIAMOND_AXE"
  123. Chicken-Pet:
  124. values:
  125. displayName: '&6&lChicken Pet &7[LVL %level%]'
  126. skin: MHF_Chicken
  127. tier: 1
  128. maxLevel: 3
  129. enabled: true
  130. lore:
  131. 1:
  132. - '&7Grants the ability of speed to quickly flee,'
  133. - '&7flee, like a chicken, in the face of danger.'
  134. - ' '
  135. - '&e&lPASSIVE'
  136. - ' '
  137. - '&7Unlimited speed when in your inventory.'
  138. - ' '
  139. - '&e&lLevel:&e %level%'
  140. - '&e&lEXP:&e %exp% / %maxexp%'
  141. - '&c%progressmap%'
  142. hotbarActivationOnly: false
  143. disabledInOtherFactionLand: false
  144. addedExpMessage: true
  145. disabledWorlds:
  146. - ''
  147. timer-length: 1
  148. onActivation:
  149. PetTimerEvent:
  150. 1:
  151. - "[potion] SPEED infinite 1"
  152. 2:
  153. - "[potion] SPEED infinite 2"
  154. 3:
  155. - "[potion] SPEED infinite 3"
  156. Cow-Pet:
  157. values:
  158. displayName: '&6&lCow Pet &7[LVL %level%]'
  159. skin: MHF_Cow
  160. tier: 1
  161. maxLevel: 1
  162. enabled: true
  163. lore:
  164. 1:
  165. - '&7Shake off any negative potion effects with the tenacity'
  166. - '&7and endurance similar to that of a cow.'
  167. - ' '
  168. - '&e&lPASSIVE'
  169. - ' '
  170. - '&7No negative potion effects while in your inventory.'
  171. - ' '
  172. - '&e&lLevel:&e %level%'
  173. - '&e&lEXP:&e %exp% / %maxexp%'
  174. - '&c%progressmap%'
  175. hotbarActivationOnly: false
  176. disabledInOtherFactionLand: false
  177. addedExpMessage: true
  178. disabledWorlds:
  179. - ''
  180. timer-length: 1
  181. onActivation:
  182. PetTimerEvent:
  183. 1:
  184. - "[remove-potion] WITHER"
  185. - "[remove-potion] BLINDNESS"
  186. - "[remove-potion] CONFUSION"
  187. - "[remove-potion] HUNGER"
  188. - "[remove-potion] POISON"
  189. - "[remove-potion] SLOW"
  190. - "[remove-potion] WEAKNESS"
  191. Creeper-Pet:
  192. values:
  193. displayName: '&6&lCreeper Pet &7[LVL %level%]'
  194. skin: MHF_Creeper
  195. tier: 1
  196. maxLevel: 3
  197. enabled: true
  198. lore:
  199. 1:
  200. - '&7Gain the explosive defense capabilities of a'
  201. - '&7creeper to ward off incoming attackers.'
  202. - ' '
  203. - '&c&lAGGRESSIVE'
  204. - ' '
  205. - '&7Right-Click to create an explosion.'
  206. - ' '
  207. - '&e&lLevel:&e %level%'
  208. - '&e&lEXP:&e %exp% / %maxexp%'
  209. - '&c%progressmap%'
  210. hotbarActivationOnly: false
  211. disabledInOtherFactionLand: false
  212. addedExpMessage: true
  213. disabledWorlds:
  214. - ''
  215. onActivation:
  216. PlayerInteractEvent:
  217. 1:
  218. # - "[explosion] 1"
  219. - "[cooldown] 120"
  220. 2:
  221. # - "[explosion] 2"
  222. - "[cooldown] 120"
  223. 3:
  224. # - "[explosion] 3"
  225. - "[cooldown] 120"
  226. Iron-Golem-Pet:
  227. values:
  228. displayName: '&6&lIron Golem Pet &7[LVL %level%]'
  229. skin: MHF_Golem
  230. tier: 1
  231. maxLevel: 3
  232. enabled: true
  233. lore:
  234. 1:
  235. - '&7Hold your ground and absorb incoming attack damage'
  236. - '&7with a temporary shield as strong as iron.'
  237. - ' '
  238. - '&e&lPASSIVE'
  239. - ' '
  240. - '&7Right-Click to obtain absorption.'
  241. - ' '
  242. - '&e&lLevel:&e %level%'
  243. - '&e&lEXP:&e %exp% / %maxexp%'
  244. - '&c%progressmap%'
  245. hotbarActivationOnly: false
  246. disabledInOtherFactionLand: false
  247. addedExpMessage: true
  248. disabledWorlds:
  249. - ''
  250. onActivation:
  251. PlayerInteractEvent:
  252. 1:
  253. - "[potion] ABSORPTION 10 1"
  254. - "[cooldown] 120"
  255. 2:
  256. - "[potion] ABSORPTION 10 2"
  257. - "[cooldown] 120"
  258. 3:
  259. - "[potion] ABSORPTION 10 3"
  260. - "[cooldown] 120"
  261. Pig-Pet:
  262. values:
  263. displayName: '&6&lPig Pet &7[LVL %level%]'
  264. skin: MHF_Pig
  265. tier: 1
  266. maxLevel: 3
  267. enabled: true
  268. lore:
  269. 1:
  270. - '&7Eat your fill and maintain food saturation just'
  271. - '&7like a plump, satisfied pig.'
  272. - ' '
  273. - '&e&lPASSIVE'
  274. - ' '
  275. - '&7Unlimited saturation while in your inventory.'
  276. - ' '
  277. - '&e&lLevel:&e %level%'
  278. - '&e&lEXP:&e %exp% / %maxexp%'
  279. - '&c%progressmap%'
  280. hotbarActivationOnly: false
  281. disabledInOtherFactionLand: false
  282. addedExpMessage: true
  283. disabledWorlds:
  284. - ''
  285. timer-length: 1
  286. onActivation:
  287. PetTimerEvent:
  288. 1:
  289. - "[potion] SATURATION infinite 1"
  290. 2:
  291. - "[potion] SATURATION infinite 2"
  292. 3:
  293. - "[potion] SATURATION infinite 3"
  294. Sheep-Pet:
  295. values:
  296. displayName: '&6&lSheep Pet &7[LVL %level%]'
  297. skin: MHF_Sheep
  298. tier: 1
  299. maxLevel: 3
  300. enabled: true
  301. lore:
  302. 1:
  303. - '&7Reduce the damage of your fall'
  304. - '&7with a thick layer of fluffy wool.'
  305. - ' '
  306. - '&e&lPASSIVE'
  307. - ' '
  308. - '&7Place in your hotbar to activate.'
  309. - ' '
  310. - '&e&lLevel:&e %level%'
  311. - '&e&lEXP:&e %exp% / %maxexp%'
  312. - '&c%progressmap%'
  313. hotbarActivationOnly: true
  314. disabledInOtherFactionLand: false
  315. addedExpMessage: true
  316. disabledWorlds:
  317. - ''
  318. onActivation:
  319. EntityDamageEvent:
  320. 1:
  321. - "[reduce-damage] 2 DamageCause:FALL"
  322. 2:
  323. - "[reduce-damage] 3 DamageCause:FALL"
  324. 3:
  325. - "[reduce-damage] 10 DamageCause:FALL"
  326. Spider-Pet:
  327. values:
  328. displayName: '&6&lSpider Pet &7[LVL %level%]'
  329. skin: MHF_Spider
  330. tier: 1
  331. maxLevel: 3
  332. enabled: true
  333. lore:
  334. 1:
  335. - '&7Skulk around and pounce on a passer-by with'
  336. - '&7your new found jumping abilities.'
  337. - ' '
  338. - '&c&lAGGRESSIVE'
  339. - ' '
  340. - '&7Get jumpboost while in your inventory.'
  341. - ' '
  342. - '&e&lLevel:&e %level%'
  343. - '&e&lEXP:&e %exp% / %maxexp%'
  344. - '&c%progressmap%'
  345. hotbarActivationOnly: false
  346. disabledInOtherFactionLand: false
  347. addedExpMessage: true
  348. disabledWorlds:
  349. - ''
  350. timer-length: 1
  351. onActivation:
  352. PetTimerEvent:
  353. 1:
  354. - "[potion] JUMP infinite 1"
  355. 2:
  356. - "[potion] JUMP infinite 2"
  357. 3:
  358. - "[potion] JUMP infinite 3"
  359. Squid-Pet:
  360. values:
  361. displayName: '&6&lSquid Pet &7[LVL %level%]'
  362. skin: MHF_Squid
  363. tier: 1
  364. maxLevel: 1
  365. enabled: true
  366. lore:
  367. 1:
  368. - '&7Lurk through the depths of the ocean with the'
  369. - '&7eyesight of a squid and no fear of drowning.'
  370. - ' '
  371. - '&e&lPASSIVE'
  372. - ' '
  373. - '&7Place in your hotbar for water breathing.'
  374. - ' '
  375. - '&e&lLevel:&e %level%'
  376. - '&e&lEXP:&e %exp% / %maxexp%'
  377. - '&c%progressmap%'
  378. hotbarActivationOnly: true
  379. disabledInOtherFactionLand: false
  380. addedExpMessage: true
  381. disabledWorlds:
  382. - ''
  383. timer-length: 1
  384. onActivation:
  385. PetTimerEvent:
  386. 1:
  387. - "[potion] WATER_BREATHING infinite 1"
  388. Wolf-Pet:
  389. values:
  390. displayName: '&6&lWolf Pet &7[LVL %level%]'
  391. skin: MHF_Wolf
  392. tier: 1
  393. maxLevel: 3
  394. enabled: true
  395. lore:
  396. 1:
  397. - '&7Use your killer instincts to slay'
  398. - '&7passive mobs in a single hit.'
  399. - ' '
  400. - '&c&lAGGRESSIVE'
  401. - ' '
  402. - '&71 hit all passive mobs.'
  403. - ' '
  404. - '&e&lLevel:&e %level%'
  405. - '&e&lEXP:&e %exp% / %maxexp%'
  406. - '&c%progressmap%'
  407. hotbarActivationOnly: false
  408. disabledInOtherFactionLand: false
  409. addedExpMessage: true
  410. disabledWorlds:
  411. - ''
  412. onActivation:
  413. EntityDamageByEntityEvent:
  414. 1:
  415. - "[damage-boost] 10000.0 EntityType:PIG EntityType:COW EntityType:SHEEP EntityType:CHICKEN EntityType:SQUID EntityType:MUSHROOM_COW EntityType:VILLAGER"
  416. Zombie-Pet:
  417. values:
  418. displayName: '&6&lZombie Pet &7[LVL %level%]'
  419. skin: MHF_Zombie
  420. tier: 1
  421. maxLevel: 3
  422. enabled: true
  423. lore:
  424. 1:
  425. - '&7Satisfy your appetite like the undead'
  426. - '&7by attacking other players.'
  427. - ' '
  428. - '&c&lAGGRESSIVE'
  429. - ' '
  430. - '&7Get saturation by hitting others.'
  431. - ' '
  432. - '&e&lLevel:&e %level%'
  433. - '&e&lEXP:&e %exp% / %maxexp%'
  434. - '&c%progressmap%'
  435. hotbarActivationOnly: false
  436. disabledInOtherFactionLand: false
  437. addedExpMessage: true
  438. disabledWorlds:
  439. - ''
  440. onActivation:
  441. EntityDamageByEntityEvent:
  442. 1:
  443. - "[potion] SATURATION 5 1"
  444. 2:
  445. - "[potion] SATURATION 5 2"
  446. 3:
  447. - "[potion] SATURATION 5 3"
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455. Leprechaun-Pet:
  456. values:
  457. displayName: '&6&lLeprechaun Pet &7[LVL %level%]'
  458. skin: crunch2845
  459. tier: 2
  460. maxLevel: 3
  461. enabled: true
  462. lore:
  463. 1:
  464. - '&7Right-Click to become a Leprechaun and trap enemies in a,'
  465. - '&7radius of 5 blocks in a Pot o'' Gold for 3-12 seconds.'
  466. - ' '
  467. - '&c&lAGGRESSIVE'
  468. - ' '
  469. - '&7Right-Click to trap enemies in a radius of 5 blocks.'
  470. - ' '
  471. - '&e&lLevel:&e %level%'
  472. - '&e&lEXP:&e %exp% / %maxexp%'
  473. - '&c%progressmap%'
  474. hotbarActivationOnly: false
  475. disabledInOtherFactionLand: false
  476. addedExpMessage: true
  477. disabledWorlds:
  478. - ''
  479. onActivation:
  480. PlayerInteractEvent:
  481. 1:
  482. - "[freeze] 3 5 CAULDRON"
  483. - "[cooldown] 120"
  484. 2:
  485. - "[freeze] 7 5 CAULDRON"
  486. - "[cooldown] 120"
  487. 3:
  488. - "[freeze] 12 5 CAULDRON"
  489. - "[cooldown] 120"
  490. Goblin-Pet:
  491. values:
  492. displayName: '&6&lGoblin Pet &7[LVL %level%]'
  493. skin: Goblin
  494. tier: 2
  495. maxLevel: 10
  496. enabled: true
  497. lore:
  498. 1:
  499. - '&7Every 5 minutes your pet will come across'
  500. - '&7treasure! Treasure gets better as level increases.'
  501. - ' '
  502. - '&e&lPASSIVE'
  503. - ' '
  504. - '&7Keep in inventory to activate.'
  505. - ' '
  506. - '&e&lLevel:&e %level%'
  507. - '&e&lEXP:&e %exp% / %maxexp%'
  508. - '&c%progressmap%'
  509. hotbarActivationOnly: false
  510. disabledInOtherFactionLand: false
  511. addedExpMessage: true
  512. disabledWorlds:
  513. - ''
  514. timer-length: 300
  515. onActivation:
  516. PetTimerEvent:
  517. 1:
  518. - "[command] eco give {player} 1000"
  519. - "[message] &a&l+$1000 &7(Goblin Pet)"
  520. 2:
  521. - "[command] eco give {player} 1500"
  522. - "[message] &a&l+$1500 &7(Goblin Pet)"
  523. 3:
  524. - "[command] eco give {player} 2000"
  525. - "[message] &a&l+$2000 &7(Goblin Pet)"
  526. 4:
  527. - "[command] eco give {player} 3000"
  528. - "[message] &a&l+$3000 &7(Goblin Pet)"
  529. 5:
  530. - "[command] eco give {player} 3250"
  531. - "[message] &a&l+$3250 &7(Goblin Pet)"
  532. 6:
  533. - "[command] eco give {player} 3500"
  534. - "[message] &a&l+$3500 &7(Goblin Pet)"
  535. 7:
  536. - "[command] eco give {player} 4000"
  537. - "[message] &a&l+$4000 &7(Goblin Pet)"
  538. 8:
  539. - "[command] eco give {player} 5000"
  540. - "[message] &a&l+$5000 &7(Goblin Pet)"
  541. 9:
  542. - "[command] eco give {player} 5500"
  543. - "[message] &a&l+$5500 &7(Goblin Pet)"
  544. 10:
  545. - "[command] eco give {player} 6000"
  546. - "[message] &a&l+$6000 &7(Goblin Pet)"
  547. Exp-Pet:
  548. values:
  549. displayName: '&6&lExperience Pet &7[LVL %level%]'
  550. skin: Edna_I
  551. tier: 2
  552. maxLevel: 3
  553. enabled: true
  554. lore:
  555. 1:
  556. - '&7When right clicked the experience pet will give'
  557. - '&7you an experience multiplier for a short amount of time.'
  558. - ' '
  559. - '&e&lACTIVE'
  560. - ' '
  561. - '&7When right-clicked, it gives an exp booster starting at 2x.'
  562. - ' '
  563. - '&e&lLevel:&e %level%'
  564. - '&e&lEXP:&e %exp% / %maxexp%'
  565. - '&c%progressmap%'
  566. hotbarActivationOnly: false
  567. disabledInOtherFactionLand: false
  568. addedExpMessage: true
  569. disabledWorlds:
  570. - ''
  571. onActivation:
  572. PlayerInteractEvent:
  573. 1:
  574. - "[exp-boost] 2 30"
  575. - "[message] &aExp Boost of 2x has been activated!"
  576. - "[cooldown] 420"
  577. 2:
  578. - "[exp-boost] 3 30"
  579. - "[message] &aExp Boost of 3x has been activated!"
  580. - "[cooldown] 420"
  581. 3:
  582. - "[exp-boost] 4 30"
  583. - "[message] &aExp Boost of 4x has been activated!"
  584. - "[cooldown] 420"
  585. Ore-Pet:
  586. values:
  587. displayName: '&6&lOre Pet &4&lOP &7[LVL %level%]'
  588. skin: ZiO
  589. tier: 3
  590. maxLevel: 1
  591. enabled: true
  592. lore:
  593. 1:
  594. - '&7Chance to get extra ores while mining,'
  595. - ' '
  596. - '&E&lPASSIVE'
  597. - ' '
  598. - '&7Keep in inventory to activate.'
  599. - ' '
  600. - '&e&lLevel:&e %level%'
  601. - '&e&lEXP:&e %exp% / %maxexp%'
  602. - '&c%progressmap%'
  603. hotbarActivationOnly: false
  604. disabledInOtherFactionLand: false
  605. addedExpMessage: true
  606. disabledWorlds:
  607. - ''
  608. onActivation:
  609. PlayerInteractEvent:
  610. 1:
  611. - "[freeze] 3 5 CAULDRON"
  612. - "[cooldown] 120"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement