Advertisement
Guest User

Untitled

a guest
May 2nd, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.23 KB | None | 0 0
  1. # Configuration of enchantments.
  2. # NOTE: 'Duration' is in seconds.
  3. # Chance is the % chance of effect occurring of the specific enchant.
  4. # Enchantments that are needed to be configurable are available here.
  5.  
  6. # Item id of the Rune item.
  7. item-id: 388
  8.  
  9. # Display name of the rune.
  10. # Use "%enchant_name% for the enchantment name.
  11. # Use "%level%" for the level of enchantment.
  12.  
  13. rune-display-name: '&eRune of &n%enchant_name%&e %level%'
  14.  
  15. # If this option is true:
  16. # If you put for example Speed I rune on the item which already have Speed I enchantment, it will make level up the enchantment to level II.
  17. # However, if the enchantment level exceeds it's max level, it won't apply.
  18. # If you enable this level up of enchantment won't work. Like, if you try to put level II Speed on item having Speed I, it won't work!
  19.  
  20. allow-enchantment-stacking: false
  21.  
  22. # If true, the plugin will take that the server is currently running on 1.9. (If you configure this false, there may be bugs!)
  23. # If false, the plugin will take that the server's version is either 1.8 or 1.7.
  24. is-1.9: false
  25.  
  26. # Maximum slots of an item.
  27. # NOTE: If you set slots more than 15, there may be bugs so dont set it above 15!
  28. slots: 9
  29.  
  30. # Allow WorldGuard and WorldEdit to check the pvp flags.
  31. allow-worldguard: true
  32.  
  33. # This option should be "true" for only those, who have problem with removal of potion effect on moving.
  34. periodic-potions: false
  35.  
  36. # Configuration of "/runes enchanter"
  37. # xp_points is the cost of xp that player will need, if player chooses to get Rune at the cost of XP points.
  38. # money_price is the cost of in game money that player will need, if player chooses to get Rune at the cost of in game money.
  39.  
  40. enchanter:
  41. level_I:
  42. xp_points: 2500
  43. money_price: 2500
  44.  
  45. level_II:
  46. xp_points: 3500
  47. money_price: 3500
  48.  
  49. level_III:
  50. xp_points: 4500
  51. money_price: 4500
  52.  
  53. level_IV:
  54. xp_points: 9000
  55. money_price: 5500
  56.  
  57. level_V:
  58. xp_points: 15000
  59. money_price: 6500
  60.  
  61. # Allow mobs to drop Runes.
  62. mob-drops: false
  63.  
  64. # Allow custom mobs (Mobs spawned by other plugins or through a command) to drop Rune.
  65. # If this option is true any type of mob can drop Rune.
  66. # If this option is false, customly spawned mob (Mobs spawned by other plugins or through a command) won't drop Rune.
  67.  
  68. custom-mob-drops: false
  69.  
  70. # Chance of mob dropping the rune.
  71. drop-chance: 0.02
  72.  
  73. # If the 'allow' option is true, the "drops" list below won't be effective.
  74. # "lvl_chances" is the percentage of getting the specific level of any Rune off the drop. KEEP IN MIND THAT THE CHANCES SHOULD ADD UP TO 100.
  75. drop_all_runes:
  76. allow: true
  77. lvl_chances:
  78. level_1 : 25
  79. level_2: 20
  80. level_3: 15
  81. level_4: 10
  82. level_5: 5
  83.  
  84. # Configuration of chances of dropping the type of Rune.
  85. # Format:
  86. # [enchantment];[level] : [chance]
  87. # Note: Chance must add up to 100!!
  88.  
  89. drops:
  90. speed;1 : 50
  91. lifesteal;1 : 25
  92. demonic_aura;2 : 5
  93. shadowstep;1 : 20
  94.  
  95.  
  96. # If this option is true, there will be no specific success and destroy rates. It would turned to "RANDOM".
  97. random-success-destroy: true
  98. # Chance of successful enchantment. Chance of destroy rate will be (100 - success chance).
  99. success-chance: 92
  100.  
  101. # List of disabled enchantments:
  102. # By default, batvision is not disabled, but if you want to disable it remove the "#" in the starting of that line.
  103. # Once you disabled enchantments reload or restart your server.
  104.  
  105. disabled:
  106. - tnt_shooter
  107.  
  108. # Enchantments' configuration:
  109.  
  110. lifesteal:
  111. level_I:
  112. chance: 25
  113. health: 1
  114.  
  115. level_II:
  116. chance: 35
  117. health: 2
  118.  
  119. level_III:
  120. chance: 50
  121. health: 3
  122.  
  123. assassin:
  124. level_I:
  125. chance: 25
  126. duration: 3
  127.  
  128. level_II:
  129. chance: 35
  130. duration: 5
  131.  
  132. level_III:
  133. chance: 50
  134. duration: 8
  135.  
  136. kill_confirm:
  137. level_I:
  138. chance: 25
  139.  
  140. level_II:
  141. chance: 40
  142.  
  143. level_III:
  144. chance: 50
  145.  
  146. hex:
  147. level_I:
  148. chance: 25
  149. duration: 3
  150.  
  151. level_II:
  152. chance: 35
  153. duration: 5
  154.  
  155. level_III:
  156. chance: 50
  157. duration: 7
  158.  
  159. jump:
  160. level_I:
  161. potion_lvl: 1
  162.  
  163. level_II:
  164. potion_lvl: 2
  165.  
  166. level_III:
  167. potion_lvl: 3
  168.  
  169. speed:
  170. level_I:
  171. potion_lvl: 1
  172.  
  173. level_II:
  174. potion_lvl: 2
  175.  
  176. level_III:
  177. potion_lvl: 3
  178.  
  179. zeus:
  180. level_I:
  181. chance: 25
  182.  
  183. level_II:
  184. chance: 35
  185.  
  186. level_III:
  187. chance: 45
  188.  
  189. demonic_aura:
  190. level_I:
  191. chance: 10
  192. duration: 2
  193.  
  194. level_II:
  195. chance: 15
  196. duration: 3
  197.  
  198. leveL_III:
  199. chance: 20
  200. duration: 4
  201.  
  202. level_IV:
  203. chance: 25
  204. duration: 5
  205.  
  206. level_V:
  207. chance: 35
  208. duration: 7
  209.  
  210. dodge:
  211. level_I:
  212. chance: 10
  213.  
  214. level_II:
  215. chance: 15
  216.  
  217. level_III:
  218. chance: 20
  219.  
  220. level_IV:
  221. chance: 25
  222.  
  223. level_V:
  224. chance: 35
  225.  
  226. blessed:
  227. level_I:
  228. chance: 10
  229.  
  230. level_II:
  231. chance: 20
  232.  
  233. level_III:
  234. chance: 30
  235.  
  236. snare:
  237. level_I:
  238. duration: 5
  239. potion_lvl: 1
  240.  
  241. level_II:
  242. duration: 8
  243. potion_lvl: 2
  244.  
  245. level_III:
  246. duration: 9
  247. potion_lvl: 2
  248.  
  249. level_III:
  250. duration: 10
  251. potion_lvl: 2
  252.  
  253. level_IV:
  254. duration: 15
  255. potion_lvl: 2
  256.  
  257. curse:
  258. level_I:
  259. chance: 10
  260. duration: 2
  261. potion_lvl: 1
  262.  
  263. level_II:
  264. chance: 20
  265. duration: 4
  266. potion_lvl: 1
  267.  
  268. level_III:
  269. chance: 30
  270. duration: 6
  271. potion_lvl: 1
  272.  
  273. level_IV:
  274. chance: 40
  275. duration: 8
  276. potion_lvl: 1
  277.  
  278. crushing:
  279. level_I:
  280. chance: 10
  281.  
  282. level_II:
  283. chance: 20
  284.  
  285. level_III:
  286. chance: 25
  287.  
  288. level_III:
  289. chance: 30
  290.  
  291. level_IV:
  292. chance: 35
  293.  
  294. level_V:
  295. chance: 45
  296.  
  297. execute:
  298. level_I:
  299. chance: 30
  300.  
  301. level_II:
  302. chance: 40
  303.  
  304. level_III:
  305. chance: 45
  306.  
  307. level_IV:
  308. chance: 47
  309.  
  310. level_V:
  311. chance: 50
  312.  
  313. stealth:
  314. level_I:
  315. chance: 10
  316. duration: 2
  317. radius: 5
  318.  
  319. level_II:
  320. chance: 20
  321. duration: 3
  322. radius: 6
  323.  
  324. level_III:
  325. chance: 30
  326. duration: 4
  327. radius: 7
  328.  
  329. level_IV:
  330. chance: 35
  331. duration: 5
  332. radius: 10
  333.  
  334. aegis:
  335. level_I:
  336. chance: 10
  337.  
  338. level_II:
  339. chance: 20
  340.  
  341. level_III:
  342. chance: 26
  343.  
  344. level_IV:
  345. chance: 35
  346.  
  347. level_V:
  348. chance: 40
  349.  
  350. purge:
  351. level_I:
  352. chance: 10
  353.  
  354. level_II:
  355. chance: 20
  356.  
  357. level_III:
  358. chance: 30
  359.  
  360. level_IV:
  361. chance: 40
  362.  
  363. divine:
  364. level_I:
  365. chance: 15
  366.  
  367. level_II:
  368. chance: 20
  369.  
  370. level_III:
  371. chance: 35
  372.  
  373. entangle:
  374. level_I:
  375. chance: 10
  376. duration: 5
  377. potion_lvL: 1
  378.  
  379. level_II:
  380. chance: 20
  381. duration: 5
  382. potion_lvl: 1
  383.  
  384. level_II:
  385. chance: 30
  386. duration: 7
  387. potion_lvl: 2
  388.  
  389. level_IV:
  390. chance: 40
  391. duration: 7
  392. potion_lvl: 2
  393.  
  394. pyromaniac:
  395. level_I:
  396. chance: 10
  397.  
  398. level_II:
  399. chance: 20
  400.  
  401. level_III:
  402. chance: 25
  403.  
  404. level_IV:
  405. chance: 30
  406.  
  407. level_V:
  408. chance: 35
  409.  
  410. flame_cloak:
  411. level_I:
  412. chance: 10
  413. duration: 5
  414.  
  415. level_II:
  416. chance: 20
  417. duration: 7
  418.  
  419. level_III:
  420. chance: 30
  421. duration: 8
  422.  
  423. battlecry:
  424. level_I:
  425. chance: 10
  426.  
  427. level_II:
  428. chance: 15
  429.  
  430. level_III:
  431. chance: 25
  432.  
  433. corruption:
  434. level_I:
  435. chance: 10
  436. duration: 4
  437. potion_lvl: 1
  438.  
  439. level_II:
  440. chance: 15
  441. duration: 4
  442. potion_lvl: 1
  443.  
  444. level_III:
  445. chance: 20
  446. duration: 7
  447. potion_lvl: 1
  448.  
  449. level_IV:
  450. chance: 25
  451. duration: 10
  452. potion_lvl: 2
  453.  
  454. level_V:
  455. chance: 30
  456. duration: 10
  457. potion_lvl: 2
  458.  
  459. turmoil:
  460. level_I:
  461. chance: 10
  462. duration: 5
  463. potion_lvl: 1
  464.  
  465. level_II:
  466. chance: 20
  467. duration: 5
  468. potion_lvl: 1
  469.  
  470. level_III:
  471. chance: 30
  472. duration: 8
  473. potion_lvl: 1
  474.  
  475. holy_smite:
  476. level_I:
  477. chance: 10
  478.  
  479. level_II:
  480. chance: 20
  481.  
  482. level_III:
  483. chance: 30
  484.  
  485. level_IV:
  486. chance: 35
  487.  
  488. level_V:
  489. chance: 40
  490.  
  491. petrify:
  492. level_I:
  493. chance: 10
  494. duration: 5
  495. potion_lvl: 1
  496.  
  497. level_II:
  498. chance: 20
  499. duration: 5
  500. potion_lvl: 1
  501.  
  502. level_III:
  503. chance: 30
  504. duration: 5
  505. potion_lvl: 2
  506.  
  507. mischief:
  508. level_I:
  509. chance: 10
  510. duration: 5
  511. potion_lvl: 1
  512.  
  513. level_II:
  514. chance: 20
  515. duration: 5
  516. potion_lvl: 1
  517.  
  518. level_III:
  519. chance: 30
  520. duration: 8
  521. potion_lvl: 1
  522.  
  523. # 'distance' is the distance behind the damager where the damaged player will be teleported.
  524. shadowstep:
  525. level_I:
  526. chance: 10
  527. distance: 2
  528.  
  529. level_II:
  530. chance: 20
  531. distance: 2
  532.  
  533. level_III:
  534. chance: 25
  535. distance: 2
  536.  
  537. demon_siphon:
  538. level_I:
  539. chance: 10
  540. health: 2
  541.  
  542. level_II:
  543. chance: 15
  544. health: 4
  545.  
  546. level_III:
  547. chance: 15
  548. health: 6
  549.  
  550. # 'wolves' = number of wolves to be spawned.
  551. wolves:
  552. level_I:
  553. chance: 5
  554. wolves: 2
  555.  
  556. level_II:
  557. chance: 10
  558. wolves: 2
  559.  
  560. level_III:
  561. chance: 15
  562. wolves: 3
  563.  
  564. level_IV:
  565. chance: 20
  566. wolves: 4
  567.  
  568. level_V:
  569. chance: 25
  570. wolves: 5
  571.  
  572. superman_punch:
  573. level_I:
  574. chance: 10
  575. power: 5
  576.  
  577. level_II:
  578. chance: 15
  579. power: 7
  580.  
  581. level_III:
  582. chance: 20
  583. power: 8
  584.  
  585. disarm:
  586. level_I:
  587. chance: 10
  588.  
  589. level_II:
  590. chance: 15
  591.  
  592. level_III:
  593. chance: 25
  594.  
  595. swimmer:
  596. level_I:
  597. potion_lvl: 1
  598.  
  599. level_II:
  600. potion_lvl: 2
  601.  
  602. level_III:
  603. potion_lvl: 3
  604.  
  605. # "money-percent" is the percentage of the money which will be stolen from the opponent's balance.
  606. thief:
  607. level_I:
  608. chance: 10
  609. money-percent: 5
  610.  
  611. level_II:
  612. chance: 15
  613. money-percent: 10
  614.  
  615. level_III:
  616. chance: 20
  617. money-percent: 20
  618.  
  619.  
  620. # Default health is the health which will be restored if player removes the chestplate containing Health Boost Enchantment.
  621. # 2 = 1 heart so, 20 = 10 hearts
  622. # modified-health is the health which will be set after wearing Health Boost chestplate.
  623. health_boost:
  624. level_I:
  625. potion_lvl: 1
  626.  
  627. level_II:
  628. potion_lvl: 2
  629.  
  630. level_III:
  631. potion_lvl: 5
  632.  
  633. reborn:
  634. level_I:
  635. absorption:
  636. potion_lvl: 1
  637. duration: 5
  638.  
  639. regeneration:
  640. potion_lvl: 1
  641. duration: 5
  642.  
  643. level_II:
  644. absorption:
  645. potion_lvl: 2
  646. duration: 5
  647.  
  648. regeneration:
  649. potion_lvl: 2
  650. duration: 5
  651.  
  652. level_III:
  653. absorption:
  654. potion_lvl: 3
  655. duration: 8
  656.  
  657. regeneration:
  658. potion_lvl: 3
  659. duration: 8
  660.  
  661. molten:
  662. level_I:
  663. potion_lvl: 1
  664.  
  665. level_II:
  666. potion_lvl: 2
  667.  
  668. level_III:
  669. potion_lvl: 3
  670.  
  671. # Duration will be for how much seconds the fire will be on player(s).
  672. immolation:
  673. level_I:
  674. chance: 10
  675. radius: 5
  676. duration: 5
  677.  
  678. level_II:
  679. chance: 15
  680. radius: 5
  681. duration: 5
  682.  
  683. level_III:
  684. chance: 20
  685. radius: 10
  686. duration: 7
  687.  
  688. level_IV:
  689. chance: 25
  690. radius: 15
  691. duration: 7
  692.  
  693. level_V:
  694. chance: 30
  695. radius: 15
  696. duration: 10
  697.  
  698. strength:
  699. level_I:
  700. potion_lvl: 1
  701.  
  702. level_II:
  703. potion_lvl: 2
  704.  
  705. level_III:
  706. potion_lvl: 3
  707.  
  708. # Duration will be for how much seconds the web will be on. After that web will be removed automatically.
  709. # If "check-wg-flag" is true, then it will check if player can build in the region.
  710.  
  711. web_trap:
  712. check-wg-flag: true
  713. level_I:
  714. chance: 10
  715. duration: 5
  716.  
  717. level_II:
  718. chance: 15
  719. duration: 5
  720.  
  721. level_III:
  722. chance: 25
  723. duration: 7
  724.  
  725. veinminer:
  726. level_I:
  727. radius: 5
  728.  
  729. paralyze:
  730. level_I:
  731. chance: 10
  732. duration: 5
  733. potion_lvl: 1
  734.  
  735. level_II:
  736. chance: 20
  737. duration: 5
  738. potion_lvl: 1
  739.  
  740. tnt_shooter:
  741. level_I:
  742. explosion: false
  743.  
  744. reversal:
  745. level_I:
  746. chance: 10
  747.  
  748. level_II:
  749. chance: 20
  750.  
  751. level_III:
  752. chance: 30
  753.  
  754. # 'required-health' is the maximum health required for the effect to come. In short, if I have health less than or equal to this, I will get damage resistance.
  755. # Remember if you set health to '2' it will mean ONE heart. So:
  756. # 1 heart = 2; 10 hearts = 20
  757. reinforced:
  758. level_I:
  759. required-health: 6
  760. duration: 5
  761. potion_lvl: 1
  762.  
  763. level_II:
  764. required-health: 6
  765. duration: 10
  766. potion_lvl: 1
  767.  
  768. level_III:
  769. required-health: 6
  770. duration: 15
  771. potion_lvl: 1
  772.  
  773. level_IV:
  774. required-health: 8
  775. duration: 15
  776. potion_lvl: 2
  777.  
  778. level_V:
  779. required-health: 8
  780. duration: 15
  781. potion_lvl: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement