Guest User

Untitled

a guest
May 1st, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 59.71 KB | None | 0 0
  1. # Jobs configuration.
  2. #
  3. # Stores information about each job.
  4. #
  5. # NOTE: When having multiple jobs, both jobs will give the income payout to the player
  6. # even if they give the pay for one action (make the configurations with this in mind)
  7. # and each job will get the respective experience.
  8. #
  9. # e.g If player has 2 jobs where job1 gives 10 income and experience for killing a player
  10. # and job2 gives 5 income and experience for killing a player. When the user kills a player
  11. # they will get 15 income and job1 will gain 10 experience and job2 will gain 5 experience.
  12.  
  13. Jobs:
  14. # must be one word. This job will be ignored as this is just example of all posible actions
  15. exampleJob:
  16. # full name of the job (displayed when browsing a job, used when joining and leaving)
  17. # also can be used as a prefix for the user's name if the option is enabled.
  18. # Shown as a prefix only when the user has 1 job.
  19. #
  20. # NOTE: Must be 1 word
  21. fullname: Woodcutter
  22. # Shortened version of the name of the job. Used as a prefix when the user has more
  23. # than 1 job
  24. shortname: W
  25. description: Earns money felling and planting trees
  26. # The colour of the name, for a full list of supported colours, go to the message config.
  27. ChatColour: GREEN
  28. # Option to let you choose what kind of prefix this job adds to your name.
  29. # options are: full, title, job, shortfull, shorttitle, shortjob and none
  30. chat-display: full
  31. # [OPTIONAL] - the maximum level of this class
  32. max-level: 10
  33. # [OPTIONAL] - the maximum level of this class with specific permission
  34. # use jobs.[jobsname].vipmaxlevel, in this case it will be jobs.exampleJob.vipmaxlevel
  35. vip-max-level: 20
  36. # [OPTIONAL] - the maximum number of users on the server that can have this job at
  37. # any one time (includes offline players).
  38. slots: 1
  39. # Equation used for calculating how much experience is needed to go to the next level.
  40. # Available parameters:
  41. # numjobs - the number of jobs the player has
  42. # joblevel - the level the player has attained in the job.
  43. # NOTE: Please take care of the brackets when modifying this equation.
  44. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  45. # Equation used for calculating how much income is given per action for the job level.
  46. # Available parameters:
  47. # numjobs - the number of jobs the player has
  48. # baseincome - the income for the action at level 1 (as set in the configuration).
  49. # joblevel - the level the player has attained in the job.
  50. # NOTE: Please take care of the brackets when modifying this equation.
  51. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  52. # Equation used for calculating how much points is given per action for the job level.
  53. # Available parameters:
  54. # numjobs - the number of jobs the player has
  55. # basepoints - the points for the action at level 1 (as set in the configuration).
  56. # joblevel - the level the player has attained in the job.
  57. # NOTE: Please take care of the brackets when modifying this equation.
  58. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  59. # Equation used for calculating how much experience is given per action for the job level.
  60. # Available parameters:
  61. # numjobs - the number of jobs the player has
  62. # baseexperience - the experience for the action at level 1 (as set in the configuration).
  63. # joblevel - the level the player has attained in the job.
  64. # NOTE: Please take care of the brackets when modifying this equation.
  65. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  66. # GUI icon information when using GUI function
  67. Gui:
  68. # id of block
  69. Id: 17
  70. # data of block, usualy its 0, but in example Diorite will have id of 1 and data of 3
  71. Data: 2
  72. ########################################################################
  73. # Section used to configure what items the job gets paid for, how much
  74. # they get paid and how much experience they gain.
  75. #
  76. # For break and place, the block name or id is used.
  77. # You can select a sub-type by using a '-' between the id and the bit
  78. # value for the sub-type. e.g LOG-0 = usual log, LOG-2 = birch log
  79. # 17-2 = birch log.
  80. #
  81. # If no sub-type is give, the payout will be for all sub-types.
  82. #
  83. # To get a list of all available block types, check the
  84. # bukkit JavaDocs for a complete list of block types
  85. # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  86. #
  87. # For kill tags (Kill and custom-kill), the name is the name of the
  88. # mob.
  89. # Available mobs:
  90. # Bat
  91. # Blaze
  92. # Cave_spider
  93. # Chicken
  94. # Cow
  95. # Creeper
  96. # Ender_dragon
  97. # Enderman
  98. # Endermite
  99. # Ghast
  100. # Giant
  101. # Guardian
  102. # Horse
  103. # Iron_golem
  104. # Magma_cube
  105. # Mushroom_cow
  106. # Ocelot
  107. # Pig
  108. # Player
  109. # Rabbit
  110. # Sheep
  111. # Silverfish
  112. # Skeleton
  113. # Shulker
  114. # Slime
  115. # Snowman
  116. # Spider
  117. # Squid
  118. # Villager
  119. # Witch
  120. # Wither
  121. # Wolf
  122. # Zombie
  123. #
  124. #
  125. # NOTE: mob names are case sensitive.
  126. #
  127. # For custom-kill, it is the name of the job (also case sensitive).
  128. #
  129. # NOTE: If a job has both the pay for killing a player and for killing a
  130. # specific class, they will get both payments.
  131. ########################################################################
  132. # payment for breaking a block
  133. Break:
  134. # block name/id (with optional sub-type)
  135. LOG:
  136. # base income, can be not used if using point system
  137. income: 5.0
  138. # base points, can be not used if using income system
  139. points: 5.0
  140. # base experience
  141. experience: 5.0
  142. # (OPTIONAL) from which level of this job player can get money for this action
  143. # if not given, then player will always get money for this action
  144. # this can be used for any action
  145. from-level: 1
  146. # (OPTIONAL) until which level player can get money for this action.
  147. # if not given, then there is no limit
  148. # this can be used for any action
  149. until-level: 30
  150. # payment for breaking a block with tnt
  151. TNTBreak:
  152. LOG:
  153. income: 5.0
  154. points: 5.0
  155. experience: 5.0
  156. # payment for placing a block
  157. Place:
  158. SAPLING:
  159. income: 1.0
  160. points: 1.0
  161. experience: 1.0
  162. WOOD:
  163. income: 2.0
  164. points: 2.0
  165. experience: 2.0
  166. # killing a mob
  167. Kill:
  168. # mob name
  169. Player:
  170. # base income
  171. income: 7.5
  172. # base experience
  173. experience: 7.5
  174. # killing a MythicMob
  175. MMKill:
  176. # mob name
  177. CustomNameHere:
  178. # base income
  179. income: 7.5
  180. # base experience
  181. experience: 7.5
  182. # Killing player with certain job
  183. custom-kill:
  184. Woodcutter:
  185. income: 10.0
  186. experience: 10.0
  187. # Tamig animals
  188. Tame:
  189. Wolf:
  190. income: 2.0
  191. experience: 5.0
  192. # Breeding animals
  193. Breed:
  194. Wolf:
  195. income: 2.0
  196. experience: 5.0
  197. # Eating food
  198. Eat:
  199. cooked_rabbit:
  200. income: 5
  201. experience: 5
  202. baked_potato:
  203. income: 5
  204. experience: 5
  205. # Milking cows, only one option is available
  206. Milk:
  207. Cow:
  208. income: 2.0
  209. experience: 5.0
  210. Mushroomcow:
  211. income: 5.0
  212. experience: 10.0
  213. # Shear sheeps by its color
  214. Shear:
  215. Black:
  216. income: 2.0
  217. experience: 5.0
  218. Blue:
  219. income: 2.0
  220. experience: 5.0
  221. Brown:
  222. income: 2.0
  223. experience: 5.0
  224. Cyan:
  225. income: 2.0
  226. experience: 5.0
  227. Gray:
  228. income: 2.0
  229. experience: 5.0
  230. Green:
  231. income: 2.0
  232. experience: 5.0
  233. Light_blue:
  234. income: 2.0
  235. experience: 5.0
  236. Lime:
  237. income: 2.0
  238. experience: 5.0
  239. Magenta:
  240. income: 2.0
  241. experience: 5.0
  242. Orange:
  243. income: 2.0
  244. experience: 5.0
  245. Pink:
  246. income: 2.0
  247. experience: 5.0
  248. Purple:
  249. income: 2.0
  250. experience: 5.0
  251. Red:
  252. income: 2.0
  253. experience: 5.0
  254. Silver:
  255. income: 2.0
  256. experience: 5.0
  257. White:
  258. income: 2.0
  259. experience: 5.0
  260. Yellow:
  261. income: 2.0
  262. experience: 5.0
  263. # dyeing armor
  264. Dye:
  265. LEATHER_BOOTS:
  266. income: 1.0
  267. experience: 1.0
  268. LEATHER_CHESTPLATE:
  269. income: 1.0
  270. experience: 1.0
  271. LEATHER_HELMET:
  272. income: 1.0
  273. experience: 1.0
  274. LEATHER_LEGGINGS:
  275. income: 1.0
  276. experience: 1.0
  277. 351:
  278. income: 1.0
  279. experience: 1.0
  280. # Catching fish
  281. Fish:
  282. '349':
  283. income: 20.0
  284. experience: 25.0
  285. # Repairing items
  286. Repair:
  287. WOOD_SWORD:
  288. income: 1.0
  289. experience: 1.0
  290. IRON_SWORD:
  291. income: 2.0
  292. experience: 2.0
  293. # Crafting items
  294. Craft:
  295. WOOD_SWORD:
  296. income: 1.5
  297. experience: 3.0
  298. LEATHER_BOOTS:
  299. income: 1.0
  300. experience: 6.0
  301. # Smelting ores
  302. Smelt:
  303. IRON_INGOT:
  304. income: 2.0
  305. experience: 8.0
  306. GOLD_INGOT:
  307. income: 4.5
  308. experience: 12
  309. # Enchanting items
  310. Enchant:
  311. # You can set item for which player will get money
  312. WOOD_SWORD:
  313. income: 1.5
  314. experience: 3.0
  315. LEATHER_BOOTS:
  316. income: 1.0
  317. experience: 6.0
  318. # Or/and you can give money for each enchantment they got
  319. DIG_SPEED-1:
  320. income: 3.0
  321. experience: 10.0
  322. DIG_SPEED-2:
  323. income: 6.0
  324. experience: 20.0
  325. # Brewing potions
  326. Brew:
  327. NETHER_STALK:
  328. income: 5.0
  329. experience: 3.0
  330. REDSTONE:
  331. income: 5.0
  332. experience: 3.0
  333. # Explore options. Each number represents players number in exploring that chunk
  334. # 1 means that player is first in this chunk, 2 is second and so on, so you can give money not only for first player ho discovers that chunk
  335. Explore:
  336. 1:
  337. income: 5.0
  338. experience: 5.0
  339. 2:
  340. income: 2.5
  341. experience: 2.5
  342. 3:
  343. income: 1.0
  344. experience: 1.0
  345. 4:
  346. income: 0.5
  347. experience: 0.5
  348. 5:
  349. income: 0.1
  350. experience: 0.1
  351. # permissions granted for joining class
  352. permissions:
  353. # example node
  354. aaaaaatest.node:
  355. # true to give, false to revoke
  356. value: true
  357. # minimum level needed to grant permission. Use 0 for all levels
  358. level: 0
  359. aaaaaatest.node2:
  360. value: true
  361. # Permission granted when reaching level 10
  362. level: 10
  363. # Permissions granted when perticular conditions are meet
  364. conditions:
  365. # Condition mane, irelevent, you can write anything in here
  366. first:
  367. requires:
  368. # j marks that player should have particular jobs level and higher
  369. - j:Miner-50
  370. - j:Digger-50
  371. # p marks permission requirement
  372. - p:essentials.notnoob
  373. perform:
  374. # p marks permission, player will get if given true value, if used false, permission will be taken
  375. - p:essentials.fly-true
  376. # Commands executed when player reached level
  377. commands:
  378. # command name, just to have better idea what this do
  379. fly:
  380. # Command its self, this will be executed from console, so all commands should work
  381. # Possible variables are: [player] [jobname] [oldlevel] [newlevel]
  382. command: manuaddp [player] essentials.fly
  383. # When to execute this command first time
  384. levelFrom: 100
  385. # Until when to do this command
  386. # This can be set to same level as levelFrom, so this command will be executed only once
  387. levelUntil: 100
  388. kit:
  389. command: manuaddp [player] essentials.kits.woodcutter
  390. levelFrom: 150
  391. levelUntil: 150
  392. # Getting more money when equiped with specific weapon/tool ar wearing armor
  393. items:
  394. # Just name, dont have any impact
  395. firstOne:
  396. # Tool/Weapon id. Works for block Break, Fish, Animal tame, Breed, Monster/Player kill.
  397. id: 278
  398. # Items name, should be with color codes
  399. name: '&8Miner Pickaxe'
  400. # Item lore, again should come with color codes
  401. lore:
  402. - '&eBobs pick'
  403. - '&710% bonus XP'
  404. # Item enchantments, all enchantment names can be found https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  405. enchants:
  406. - DAMAGE_ALL=1
  407. - FIRE_ASPECT=1
  408. # Money boost: 1.1 is equals 10% more income when 0.9 is equals 10% less from base income
  409. moneyBoost: 1.1
  410. # Exp boost
  411. expBoost: 1.1
  412. helmet:
  413. # Armor id. This one works with all jobs
  414. id: 310
  415. name: '&8Armor'
  416. lore:
  417. - '&eBobs armor'
  418. - '&710% bonus XP'
  419. moneyBoost: 1.1
  420. expBoost: 1.1
  421. # Limit item use to jobs level
  422. limitedItems:
  423. # Just name, dont have any impact
  424. firstOne:
  425. # Tool/Weapon id. Works for any interact action.
  426. id: 278
  427. # Level of this job player can start using this item
  428. level: 5
  429. # (optional) Items name, option to use color codes
  430. name: '&8Miner Pickaxe'
  431. # (optional) Item lore, again can come with color codes
  432. lore:
  433. - '&eBobs pick'
  434. - '&710% bonus XP'
  435. # (optional) Item enchantments, all enchantment names can be found https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  436. # enchant level can inrease with jobs level to give best RPG experiance
  437. enchants:
  438. - DAMAGE_ALL=1
  439. - FIRE_ASPECT=1
  440. cmd-on-join:
  441. - 'msg [name] Thx for joining this job!'
  442. - 'msg [name] Now start working and get money from [jobname] job!'
  443. cmd-on-leave:
  444. - 'msg [name] You have left this awesome [jobname] job'
  445. - 'msg [name] See you soon!'
  446. # from this point you can edit jobs by your liking, rename, remove or add new ones
  447. Bucheron:
  448. fullname: Bucheron
  449. shortname: Bu
  450. description: Gagne de l'argent en coupant du bois.
  451. ChatColour: GREEN
  452. chat-display: full
  453. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  454. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  455. points-progression-equation: basepoints*(joblevel-1)*0.01-((basepoints*(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  456. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  457. Gui:
  458. Id: 17
  459. Data: 2
  460. Break:
  461. 17-0:
  462. income: 0.15
  463. points: 0.15
  464. experience: 0.15
  465. 17-1:
  466. income: 0.15
  467. points: 0.15
  468. experience: 0.15
  469. 17-2:
  470. income: 0.15
  471. points: 0.15
  472. experience: 0.15
  473. 17-3:
  474. income: 0.15
  475. points: 0.15
  476. experience: 0.15
  477. 18-0:
  478. income: 0.05
  479. points: 0.05
  480. experience: 0.05
  481. 18-1:
  482. income: 0.05
  483. points: 0.05
  484. experience: 0.05
  485. 18-2:
  486. income: 0.05
  487. points: 0.05
  488. experience: 0.05
  489. 18-3:
  490. income: 0.05
  491. points: 0.05
  492. experience: 0.05
  493. 161-0:
  494. income: 0.05
  495. points: 0.05
  496. experience: 0.05
  497. 161-1:
  498. income: 0.05
  499. points: 0.05
  500. experience: 0.05
  501. 162-0:
  502. income: 0.15
  503. points: 0.15
  504. experience: 0.15
  505. 162-1:
  506. income: 0.15
  507. points: 0.15
  508. experience: 0.15
  509. Kill:
  510. Player:
  511. income: 0
  512. points: 7.5
  513. experience: 7.5
  514. Mineur:
  515. fullname: Mineur
  516. shortname: Mi
  517. description: Gagne de l'argent en minant des minerais.
  518. ChatColour: DARK_GRAY
  519. chat-display: full
  520. #max-level: 10
  521. #slots: 10
  522. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4))
  523. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  524. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  525. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  526. Gui:
  527. Id: 270
  528. Data: 0
  529. Break:
  530. STONE:
  531. income: 0.01
  532. points: 0.0
  533. experience: 0.0
  534. STONE-1:
  535. income: 0.01
  536. points: 0.0
  537. experience: 0.0
  538. STONE-3:
  539. income: 0.01
  540. points: 0.0
  541. experience: 0.0
  542. STONE-5:
  543. income: 0.01
  544. points: 0.0
  545. experience: 0.0
  546. COAL_ORE:
  547. income: 0.05
  548. points: 0.05
  549. experience: 0.05
  550. GLOWING_REDSTONE_ORE:
  551. income: 0.05
  552. points: 0.15
  553. experience: 0.15
  554. IRON_ORE:
  555. income: 0.8
  556. points: 0.20
  557. experience: 0.20
  558. GOLD_ORE:
  559. income: 0.10
  560. points: 0.25
  561. experience: 0.25
  562. LAPIS_ORE:
  563. income: 0.10
  564. points: 0.25
  565. experience: 0.25
  566. DIAMOND_ORE:
  567. income: 0.35
  568. points: 1
  569. experience: 1
  570. EMERALD_ORE:
  571. income: 0.50
  572. points: 1
  573. experience: 1
  574. OBSIDIAN:
  575. income: 0.30
  576. points: 1.25
  577. experience: 1.25
  578. MOSSY_COBBLESTONE:
  579. income: 2.5
  580. points: 2.5
  581. experience: 2.5
  582. RAILS:
  583. income: 0.25
  584. points: 0.05
  585. experience: 0.05
  586. Place:
  587. MOSSY_COBBLESTONE:
  588. income: -2.5
  589. points: -2.5
  590. experience: -2.5
  591. IRON_ORE:
  592. income: -0.8
  593. points: -0.20
  594. experience: -0.20
  595. GOLD_ORE:
  596. income: -0.10
  597. points: -0.25
  598. experience: -0.25
  599. DIAMOND_ORE:
  600. income: -0.35
  601. points: -1
  602. experience: -1
  603. Kill:
  604. Player:
  605. income: 0
  606. points: 7.5
  607. experience: 7.5
  608. Batisseur:
  609. fullname: Batisseur
  610. shortname: Ba
  611. description: Gagne de l'argent en construissant.
  612. ChatColour: WHITE
  613. chat-display: full
  614. #max-level: 10
  615. #slots: 10
  616. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4))
  617. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  618. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  619. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  620. Gui:
  621. Id: 108
  622. Data: 0
  623. Place:
  624. '5':
  625. income: 0.10
  626. points: 0.15
  627. experience: 0.15
  628. '5-1':
  629. income: 0.10
  630. points: 0.15
  631. experience: 0.15
  632. '5-2':
  633. income: 0.10
  634. points: 0.15
  635. experience: 0.15
  636. '5-3':
  637. income: 0.10
  638. points: 0.15
  639. experience: 0.15
  640. '5-4':
  641. income: 0.10
  642. points: 0.15
  643. experience: 0.15
  644. '5-5':
  645. income: 0.10
  646. points: 0.15
  647. experience: 0.15
  648. '17':
  649. income: 0.10
  650. points: 0.15
  651. experience: 0.15
  652. '17-1':
  653. income: 0.15
  654. points: 0.15
  655. experience: 0.15
  656. '17-2':
  657. income: 0.15
  658. points: 0.15
  659. experience: 0.15
  660. '17-3':
  661. income: 0.15
  662. points: 0.15
  663. experience: 0.15
  664. '85':
  665. income: 0.10
  666. points: 0.15
  667. experience: 0.15
  668. '188':
  669. income: 0.10
  670. points: 0.15
  671. experience: 0.15
  672. '189':
  673. income: 0.10
  674. points: 0.15
  675. experience: 0.15
  676. '190':
  677. income: 0.10
  678. points: 0.15
  679. experience: 0.15
  680. '191':
  681. income: 0.10
  682. points: 0.15
  683. experience: 0.15
  684. '192':
  685. income: 0.10
  686. points: 0.15
  687. experience: 0.15
  688. '98':
  689. income: 0.20
  690. points: 0.20
  691. experience: 0.20
  692. '53':
  693. income: 0.20
  694. points: 0.20
  695. experience: 0.20
  696. '134':
  697. income: 0.20
  698. points: 0.20
  699. experience: 0.20
  700. '135':
  701. income: 0.20
  702. points: 0.20
  703. experience: 0.20
  704. '136':
  705. income: 0.20
  706. points: 0.20
  707. experience: 0.20
  708. '163':
  709. income: 0.20
  710. points: 0.20
  711. experience: 0.20
  712. '164':
  713. income: 0.20
  714. points: 0.20
  715. experience: 0.20
  716. '1':
  717. income: 0.10
  718. points: 0.10
  719. experience: 0.10
  720. '1-1':
  721. income: 0.10
  722. points: 0.10
  723. experience: 0.10
  724. '1-2':
  725. income: 0.10
  726. points: 0.10
  727. experience: 0.10
  728. '1-3':
  729. income: 0.10
  730. points: 0.10
  731. experience: 0.10
  732. '1-4':
  733. income: 0.10
  734. points: 0.10
  735. experience: 0.10
  736. '1-5':
  737. income: 0.10
  738. points: 0.10
  739. experience: 0.10
  740. '1-6':
  741. income: 0.10
  742. points: 0.10
  743. experience: 0.10
  744. '4':
  745. income: 0.10
  746. points: 0.10
  747. experience: 0.10
  748. '48':
  749. income: 0.50
  750. points: 0.50
  751. experience: 0.50
  752. '98':
  753. income: 0.10
  754. points: 0.10
  755. experience: 0.10
  756. '98-1':
  757. income: 0.50
  758. points: 0.50
  759. experience: 0.50
  760. '98-2':
  761. income: 0.10
  762. points: 0.10
  763. experience: 0.10
  764. '98-3':
  765. income: 0.10
  766. points: 0.10
  767. experience: 0.10
  768. '139':
  769. income: 0.10
  770. points: 0.10
  771. experience: 0.10
  772. '139-1':
  773. income: 0.25
  774. points: 0.25
  775. experience: 0.25
  776. '67':
  777. income: 0.10
  778. points: 0.10
  779. experience: 0.10
  780. '109':
  781. income: 0.10
  782. points: 0.10
  783. experience: 0.10
  784. '35':
  785. income: 0.10
  786. points: 0.15
  787. experience: 0.15
  788. '35-1':
  789. income: 0.10
  790. points: 0.15
  791. experience: 0.15
  792. '35-2':
  793. income: 0.10
  794. points: 0.15
  795. experience: 0.15
  796. '35-3':
  797. income: 0.10
  798. points: 0.15
  799. experience: 0.15
  800. '35-4':
  801. income: 0.10
  802. points: 0.15
  803. experience: 0.15
  804. '35-5':
  805. income: 0.10
  806. points: 0.15
  807. experience: 0.15
  808. '35-6':
  809. income: 0.10
  810. points: 0.15
  811. experience: 0.15
  812. '35-7':
  813. income: 0.10
  814. points: 0.15
  815. experience: 0.15
  816. '35-8':
  817. income: 0.10
  818. points: 0.15
  819. experience: 0.15
  820. '35-9':
  821. income: 0.10
  822. points: 0.15
  823. experience: 0.15
  824. '35-10':
  825. income: 0.10
  826. points: 0.15
  827. experience: 0.15
  828. '35-11':
  829. income: 0.10
  830. points: 0.15
  831. experience: 0.15
  832. '35-12':
  833. income: 0.10
  834. points: 0.15
  835. experience: 0.15
  836. '35-13':
  837. income: 0.10
  838. points: 0.15
  839. experience: 0.15
  840. '35-14':
  841. income: 0.10
  842. points: 0.15
  843. experience: 0.15
  844. '35-15':
  845. income: 0.10
  846. points: 0.15
  847. experience: 0.15
  848. '112':
  849. income: 0.10
  850. points: 0.25
  851. experience: 0.25
  852. '113':
  853. income: 0.10
  854. points: 0.25
  855. experience: 0.25
  856. '114':
  857. income: 0.10
  858. points: 0.25
  859. experience: 0.25
  860. '156':
  861. income: 0.10
  862. points: 0.25
  863. experience: 0.25
  864. '89':
  865. income: 0.20
  866. points: 0.30
  867. experience: 0.30
  868. '24':
  869. income: 0.20
  870. points: 0.20
  871. experience: 0.20
  872. '24-1':
  873. income: 0.20
  874. points: 0.20
  875. experience: 0.20
  876. '24-2':
  877. income: 0.20
  878. points: 0.20
  879. experience: 0.20
  880. '128':
  881. income: 0.25
  882. points: 0.25
  883. experience: 0.25
  884. '20':
  885. income: 0.10
  886. points: 0.30
  887. experience: 0.30
  888. '95':
  889. income: 0.10
  890. points: 0.30
  891. experience: 0.30
  892. '95-1':
  893. income: 0.10
  894. points: 0.30
  895. experience: 0.30
  896. '95-2':
  897. income: 0.10
  898. points: 0.30
  899. experience: 0.30
  900. '95-3':
  901. income: 0.10
  902. points: 0.30
  903. experience: 0.30
  904. '95-4':
  905. income: 0.10
  906. points: 0.30
  907. experience: 0.30
  908. '95-5':
  909. income: 0.10
  910. points: 0.30
  911. experience: 0.30
  912. '95-6':
  913. income: 0.10
  914. points: 0.30
  915. experience: 0.30
  916. '95-7':
  917. income: 0.10
  918. points: 0.30
  919. experience: 0.30
  920. '95-8':
  921. income: 0.10
  922. points: 0.30
  923. experience: 0.30
  924. '95-9':
  925. income: 0.10
  926. points: 0.30
  927. experience: 0.30
  928. '95-10':
  929. income: 0.10
  930. points: 0.30
  931. experience: 0.30
  932. '95-11':
  933. income: 0.10
  934. points: 0.30
  935. experience: 0.30
  936. '95-12':
  937. income: 0.10
  938. points: 0.30
  939. experience: 0.30
  940. '95-13':
  941. income: 0.10
  942. points: 0.30
  943. experience: 0.30
  944. '95-14':
  945. income: 0.10
  946. points: 0.30
  947. experience: 0.30
  948. '95-15':
  949. income: 0.10
  950. points: 0.30
  951. experience: 0.30
  952. '45':
  953. income: 0.10
  954. points: 0.40
  955. experience: 0.40
  956. '108':
  957. income: 0.15
  958. points: 0.40
  959. experience: 0.40
  960. '43':
  961. income: 0.10
  962. points: 0.20
  963. experience: 0.20
  964. '43-1':
  965. income: 0.10
  966. points: 0.20
  967. experience: 0.20
  968. '43-2':
  969. income: 0.10
  970. points: 0.20
  971. experience: 0.20
  972. '43-3':
  973. income: 0.10
  974. points: 0.20
  975. experience: 0.20
  976. '43-4':
  977. income: 0.10
  978. points: 0.20
  979. experience: 0.20
  980. '43-5':
  981. income: 0.10
  982. points: 0.20
  983. experience: 0.20
  984. '43-6':
  985. income: 0.10
  986. points: 0.20
  987. experience: 0.20
  988. '43-7':
  989. income: 0.10
  990. points: 0.20
  991. experience: 0.20
  992. '44':
  993. income: 0.10
  994. points: 0.20
  995. experience: 0.20
  996. '44-1':
  997. income: 0.10
  998. points: 0.20
  999. experience: 0.20
  1000. '44-2':
  1001. income: 0.10
  1002. points: 0.20
  1003. experience: 0.20
  1004. '44-3':
  1005. income: 0.10
  1006. points: 0.20
  1007. experience: 0.20
  1008. '44-4':
  1009. income: 0.10
  1010. points: 0.20
  1011. experience: 0.20
  1012. '44-5':
  1013. income: 0.10
  1014. points: 0.20
  1015. experience: 0.20
  1016. '44-6':
  1017. income: 0.10
  1018. points: 0.20
  1019. experience: 0.20
  1020. '44-7':
  1021. income: 0.10
  1022. points: 0.20
  1023. experience: 0.20
  1024. '125':
  1025. income: 0.10
  1026. points: 0.20
  1027. experience: 0.20
  1028. '125-1':
  1029. income: 0.10
  1030. points: 0.20
  1031. experience: 0.20
  1032. '125-2':
  1033. income: 0.10
  1034. points: 0.20
  1035. experience: 0.2
  1036. '125-3':
  1037. income: 0.10
  1038. points: 0.20
  1039. experience: 0.20
  1040. '125-4':
  1041. income: 0.10
  1042. points: 0.20
  1043. experience: 0.20
  1044. '125-5':
  1045. income: 0.10
  1046. points: 0.20
  1047. experience: 0.20
  1048. '126':
  1049. income: 0.10
  1050. points: 0.20
  1051. experience: 0.20
  1052. '126-1':
  1053. income: 0.10
  1054. points: 0.20
  1055. experience: 0.20
  1056. '126-2':
  1057. income: 0.10
  1058. points: 0.20
  1059. experience: 0.2
  1060. '126-3':
  1061. income: 0.10
  1062. points: 0.20
  1063. experience: 0.20
  1064. '126-4':
  1065. income: 0.10
  1066. points: 0.20
  1067. experience: 0.20
  1068. '126-5':
  1069. income: 0.10
  1070. points: 0.20
  1071. experience: 0.20
  1072. '181':
  1073. income: 0.10
  1074. points: 0.20
  1075. experience: 0.20
  1076. '182':
  1077. income: 0.10
  1078. points: 0.20
  1079. experience: 0.20
  1080. '204':
  1081. income: 0.10
  1082. points: 0.20
  1083. experience: 0.20
  1084. '205':
  1085. income: 0.10
  1086. points: 0.20
  1087. experience: 0.20
  1088. '47':
  1089. income: 0.10
  1090. points: 0.20
  1091. experience: 0.20
  1092. '42':
  1093. income: 0.10
  1094. points: 0.20
  1095. experience: 0.20
  1096. '41':
  1097. income: 0.10
  1098. points: 0.20
  1099. experience: 0.20
  1100. '57':
  1101. income: 0.10
  1102. points: 0.20
  1103. experience: 0.20
  1104. '133':
  1105. income: 0.10
  1106. points: 0.20
  1107. experience: 0.20
  1108. '172':
  1109. income:0.10
  1110. points:0.20
  1111. experience:0.20
  1112. Kill:
  1113. Player:
  1114. income: 0.0
  1115. points: 7.5
  1116. experience: 7.5
  1117. Terraformeur:
  1118. fullname: Terraformeur
  1119. shortname: Te
  1120. description: Gagne de l'argent en terraformant.
  1121. ChatColour: GOLD
  1122. chat-display: full
  1123. #max-level: 10
  1124. #slots: 10
  1125. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  1126. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1127. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1128. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1129. Gui:
  1130. Id: 269
  1131. Data: 0
  1132. Break:
  1133. '110':
  1134. income: 0.2
  1135. points: 0.2
  1136. experience: 0.2
  1137. '3-1':
  1138. income: 0.2
  1139. points: 0.2
  1140. experience: 0.2
  1141. '3-2':
  1142. income: 0.2
  1143. points: 0.2
  1144. experience: 0.2
  1145. '179':
  1146. income: 0.2
  1147. points: 0.2
  1148. experience: 0.2
  1149. DIRT:
  1150. income: 0.2
  1151. points: 0.2
  1152. experience: 0.2
  1153. GRASS:
  1154. income: 0.2
  1155. points: 0.2
  1156. experience: 0.2
  1157. GRAVEL:
  1158. income: 0.2
  1159. points: 0.2
  1160. experience: 0.2
  1161. SAND:
  1162. income: 0.3
  1163. points: 0.3
  1164. experience: 0.3
  1165. CLAY:
  1166. income: 0.3
  1167. points: 0.3
  1168. experience: 0.3
  1169. '159':
  1170. income: 0.4
  1171. points: 0.4
  1172. experience: 0.4
  1173. '159-8':
  1174. income: 0.4
  1175. points: 0.4
  1176. experience: 0.4
  1177. '159-4':
  1178. income: 0.4
  1179. points: 0.4
  1180. experience: 0.4
  1181. '159-1':
  1182. income: 0.4
  1183. points: 0.4
  1184. experience: 0.4
  1185. '159-14':
  1186. income: 0.4
  1187. points: 0.4
  1188. experience: 0.4
  1189. '159-12':
  1190. income: 0.4
  1191. points: 0.4
  1192. experience: 0.4
  1193. '172':
  1194. income: 0.4
  1195. points: 0.4
  1196. experience: 0.4
  1197. Place:
  1198. '110':
  1199. income: 0.2
  1200. points: 0.2
  1201. experience: 0.2
  1202. '3-1':
  1203. income: 0.2
  1204. points: 0.2
  1205. experience: 0.2
  1206. '3-2':
  1207. income: 0.2
  1208. points: 0.2
  1209. experience: 0.2
  1210. '179':
  1211. income: 0.2
  1212. points: 0.2
  1213. experience: 0.2
  1214. DIRT:
  1215. income: 0.2
  1216. points: 0.2
  1217. experience: 0.2
  1218. GRASS:
  1219. income: 0.2
  1220. points: 0.2
  1221. experience: 0.2
  1222. GRAVEL:
  1223. income: 0.2
  1224. points: 0.2
  1225. experience: 0.2
  1226. SAND:
  1227. income: 0.3
  1228. points: 0.3
  1229. experience: 0.3
  1230. CLAY:
  1231. income: 0.3
  1232. points: 0.3
  1233. experience: 0.3
  1234. '159':
  1235. income: 0.4
  1236. points: 0.4
  1237. experience: 0.4
  1238. '159-8':
  1239. income: 0.4
  1240. points: 0.4
  1241. experience: 0.4
  1242. '159-4':
  1243. income: 0.4
  1244. points: 0.4
  1245. experience: 0.4
  1246. '159-1':
  1247. income: 0.4
  1248. points: 0.4
  1249. experience: 0.4
  1250. '159-14':
  1251. income: 0.4
  1252. points: 0.4
  1253. experience: 0.4
  1254. '159-12':
  1255. income: 0.4
  1256. points: 0.4
  1257. experience: 0.4
  1258. '172':
  1259. income: 0.4
  1260. points: 0.4
  1261. experience: 0.4
  1262. Kill:
  1263. Player:
  1264. income: 0.0
  1265. points: 7.5
  1266. experience: 7.5
  1267. Fermier:
  1268. fullname: Fermier
  1269. shortname: Fe
  1270. description: Gagne de l'argent en cultivant.
  1271. ChatColour: BLUE
  1272. chat-display: full
  1273. #max-level: 10
  1274. #slots: 10
  1275. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  1276. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1277. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1278. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1279. Gui:
  1280. Id: 290
  1281. Data: 0
  1282. Breed:
  1283. Wolf:
  1284. income: 0.4
  1285. points: 0.4
  1286. experience: 0.5
  1287. Ocelot:
  1288. income: 0.4
  1289. points: 0.4
  1290. experience: 0.5
  1291. Pig:
  1292. income: 0.4
  1293. points: 0.4
  1294. experience: 0.5
  1295. Cow:
  1296. income: 0.4
  1297. points: 0.4
  1298. experience: 0.5
  1299. Horse:
  1300. income: 0.4
  1301. points: 0.4
  1302. experience: 0.5
  1303. Rabbit:
  1304. income: 0.4
  1305. points: 0.4
  1306. experience: 0.5
  1307. Sheep:
  1308. income: 0.4
  1309. points: 0.4
  1310. experience: 0.5
  1311. Chicken:
  1312. income: 0.4
  1313. points: 0.4
  1314. experience: 0.5
  1315. Shear:
  1316. Red:
  1317. income: 0.10
  1318. points: 0.10
  1319. experience: 0.10
  1320. Orange:
  1321. income: 0.10
  1322. points: 0.10
  1323. experience: 0.10
  1324. Yellow:
  1325. income: 0.10
  1326. points: 0.10
  1327. experience: 0.10
  1328. Green:
  1329. income: 0.10
  1330. points: 0.10
  1331. experience: 0.10
  1332. Blue:
  1333. income: 0.10
  1334. points: 0.10
  1335. experience: 0.10
  1336. 'Light Blue':
  1337. income: 0.10
  1338. points: 0.10
  1339. experience: 0.10
  1340. Magenta:
  1341. income: 0.10
  1342. points: 0.10
  1343. experience: 0.10
  1344. Pink:
  1345. income: 0.10
  1346. points: 0.10
  1347. experience: 0.10
  1348. White:
  1349. income: 0.10
  1350. points: 0.10
  1351. experience: 0.10
  1352. 'Light Gray':
  1353. income: 0.10
  1354. points: 0.10
  1355. experience: 0.10
  1356. Black:
  1357. income: 0.10
  1358. points: 0.10
  1359. experience: 0.10
  1360. Brown:
  1361. income: 0.10
  1362. points: 0.10
  1363. experience: 0.10
  1364. Purple:
  1365. income: 0.10
  1366. points: 0.10
  1367. experience: 0.10
  1368. Cyan:
  1369. income: 0.10
  1370. points: 0.10
  1371. experience: 0.10
  1372. Gray:
  1373. income: 0.10
  1374. points: 0.10
  1375. experience: 0.10
  1376. 'Lime Green':
  1377. income: 0.10
  1378. points: 0.10
  1379. experience: 0.10
  1380. Milk:
  1381. Cow:
  1382. income: 0.05
  1383. points: 0.20
  1384. experience: 0.20
  1385. Break:
  1386. CHORUS_PLANT:
  1387. income: 0.10
  1388. points: 0.40
  1389. experience: 0.40
  1390. CHORUS_FLOWER:
  1391. income: 0.10
  1392. points: 0.40
  1393. experience: 0.40
  1394. BEETROOT_BLOCK-3:
  1395. income: 0.10
  1396. points: 0.40
  1397. experience: 0.40
  1398. CROPS-7:
  1399. income: 0.10
  1400. points: 0.40
  1401. experience: 0.40
  1402. CARROT-7:
  1403. income: 0.10
  1404. points: 0.40
  1405. experience: 0.40
  1406. POTATO-7:
  1407. income: 0.10
  1408. points: 0.40
  1409. experience: 0.40
  1410. PUMPKIN:
  1411. income: 0.05
  1412. points: 0.05
  1413. experience: 0.05
  1414. MELON_BLOCK:
  1415. income: 0.05
  1416. points: 0.05
  1417. experience: 0.05
  1418. SUGAR_CANE_BLOCK:
  1419. income: 0.05
  1420. points: 0.05
  1421. experience: 0.05
  1422. '127':
  1423. income: 0.05
  1424. points: 0.05
  1425. experience: 0.05
  1426. '81':
  1427. income: 0.05
  1428. points: 0.05
  1429. experience: 0.05
  1430. Place:
  1431. SUGAR_CANE_BLOCK:
  1432. income: -0.05
  1433. points: -0.05
  1434. experience: -0.05
  1435. Kill:
  1436. Player:
  1437. income: 0.0
  1438. points: 7.5
  1439. experience: 7.5
  1440. Chasseur:
  1441. fullname: Chasseur
  1442. shortname: Ch
  1443. description: Gagne de l'argent en tuant des animaux et des monstres.
  1444. ChatColour: RED
  1445. chat-display: full
  1446. #max-level: 10
  1447. #slots: 10
  1448. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  1449. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1450. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1451. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1452. Gui:
  1453. Id: 261
  1454. Data: 0
  1455. Tame:
  1456. Wolf:
  1457. income: 0.05
  1458. points: 0.05
  1459. experience: 0.05
  1460. Ocelot:
  1461. income: 0.10
  1462. points: 0.10
  1463. experience: 0.10
  1464. Horse:
  1465. income: 0.05
  1466. points: 0.05
  1467. experience: 0.05
  1468. Kill:
  1469. Chicken:
  1470. income: 0.25
  1471. points: 0.25
  1472. experience: 0.25
  1473. Cow:
  1474. income: 0.25
  1475. points: 0.25
  1476. experience: 0.25
  1477. Pig:
  1478. income: 0.25
  1479. points: 0.25
  1480. experience: 0.25
  1481. Sheep:
  1482. income: 0.25
  1483. points: 0.25
  1484. experience: 0.25
  1485. Wolf:
  1486. income: 1
  1487. points: 0.50
  1488. experience: 0.50
  1489. Creeper:
  1490. income: 0.50
  1491. points: 1
  1492. experience: 1
  1493. Skeleton:
  1494. income: 0.10
  1495. points: 1
  1496. experience: 1
  1497. Spider:
  1498. income: 0.10
  1499. points: 1
  1500. experience: 1
  1501. Zombie:
  1502. income: 0.10
  1503. points: 1
  1504. experience: 1
  1505. BLAZE:
  1506. income: 0.20
  1507. points: 0.25
  1508. experience: 0.25
  1509. CAVE_SPIDER:
  1510. income: 0.20
  1511. points: 0.25
  1512. experience: 0.25
  1513. ENDERMAN:
  1514. income: 0.15
  1515. points: 1
  1516. experience: 1
  1517. GHAST:
  1518. income: 0.10
  1519. points: 0.25
  1520. experience: 0.25
  1521. MUSHROOM_COW:
  1522. income: 0.25
  1523. points: 0.25
  1524. experience: 0.25
  1525. PIG_ZOMBIE:
  1526. income: 0.10
  1527. points: 1
  1528. experience: 1
  1529. SILVERFISH:
  1530. income: 0.25
  1531. points: 1
  1532. experience: 1
  1533. RABBIT:
  1534. income: 0.25
  1535. points: 0.25
  1536. experience: 0.25
  1537. GUARDIAN:
  1538. income: 0.10
  1539. points: 1
  1540. experience: 1
  1541. SHULKER:
  1542. income: 0.5
  1543. points: 1
  1544. experience: 1
  1545. Player:
  1546. income: 0.0
  1547. points: 9
  1548. experience: 7.5
  1549. Botaniste:
  1550. fullname: Botaniste
  1551. shortname: Bo
  1552. description: Gagne de l'argent en etant proche de la nature.
  1553. ChatColour: AQUA
  1554. chat-display: full
  1555. #max-level: 10
  1556. #slots: 10
  1557. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  1558. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1559. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1560. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1561. Place:
  1562. '31-1':
  1563. income: 0.4
  1564. points: 0.4
  1565. experience: 0.4
  1566. '31-2':
  1567. income: 0.4
  1568. points: 0.4
  1569. experience: 0.4
  1570. '37':
  1571. income: 0.4
  1572. points: 0.4
  1573. experience: 0.4
  1574. '31-1':
  1575. income: 0.4
  1576. points: 0.4
  1577. experience: 0.4
  1578. '38':
  1579. income: 0.4
  1580. points: 0.4
  1581. experience: 0.4
  1582. '38-1':
  1583. income: 0.4
  1584. points: 0.4
  1585. experience: 0.4
  1586. '38-2':
  1587. income: 0.4
  1588. points: 0.4
  1589. experience: 0.4
  1590. '38-3':
  1591. income: 0.4
  1592. points: 0.4
  1593. experience: 0.4
  1594. '38-4':
  1595. income: 0.4
  1596. points: 0.4
  1597. experience: 0.4
  1598. '38-5':
  1599. income: 0.4
  1600. points: 0.4
  1601. experience: 0.4
  1602. '38-6':
  1603. income: 0.4
  1604. points: 0.4
  1605. experience: 0.4
  1606. '38-7':
  1607. income: 0.4
  1608. points: 0.4
  1609. experience: 0.4
  1610. '38-8':
  1611. income: 0.4
  1612. points: 0.4
  1613. experience: 0.4
  1614. '39':
  1615. income: 0.4
  1616. points: 0.4
  1617. experience: 0.4
  1618. '40':
  1619. income: 0.4
  1620. points: 0.4
  1621. experience: 0.4
  1622. '106':
  1623. income: 0.3
  1624. points: 0.3
  1625. experience: 0.3
  1626. '111':
  1627. income: 0.5
  1628. points: 0.5
  1629. experience: 0.5
  1630. '175':
  1631. income: 0.4
  1632. points: 0.4
  1633. experience: 0.4
  1634. '175-1':
  1635. income: 0.4
  1636. points: 0.4
  1637. experience: 0.4
  1638. '175-2':
  1639. income: 0.4
  1640. points: 0.4
  1641. experience: 0.4
  1642. '175-3':
  1643. income: 0.5
  1644. points: 0.5
  1645. experience: 0.5
  1646. '175-4':
  1647. income: 0.4
  1648. points: 0.4
  1649. experience: 0.4
  1650. '175-5':
  1651. income: 0.4
  1652. points: 0.4
  1653. experience: 0.4
  1654. Kill:
  1655. Player:
  1656. income: 0
  1657. points: 7.5
  1658. experience: 7.5
  1659. Cuisinier:
  1660. fullname: Cuisinier
  1661. shortname: Cu
  1662. description: Gagne de l'argent en cuisinant.
  1663. ChatColour: RED
  1664. chat-display: full
  1665. #max-level: 10
  1666. #slots: 10
  1667. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  1668. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1669. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1670. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1671. Gui:
  1672. Id: 61
  1673. Data: 0
  1674. Craft:
  1675. '357':
  1676. income: 0.05
  1677. points: 0.20
  1678. experience: 0.20
  1679. '322':
  1680. income: 0.30
  1681. points: 0.40
  1682. experience: 0.40
  1683. '396':
  1684. income: 0.10
  1685. points: 0.20
  1686. experience: 0.20
  1687. '400':
  1688. income: 0.20
  1689. points: 0.30
  1690. experience: 0.30
  1691. '413':
  1692. income: 0.50
  1693. points: 0.40
  1694. experience: 0.40
  1695. '436':
  1696. income: 0.15
  1697. points: 0.15
  1698. experience: 0.15
  1699. '297':
  1700. income:0.1
  1701. points:0.2
  1702. experience:0.2
  1703. '282':
  1704. income:0.15
  1705. points:0.2
  1706. experience:0.15
  1707. Smelt:
  1708. '424':
  1709. income: 0.10
  1710. points: 0.20
  1711. experience: 0.20
  1712. '320':
  1713. income: 0.10
  1714. points: 0.20
  1715. experience: 0.20
  1716. '393':
  1717. income: 0.10
  1718. points: 0.20
  1719. experience: 0.20
  1720. '350':
  1721. income: 0.10
  1722. points: 0.20
  1723. experience: 0.20
  1724. '350-1':
  1725. income: 0.10
  1726. points: 0.20
  1727. experience: 0.20
  1728. '366':
  1729. income: 0.10
  1730. points: 0.20
  1731. experience: 0.20
  1732. '364':
  1733. income: 0.10
  1734. points: 0.20
  1735. experience: 0.20
  1736. '412':
  1737. income: 0.10
  1738. points: 0.20
  1739. experience: 0.20
  1740. Kill:
  1741. Player:
  1742. income: 0
  1743. points: 7.5
  1744. experience: 7.5
  1745. Pecheur:
  1746. fullname: Pecheur
  1747. shortname: Fi
  1748. description: Gagne de l'argent en pechant.
  1749. ChatColour: AQUA
  1750. chat-display: full
  1751. #max-level: 10
  1752. #slots: 10
  1753. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)))
  1754. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1755. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1756. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1757. Gui:
  1758. Id: 346
  1759. Data: 0
  1760. Fish:
  1761. '349-0':
  1762. income: 2.0
  1763. points: 2.0
  1764. experience: 2.0
  1765. '349-1':
  1766. income: 2.0
  1767. points: 2.0
  1768. experience: 2.0
  1769. '349-2':
  1770. income: 3.0
  1771. points: 3.0
  1772. experience: 3.0
  1773. '349-3':
  1774. income: 4.0
  1775. points: 4.0
  1776. experience: 4.0
  1777. Kill:
  1778. Player:
  1779. income: 0
  1780. points: 7.5
  1781. experience: 7.5
  1782. Forgeron:
  1783. fullname: Forgeron
  1784. shortname: Fo
  1785. description: Gagne de l'argent en craftant et reparant des armes et outils.
  1786. ChatColour: DARK_PURPLE
  1787. chat-display: full
  1788. #max-level: 10
  1789. #slots: 10
  1790. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  1791. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1792. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1793. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1794. Gui:
  1795. Id: 58
  1796. Data: 0
  1797. Craft:
  1798. WOOD_SWORD:
  1799. income: 0.06
  1800. points: 0.06
  1801. experience: 0.06
  1802. WOOD_PICKAXE:
  1803. income: 0.09
  1804. points: 0.09
  1805. experience: 0.09
  1806. '271':
  1807. income: 0.03
  1808. points: 0.03
  1809. experience: 0.03
  1810. '269':
  1811. income: 0.02
  1812. points: 0.02
  1813. experience: 0.02
  1814. '290':
  1815. income: 0.06
  1816. points: 0.06
  1817. experience: 0.06
  1818. '272':
  1819. income: 0.08
  1820. points: 0.08
  1821. experience: 0.08
  1822. '274':
  1823. income: 0.12
  1824. points: 0.12
  1825. experience: 0.12
  1826. '275':
  1827. income: 0.12
  1828. points: 0.12
  1829. experience: 0.12
  1830. '273':
  1831. income: 0.04
  1832. points: 0.04
  1833. experience: 0.04
  1834. LEATHER_BOOTS:
  1835. income: 0.02
  1836. points: 0.02
  1837. experience: 0.02
  1838. LEATHER_CHESTPLATE:
  1839. income: 0.04
  1840. points: 0.04
  1841. experience: 0.04
  1842. LEATHER_HELMET:
  1843. income: 0.03
  1844. points: 0.03
  1845. experience: 0.03
  1846. LEATHER_LEGGINGS:
  1847. income: 0.03
  1848. points: 0.03
  1849. experience: 0.03
  1850. IRON_SWORD:
  1851. income: 0.36
  1852. points: 0.36
  1853. experience: 0.36
  1854. IRON_PICKAXE:
  1855. income: 0.54
  1856. points: 0.54
  1857. experience: 0.54
  1858. IRON_AXE:
  1859. income: 0.54
  1860. points: 0.54
  1861. experience: 0.54
  1862. '292':
  1863. income: 0.36
  1864. points: 0.36
  1865. experience: 0.36
  1866. '256':
  1867. income: 0.18
  1868. points: 0.18
  1869. experience: 0.18
  1870. IRON_BOOTS:
  1871. income: 0.72
  1872. points: 0.72
  1873. experience: 0.72
  1874. IRON_CHESTPLATE:
  1875. income: 1.40
  1876. points: 1.40
  1877. experience: 1.40
  1878. IRON_HELMET:
  1879. income: 0.9
  1880. points: 0.9
  1881. experience: 0.9
  1882. IRON_LEGGINGS:
  1883. income: 1.26
  1884. points: 1.26
  1885. experience: 1.26
  1886. GOLD_SWORD:
  1887. income: 0.4
  1888. points: 0.4
  1889. experience: 0.4
  1890. GOLD_PICKAXE:
  1891. income: 0.6
  1892. points: 0.6
  1893. experience: 0.6
  1894. GOLD_AXE:
  1895. income: 0.6
  1896. points: 0.6
  1897. experience: 0.6
  1898. '294':
  1899. income: 0.4
  1900. points: 0.4
  1901. experience: 0.4
  1902. '284':
  1903. income: 0.2
  1904. points: 0.2
  1905. experience: 0.2
  1906. GOLD_BOOTS:
  1907. income: 0.8
  1908. points: 0.8
  1909. experience: 0.8
  1910. GOLD_CHESTPLATE:
  1911. income: 1.6
  1912. points: 1.6
  1913. experience: 1.6
  1914. GOLD_HELMET:
  1915. income: 1.00
  1916. points: 1.00
  1917. experience: 1.00
  1918. GOLD_LEGGINGS:
  1919. income: 1.20
  1920. points: 1.20
  1921. experience: 1.20
  1922. DIAMOND_SWORD:
  1923. income: 0.6
  1924. points: 0.6
  1925. experience: 0.6
  1926. DIAMOND_PICKAXE:
  1927. income: 0.9
  1928. points: 0.9
  1929. experience: 0.9
  1930. DIAMOND_AXE:
  1931. income: 0.9
  1932. points: 0.9
  1933. experience: 0.90
  1934. '293':
  1935. income: 0.6
  1936. points: 0.6
  1937. experience: 0.6
  1938. '277':
  1939. income: 0.3
  1940. points: 0.3
  1941. experience: 0.3
  1942. DIAMOND_HELMET:
  1943. income: 1.5
  1944. points: 1.5
  1945. experience: 1.5
  1946. DIAMOND_CHESTPLATE:
  1947. income: 2.4
  1948. points: 2.4
  1949. experience: 2.4
  1950. DIAMOND_LEGGINGS:
  1951. income: 2.1
  1952. points: 2.1
  1953. experience: 2.1
  1954. DIAMOND_BOOTS:
  1955. income: 1.2
  1956. points: 1.2
  1957. experience: 1.2
  1958. Repair:
  1959. WOOD_SWORD:
  1960. income: 0.10
  1961. points: 0.10
  1962. experience: 10.10
  1963. IRON_SWORD:
  1964. income: 0.20
  1965. points: 0.20
  1966. experience: 0.20
  1967. GOLD_SWORD:
  1968. income: 0.30
  1969. points: 0.30
  1970. experience: 0.30
  1971. DIAMOND_SWORD:
  1972. income: 0.40
  1973. points: 0.40
  1974. experience: 0.40
  1975. Smelt:
  1976. IRON_INGOT:
  1977. income: 0.30
  1978. points: 0.30
  1979. experience: 0.30
  1980. GOLD_INGOT:
  1981. income: 0.40
  1982. points: 0.40
  1983. experience: 0.40
  1984. Kill:
  1985. Player:
  1986. income: 0
  1987. points: 7.5
  1988. experience: 7.5
  1989. Alchimiste:
  1990. fullname: Alchimiste
  1991. shortname: Al
  1992. description: Gagne de l'argent en concoctant des potions.
  1993. ChatColour: LIGHT_PURPLE
  1994. chat-display: full
  1995. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  1996. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1997. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1998. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1999. Gui:
  2000. Id: 379
  2001. Data: 0
  2002. Break:
  2003. NETHER_WARTS-3:
  2004. income: 0.20
  2005. points: 0.02
  2006. experience: 0.02
  2007. Brew:
  2008. NETHER_STALK:
  2009. income: 0.30
  2010. points: 0.50
  2011. experience: 0.50
  2012. REDSTONE:
  2013. income: 0.10
  2014. points: 0.35
  2015. experience: 0.35
  2016. GLOWSTONE_DUST:
  2017. income: 0.10
  2018. points: 0.35
  2019. experience: 0.35
  2020. SPIDER_EYE:
  2021. income: 0.50
  2022. points: 0.35
  2023. experience: 0.35
  2024. FERMENTED_SPIDER_EYE:
  2025. income: 0.60
  2026. points: 0.35
  2027. experience: 0.35
  2028. BLAZE_POWDER:
  2029. income: 0.40
  2030. points: 0.52
  2031. experience: 0.52
  2032. SUGAR:
  2033. income: 0.10
  2034. points: 0.17
  2035. experience: 0.17
  2036. SPECKLED_MELON:
  2037. income: 0.60
  2038. points: 0.70
  2039. experience: 0.70
  2040. MAGMA_CREAM:
  2041. income: 0.60
  2042. points: 0.70
  2043. experience: 0.70
  2044. GHAST_TEAR:
  2045. income: 0.80
  2046. points: 0.70
  2047. experience: 0.70
  2048. GOLDEN_CARROT:
  2049. income: 0.60
  2050. points: 0.70
  2051. experience: 0.70
  2052. 349-3:
  2053. income: 0.80
  2054. points: 0.70
  2055. experience: 0.70
  2056. RABBIT_FOOT:
  2057. income: 0.60
  2058. points: 0.70
  2059. experience: 0.70
  2060. '437':
  2061. income: 0.40
  2062. points: 0.50
  2063. experience: 0.50
  2064. Kill:
  2065. Player:
  2066. income: 0
  2067. points: 7.5
  2068. experience: 7.5
  2069. Enchanter:
  2070. fullname: Enchanteur
  2071. shortname: En
  2072. description: Gagne de l'argent en enchantant des armes et des outils.
  2073. ChatColour: DARK_BLUE
  2074. chat-display: full
  2075. #max-level: 10
  2076. #slots: 10
  2077. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  2078. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2079. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2080. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2081. Gui:
  2082. Id: 116
  2083. Data: 0
  2084. Enchant:
  2085. ARROW_DAMAGE-1:
  2086. income: 0.10
  2087. points: 0.10
  2088. experience: 0.10
  2089. ARROW_DAMAGE-2:
  2090. income: 0.20
  2091. points: 0.20
  2092. experience: 20.0
  2093. ARROW_DAMAGE-3:
  2094. income: 0.30
  2095. points: 0.30
  2096. experience: 0.30
  2097. ARROW_DAMAGE-4:
  2098. income: 0.40
  2099. points: 0.40
  2100. experience: 0.40
  2101. ARROW_DAMAGE-5:
  2102. income: 0.50
  2103. points: 0.50
  2104. experience: 0.50
  2105. ARROW_FIRE:
  2106. income: 0.30
  2107. points: 0.30
  2108. experience: 0.30
  2109. ARROW_INFINITE:
  2110. income: 0.40
  2111. points: 0.40
  2112. experience: 0.40
  2113. ARROW_KNOCKBACK-1:
  2114. income: 0.10
  2115. points: 0.10
  2116. experience: 0.10
  2117. ARROW_KNOCKBACK-2:
  2118. income: 0.30
  2119. points: 0.30
  2120. experience: 0.30
  2121. DAMAGE_ALL-1:
  2122. income: 0.10
  2123. points: 0.10
  2124. experience: 0.10
  2125. DAMAGE_ALL-2:
  2126. income: 0.20
  2127. points: 0.20
  2128. experience: 0.20
  2129. DAMAGE_ALL-3:
  2130. income: 0.30
  2131. points: 0.30
  2132. experience: 0.30
  2133. DAMAGE_ALL-4:
  2134. income: 0.40
  2135. points: 0.40
  2136. experience: 0.40
  2137. DAMAGE_ALL-5:
  2138. income: 0.50
  2139. points: 0.50
  2140. experience: 0.50
  2141. DAMAGE_ARTHROPODS-1:
  2142. income: 0.10
  2143. points: 0.10
  2144. experience: 0.10
  2145. DAMAGE_ARTHROPODS-2:
  2146. income: 0.20
  2147. points: 0.20
  2148. experience: 0.20
  2149. DAMAGE_ARTHROPODS-3:
  2150. income: 0.30
  2151. points: 0.30
  2152. experience: 0.30
  2153. DAMAGE_ARTHROPODS-4:
  2154. income: 0.40
  2155. points: 0.40
  2156. experience: 0.40
  2157. DAMAGE_ARTHROPODS-5:
  2158. income: 0.50
  2159. points: 0.50
  2160. experience: 0.50
  2161. DAMAGE_UNDEAD-1:
  2162. income: 0.10
  2163. points: 0.10
  2164. experience: 0.10
  2165. DAMAGE_UNDEAD-2:
  2166. income: 0.20
  2167. points: 0.20
  2168. experience: 0.20
  2169. DAMAGE_UNDEAD-3:
  2170. income: 0.30
  2171. points: 0.30
  2172. experience: 0.30
  2173. DAMAGE_UNDEAD-4:
  2174. income: 0.40
  2175. points: 0.40
  2176. experience: 0.40
  2177. DAMAGE_UNDEAD-5:
  2178. income: 0.50
  2179. points: 0.50
  2180. experience: 0.50
  2181. DEPTH_STRIDER-1:
  2182. income: 0.20
  2183. points: 0.20
  2184. experience: 0.20
  2185. DEPTH_STRIDER-2:
  2186. income: 0.30
  2187. points: 0.30
  2188. experience: 0.30
  2189. DEPTH_STRIDER-3:
  2190. income: 0.50
  2191. points: 0.50
  2192. experience: 0.50
  2193. DIG_SPEED-1:
  2194. income: 0.10
  2195. points: 0.10
  2196. experience: 0.10
  2197. DIG_SPEED-2:
  2198. income: 0.20
  2199. points: 0.20
  2200. experience: 0.20
  2201. DIG_SPEED-3:
  2202. income: 0.30
  2203. points: 0.30
  2204. experience: 0.30
  2205. DIG_SPEED-4:
  2206. income: 0.40
  2207. points: 0.40
  2208. experience: 0.40
  2209. DIG_SPEED-5:
  2210. income: 0.50
  2211. points: 0.50
  2212. experience: 0.50
  2213. DURABILITY-1:
  2214. income: 0.10
  2215. points: 0.10
  2216. experience: 0.10
  2217. DURABILITY-2:
  2218. income: 0.20
  2219. points: 0.20
  2220. experience: 0.20
  2221. DURABILITY-3:
  2222. income: 0.30
  2223. points: 0.30
  2224. experience: 0.30
  2225. FIRE_ASPECT-1:
  2226. income: 0.15
  2227. points: 0.15
  2228. experience: 0.15
  2229. FIRE_ASPECT-2:
  2230. income: 0.25
  2231. points: 0.25
  2232. experience: 0.25
  2233. KNOCKBACK-1:
  2234. income: 0.15
  2235. points: 0.15
  2236. experience: 0.15
  2237. KNOCKBACK-2:
  2238. income: 0.25
  2239. points: 0.25
  2240. experience: 0.25
  2241. LOOT_BONUS_BLOCKS-1:
  2242. income: 0.20
  2243. points: 0.20
  2244. experience: 0.20
  2245. LOOT_BONUS_BLOCKS-2:
  2246. income: 0.30
  2247. points: 0.30
  2248. experience: 0.30
  2249. LOOT_BONUS_BLOCKS-3:
  2250. income: 0.40
  2251. points: 0.40
  2252. experience: 0.40
  2253. LOOT_BONUS_MOBS-1:
  2254. income: 0.20
  2255. points: 0.20
  2256. experience: 0.20
  2257. LOOT_BONUS_MOBS-2:
  2258. income: 0.30
  2259. points: 0.30
  2260. experience: 0.30
  2261. LOOT_BONUS_MOBS-3:
  2262. income: 0.40
  2263. points: 0.40
  2264. experience: 0.40
  2265. LUCK-1:
  2266. income: 0.10
  2267. points: 0.10
  2268. experience: 0.10
  2269. LUCK-2:
  2270. income: 0.15
  2271. points: 0.15
  2272. experience: 0.15
  2273. LUCK-3:
  2274. income: 0.20
  2275. points: 0.20
  2276. experience: 0.20
  2277. LURE-1:
  2278. income: 0.10
  2279. points: 0.10
  2280. experience: 0.10
  2281. LURE-2:
  2282. income: 0.15
  2283. points: 0.15
  2284. experience: 0.15
  2285. LURE-3:
  2286. income: 0.20
  2287. points: 0.20
  2288. experience: 0.20
  2289. OXYGEN-1:
  2290. income: 0.15
  2291. points: 0.15
  2292. experience: 0.15
  2293. OXYGEN-2:
  2294. income: 0.20
  2295. points: 0.20
  2296. experience: 0.20
  2297. OXYGEN-3:
  2298. income: 0.30
  2299. points: 0.30
  2300. experience: 0.30
  2301. PROTECTION_ENVIRONMENTAL-1:
  2302. income: 0.10
  2303. points: 0.10
  2304. experience: 0.10
  2305. PROTECTION_ENVIRONMENTAL-2:
  2306. income: 0.20
  2307. points: 0.20
  2308. experience: 0.20
  2309. PROTECTION_ENVIRONMENTAL-3:
  2310. income: 0.30
  2311. points: 30.30
  2312. experience: 0.30
  2313. PROTECTION_ENVIRONMENTAL-4:
  2314. income: 0.40
  2315. points: 0.40
  2316. experience: 0.40
  2317. PROTECTION_EXPLOSIONS-1:
  2318. income: 0.10
  2319. points: 0.10
  2320. experience: 0.10
  2321. PROTECTION_EXPLOSIONS-2:
  2322. income: 0.20
  2323. points: 0.20
  2324. experience: 0.20
  2325. PROTECTION_EXPLOSIONS-3:
  2326. income: 0.30
  2327. points: 0.30
  2328. experience: 0.30
  2329. PROTECTION_EXPLOSIONS-4:
  2330. income: 0.40
  2331. points: 0.40
  2332. experience: 0.40
  2333. PROTECTION_FALL-1:
  2334. income: 0.10
  2335. points: 0.10
  2336. experience: 0.10
  2337. PROTECTION_FALL-2:
  2338. income: 0.20
  2339. points: 0.20
  2340. experience: 0.20
  2341. PROTECTION_FALL-3:
  2342. income: 0.30
  2343. points: 0.30
  2344. experience: 0.30
  2345. PROTECTION_FALL-4:
  2346. income: 0.40
  2347. points: 0.40
  2348. experience: 0.40
  2349. PROTECTION_FIRE-1:
  2350. income: 0.10
  2351. points: 0.10
  2352. experience: 0.10
  2353. PROTECTION_FIRE-2:
  2354. income: 0.20
  2355. points: 0.20
  2356. experience: 0.20
  2357. PROTECTION_FIRE-3:
  2358. income: 0.30
  2359. points: 0.30
  2360. experience: 0.30
  2361. PROTECTION_FIRE-4:
  2362. income: 0.40
  2363. points: 0.40
  2364. experience: 0.40
  2365. PROTECTION_PROJECTILE-1:
  2366. income: 0.10
  2367. points: 0.10
  2368. experience: 0.10
  2369. PROTECTION_PROJECTILE-2:
  2370. income: 0.20
  2371. points: 0.20
  2372. experience: 0.20
  2373. PROTECTION_PROJECTILE-3:
  2374. income: 0.30
  2375. points: 0.30
  2376. experience: 0.30
  2377. PROTECTION_PROJECTILE-4:
  2378. income: 0.40
  2379. points: 0.40
  2380. experience: 0.40
  2381. SILK_TOUCH:
  2382. income: 0.50
  2383. points: 0.50
  2384. experience: 0.50
  2385. THORNS-1:
  2386. income: 0.20
  2387. points: 0.20
  2388. experience: 0.20
  2389. THORNS-2:
  2390. income: 0.30
  2391. points: 0.30
  2392. experience: 0.30
  2393. THORNS-3:
  2394. income: 0.40
  2395. points: 0.40
  2396. experience: 0.40
  2397. WATER_WORKER:
  2398. income: 0.30
  2399. points: 0.30
  2400. experience: 0.30
  2401. Kill:
  2402. Player:
  2403. income: 0
  2404. points: 7.5
  2405. experience: 7.5
  2406. None:
  2407. fullname: None
  2408. shortname: N
  2409. ChatColour: WHITE
  2410. chat-display: none
  2411. #max-level: 10
  2412. #slots: 10
  2413. leveling-progression-equation: 100*(joblevel)+(joblevel*joblevel*4)
  2414. income-progression-equation: baseincome+(joblevel-1)*0.01-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2415. points-progression-equation: basepoints+(joblevel-1)*0.01-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2416. experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2417. Kill:
  2418. Player:
  2419. income: 7.5
Add Comment
Please, Sign In to add comment