roracle

Jobs Config 1.13.2

Nov 10th, 2018
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 100.43 KB | None | 0 0
  1. # Jobs configuration.
  2. #
  3. # Edited by roracle to include 1.13 and 1.14 blocks/items/mobs.
  4. # 1.14 objects are commented out to prevent console errors
  5. #
  6. # Stores information about each job.
  7. #
  8. # NOTE: When having multiple jobs, both jobs will give the income payout to the player
  9. # even if they give the pay for one action (make the configurations with this in mind)
  10. # and each job will get the respective experience.
  11. #
  12. # e.g If player has 2 jobs where job1 gives 10 income and experience for killing a player
  13. # and job2 gives 5 income and experience for killing a player. When the user kills a player
  14. # they will get 15 income and job1 will gain 10 experience and job2 will gain 5 experience.
  15.  
  16. Jobs:
  17.  # Must be one word. This job will be ignored as this is just example of all possible actions.
  18.   exampleJob:
  19.    # full name of the job (displayed when browsing a job, used when joining and leaving)
  20.     # also can be used as a prefix for the user's name if the option is enabled.
  21.     # Shown as a prefix only when the user has 1 job.
  22.     #
  23.     # NOTE: Must be 1 word
  24.     fullname: Woodcutter
  25.     # Shortened version of the name of the job. Used as a prefix when the user has more than 1 job.
  26.     shortname: W
  27.     description: Earns money felling and planting trees
  28.     # Full description of job to be shown in job browse command
  29.     FullDescription:
  30.    - "&2Get money for:"
  31.     - "  &7Planting trees"
  32.     - "  &7Cutting down trees"
  33.     - "  &7Killing players"
  34.     # The colour of the name, for a full list of supported colours, go to the message config.
  35.     ChatColour: GREEN
  36.     # [OPTIONAL] The colour of the boss bar: GREEN, BLUE, RED, WHITE, YELLOW, PINK, PURPLE.
  37.     BossBarColour: WHITE
  38.     # Option to let you choose what kind of prefix this job adds to your name.
  39.     # options are: full, title, job, shortfull, shorttitle, shortjob and none
  40.     chat-display: full
  41.     # [OPTIONAL] - the maximum level of this class
  42.     max-level: 10
  43.     # [OPTIONAL] - the maximum level of this class with specific permission
  44.     # use jobs.[jobsname].vipmaxlevel, in this case it will be jobs.exampleJob.vipmaxlevel
  45.     vip-max-level: 20
  46.     # [OPTIONAL] - the maximum number of users on the server that can have this job at any one time (includes offline players).
  47.     slots: 1
  48.     # [OPTIONAL] Soft limits will allow to stop income/exp/point payment increase at some particular level but allow further general leveling.
  49.     # In example if player is level 70, he will get paid as he would be at level 50, exp gain will be as he would be at lvl 40 and point gain will be as at level 60
  50.     # This only applies after players level is higher than provided particular limit.
  51.     softIncomeLimit: 50
  52.     softExpLimit: 40
  53.     softPointsLimit: 60
  54.     # Equation used for calculating how much experience is needed to go to the next level.
  55.     # Available parameters:
  56.     #   numjobs - the number of jobs the player has
  57.     #   joblevel - the level the player has attained in the job.
  58.     # NOTE: Please take care of the brackets when modifying this equation.
  59.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  60.     # Equation used for calculating how much income is given per action for the job level.
  61.     # Available parameters:
  62.     #   numjobs - the number of jobs the player has
  63.     #   baseincome - the income for the action at level 1 (as set in the configuration).
  64.     #   joblevel - the level the player has attained in the job.
  65.     # NOTE: Please take care of the brackets when modifying this equation.
  66.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  67.     # Equation used for calculating how much points is given per action for the job level.
  68.     # Available parameters:
  69.     #   numjobs - the number of jobs the player has
  70.     #   basepoints - the points for the action at level 1 (as set in the configuration).
  71.     #   joblevel - the level the player has attained in the job.
  72.     # NOTE: Please take care of the brackets when modifying this equation.
  73.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  74.      # Equation used for calculating how much experience is given per action for the job level.
  75.     # Available parameters:
  76.     #   numjobs - the number of jobs the player has
  77.     #   baseexperience - the experience for the action at level 1 (as set in the configuration).
  78.     #   joblevel - the level the player has attained in the job.
  79.     # NOTE: Please take care of the brackets when modifying this equation.
  80.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  81.     # Defines how often in seconds player can rejoin this job. Can be bypassed with jobs.rejoinbypass
  82.     rejoinCooldown: 10
  83.     # GUI icon information when using GUI function
  84.     Gui:
  85.    # name of the block
  86.       Item: LOG:2
  87.     # If you want to use this instead of Item name.
  88.     # id of block
  89.     #  Id: 17
  90.     # data of block, usually its 0, but in example Diorite will have id of 1 and data of 3
  91.     #  Data: 2
  92.     # enchants in the item
  93.       Enchantments:
  94.      - 'DURABILITY:1'
  95.     # Defines maximum amount of daily quests player can have from THIS job
  96.     # This will not have effect on overall quest amount player will have
  97.     maxDailyQuests: 3
  98.     # Daily quests
  99.     # Each job can have as many daily quests as you want
  100.     # Players will have access to quests from jobs he is currently working at
  101.     Quests:
  102.      # Quest identification. Can be any ONE word or number or both of them. This doesn't have any real meaning but it can't repeat.
  103.       1:
  104.        # Quest name used for quests list, don't forget to enclose it with " "
  105.         Name: "Break Oak wood"
  106.         # Quest action can be any valid job action. Look at lower for all possible action types
  107.         Action: Break
  108.         # Target id or name. Comes in same format as it is for regular job action
  109.         Target: "17-0"
  110.         # Amount of actions players should perform to complete this quest
  111.         Amount: 300
  112.         # Command list to be performed after quest is finished.
  113.         # Use [playerName] to insert players name who finished that quest
  114.         RewardCommands:
  115.         - "money give [playerName] 500"
  116.         - "msg [playerName] Completed quest!"
  117.         # Quest description to be used to explain quest requirements or rewards for player
  118.         RewardDesc:
  119.         - "Break 300 Oak wood"
  120.         - "Get 500 bucks for this"
  121.         # Defines chance in getting this quest.
  122.         # If you have set 10 quests and player can have only 2, then quests with biggest chance will be picked most likely
  123.         # This will allow to have some rare quests with legendary rewards
  124.         Chance: 40
  125.         # Defines to which job level you want to give out this quest.
  126.         # Keep in mind that player will keep quest even if he is over level limit if he got new one while being under
  127.         # In example: player with level 2 takes quests and levels up to level 5, he still can finish this quest and after next quest reset (check general config file) he will no longer have option to get this quest
  128.         toLevel: 3
  129.         # Defines from which level you want to give option to get this quest
  130.         # You can use both limitations to have limited quests for particular job level ranges
  131.         fromLevel: 5
  132.       2:
  133.         Name: "Zombie killer"
  134.         Action: Kill
  135.         Target: Zombie
  136.         Amount: 50
  137.         RewardCommands:
  138.        - "money give [playerName] 2000"
  139.         - "msg [playerName] Completed quest!"
  140.         RewardDesc:
  141.        - "Kill 50 zombies"
  142.         - "Get 2000 for this!"
  143.       3:
  144.         Name: "Chicken cooker"
  145.         Action: Smelt
  146.         Target: "COOKED_CHICKEN"
  147.         Amount: 20
  148.         RewardCommands:
  149.        - "money give [playerName] 300"
  150.         - "msg [playerName] Completed quest!"
  151.         RewardDesc:
  152.        - "Cook some chicken breasts"
  153.         - "Get 300 for this!"
  154.     ########################################################################
  155.     # Section used to configure what items the job gets paid for, how much
  156.     # they get paid and how much experience they gain.
  157.     #
  158.     # For break and place, the block name or id is used.
  159.     # You can select a sub-type by using a '-' between the id and the bit
  160.     # value for the sub-type. e.g LOG-0 = usual log, LOG-2 = birch log
  161.     # 17-2 = birch log.
  162.     #
  163.     # If no sub-type is give, the payout will be for all sub-types.
  164.     #
  165.     # To get a list of all available block types, check the
  166.     # bukkit JavaDocs for a complete list of block types
  167.     # https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  168.     #
  169.     # For kill tags (Kill and custom-kill), the name is the name of the
  170.     # mob.
  171.     # Available mobs:
  172.     #   Bat
  173.     #   Blaze
  174.     #   Cave_spider
  175.     #   Chicken
  176.     #   Cow
  177.     #   Creeper
  178.     #   Ender_dragon
  179.     #   Enderman
  180.     #   Endermite
  181.     #   Ghast
  182.     #   Giant
  183.     #   Guardian
  184.     #   GuardianElder
  185.     #   Horse
  186.     #   HorseZombie
  187.     #   HorseSkeleton
  188.     #   Iron_golem
  189.     #   Magma_cube
  190.     #   Mushroom_cow
  191.     #   Ocelot
  192.     #   Pig
  193.     #   Player
  194.     #   Polar_Bear
  195.     #   Rabbit
  196.     #   Sheep
  197.     #   Silverfish
  198.     #   Skeleton
  199.     #   SkeletonWither
  200.     #   SkeletonStray
  201.     #   Shulker
  202.     #   Slime
  203.     #   Snowman
  204.     #   Spider
  205.     #   Squid
  206.     #   Villager
  207.     #   Witch
  208.     #   Wither
  209.     #   Wolf
  210.     #   Zombie
  211.     #   ZombieVillager
  212.     #   ZombieHusk
  213.     #
  214.     # NOTE: mob names are case sensitive.
  215.     #
  216.     # For custom-kill, it is the name of the job (also case sensitive).
  217.     #
  218.     # NOTE: If a job has both the pay for killing a player and for killing a
  219.     # specific class, they will get both payments.
  220.     ########################################################################
  221.     # payment for breaking a block
  222.     Break:
  223.      # block name/id (with optional sub-type)
  224.       LOG:
  225.        # base income, can be not used if using point system
  226.         income: 5.0
  227.         # base points, can be not used if using income system
  228.         points: 5.0
  229.         # base experience
  230.         experience: 5.0
  231.         # (OPTIONAL) from which level of this job player can get money for this action
  232.         # if not given, then player will always get money for this action
  233.         # this can be used for any action
  234.         from-level: 1
  235.         # (OPTIONAL) until which level player can get money for this action.
  236.         # if not given, then there is no limit
  237.         # this can be used for any action
  238.         until-level: 30
  239.       13:
  240.        # you can use minuses to take away money if the player break this block
  241.         income: -1.0
  242.         experience: -1.0
  243.     # payment for drinking a potion
  244.     Drink:
  245.       POTION:
  246.         income: 0.5
  247.         experience: 2.0
  248.       REGENERATION_POTION2:
  249.         income: 1.3
  250.         experience: 2.0
  251.       HEALING_POTION:
  252.         income: 1.4
  253.         experience: 2.0
  254.     # payment for breaking a block with tnt
  255.     TNTBreak:
  256.       LOG:
  257.         income: 5.0
  258.         points: 5.0
  259.         experience: 5.0
  260.     # payment for placing a block
  261.     Place:
  262.       SAPLING:
  263.         income: 1.0
  264.         points: 1.0
  265.         experience: 1.0
  266.       WOOD:
  267.         income: 2.0
  268.         points: 2.0
  269.         experience: 2.0
  270.     # Payment for trading a villager. Checks results only
  271.     VTrade:
  272.       EMERALD:
  273.         income: 1.0
  274.         points: 1.0
  275.         experience: 2.0
  276.     # killing a mob
  277.     Kill:
  278.      # mob name
  279.       Player:
  280.        # base income
  281.         income: 7.5
  282.         # base experience
  283.         experience: 7.5
  284.     # killing a MythicMob
  285.     MMKill:
  286.      # mob name
  287.       CustomNameHere:
  288.        # base income
  289.         income: 7.5
  290.         # base experience
  291.         experience: 7.5
  292.     # Killing player with certain job
  293.     custom-kill:
  294.       Woodcutter:
  295.         income: 10.0
  296.         experience: 10.0
  297.     # Taming animals
  298.     Tame:
  299.       Wolf:
  300.         income: 2.0
  301.         experience: 5.0
  302.     # Breeding animals
  303.     Breed:
  304.       Wolf:
  305.         income: 2.0
  306.         experience: 5.0
  307.     # Eating food
  308.     Eat:
  309.       cooked_rabbit:
  310.         income: 5
  311.         experience: 5
  312.       baked_potato:
  313.         income: 5
  314.         experience: 5
  315.     # Milking cows, only one option is available
  316.     Milk:
  317.       Cow:
  318.         income: 2.0
  319.         experience: 5.0
  320.       MushroomCow:
  321.         income: 5.0
  322.         experience: 10.0
  323.     # Shear sheeps by its color
  324.     Shear:
  325.       Black:
  326.         income: 2.0
  327.         experience: 5.0
  328.       Blue:
  329.         income: 2.0
  330.         experience: 5.0
  331.       Brown:
  332.         income: 2.0
  333.         experience: 5.0
  334.       Cyan:
  335.         income: 2.0
  336.         experience: 5.0
  337.       Gray:
  338.         income: 2.0
  339.         experience: 5.0
  340.       Green:
  341.         income: 2.0
  342.         experience: 5.0
  343.       Light_blue:
  344.         income: 2.0
  345.         experience: 5.0
  346.       'Lime Green':
  347.         income: 2.0
  348.         experience: 5.0
  349.       Magenta:
  350.         income: 2.0
  351.         experience: 5.0
  352.       Orange:
  353.         income: 2.0
  354.         experience: 5.0
  355.       Pink:
  356.         income: 2.0
  357.         experience: 5.0
  358.       Purple:
  359.         income: 2.0
  360.         experience: 5.0
  361.       Red:
  362.         income: 2.0
  363.         experience: 5.0
  364.       'Light Gray':
  365.         income: 2.0
  366.         experience: 5.0
  367.       White:
  368.         income: 2.0
  369.         experience: 5.0
  370.       Yellow:
  371.         income: 2.0
  372.         experience: 5.0
  373.     # dyeing armor
  374.     Dye:
  375.       LEATHER_BOOTS:
  376.         income: 1.0
  377.         experience: 1.0
  378.       LEATHER_CHESTPLATE:
  379.         income: 1.0
  380.         experience: 1.0
  381.       LEATHER_HELMET:
  382.         income: 1.0
  383.         experience: 1.0
  384.       LEATHER_LEGGINGS:
  385.         income: 1.0
  386.         experience: 1.0
  387.       351:
  388.         income: 1.0
  389.         experience: 1.0
  390.     # Catching fish
  391.     Fish:
  392.       '349':
  393.         income: 20.0
  394.         experience: 25.0
  395.     # Repairing items
  396.     Repair:
  397.       WOOD_SWORD:
  398.         income: 1.0
  399.         experience: 1.0
  400.       IRON_SWORD:
  401.         income: 2.0
  402.         experience: 2.0
  403.     # Crafting items
  404.     Craft:
  405.       WOOD_SWORD:
  406.         income: 1.5
  407.         experience: 3.0
  408.       LEATHER_BOOTS:
  409.         income: 1.0
  410.         experience: 6.0
  411.       # Add ! at front when you want to pay for crafted items with special names. Always use double quotation marks, same as example
  412.       "!Healing Bandage":
  413.         income: 1.0
  414.         experience: 6.0
  415.     # Smelting ores
  416.     Smelt:
  417.       IRON_INGOT:
  418.         income: 2.0
  419.         experience: 8.0
  420.       GOLD_INGOT:
  421.         income: 4.5
  422.         experience: 12
  423.     # Enchanting items
  424.     Enchant:
  425.      # You can set item for which player will get money
  426.       WOOD_SWORD:
  427.         income: 1.5
  428.         experience: 3.0
  429.       LEATHER_BOOTS:
  430.         income: 1.0
  431.         experience: 6.0
  432.       # Or/and you can give money for each enchantment they got
  433.       DIG_SPEED-1:
  434.         income: 3.0
  435.         experience: 10.0
  436.       DIG_SPEED-2:
  437.         income: 6.0
  438.         experience: 20.0
  439.     # Brewing potions
  440.     Brew:
  441.       NETHER_STALK:
  442.         income: 5.0
  443.         experience: 3.0
  444.       REDSTONE:
  445.         income: 5.0
  446.         experience: 3.0
  447.     # Explore options. Each number represents players number in exploring that chunk
  448.     # 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 who discovers that chunk
  449.     Explore:
  450.       1:
  451.         income: 5.0
  452.         experience: 5.0
  453.       2:
  454.         income: 2.5
  455.         experience: 2.5
  456.       3:
  457.         income: 1.0
  458.         experience: 1.0
  459.       4:
  460.         income: 0.5
  461.         experience: 0.5
  462.       5:
  463.         income: 0.1
  464.         experience: 0.1
  465.     # permissions granted for joining class
  466.     permissions:
  467.      # example node
  468.       aaaaaatest.node:
  469.        # true to give, false to revoke
  470.         value: true
  471.         # minimum level needed to grant permission. Use 0 for all levels
  472.         level: 0
  473.       aaaaaatest.node2:
  474.         value: true
  475.         # Permission granted when reaching level 10
  476.         level: 10
  477.     # Permissions granted when particular conditions are meet
  478.     conditions:
  479.      # Condition name, irrelevant, you can write anything in here
  480.       first:
  481.         requires:
  482.        # j marks that player should have particular jobs level and higher
  483.         - j:Miner-50
  484.         - j:Digger-50
  485.         # p marks permission requirement
  486.         - p:essentials.notnoob
  487.         perform:
  488.        # p marks permission, player will get if given true value, if used false, permission will be taken
  489.         - p:essentials.fly-true
  490.     # Commands executed when player reached level
  491.     commands:
  492.      # command name, just to have better idea what this do
  493.       fly:
  494.        # Command its self, this will be executed from console, so all commands should work
  495.         # Possible variables are: [player] [jobname] [oldlevel] [newlevel]
  496.         command: manuaddp [player] essentials.fly
  497.         # When to execute this command first time
  498.         levelFrom: 100
  499.         # Until when to do this command
  500.         # This can be set to same level as levelFrom, so this command will be executed only once
  501.         levelUntil: 100
  502.       kit:
  503.         command: manuaddp [player] essentials.kits.woodcutter
  504.         levelFrom: 150
  505.         levelUntil: 150
  506.     # Getting more money when equipped with specific weapon/tool are wearing armor
  507.     items:
  508.      # Just name, don't have any impact
  509.       firstOne:
  510.        # Tool/Weapon id. Works for block Break, Fish, Animal tame, Breed, Monster/Player kill.
  511.         id: 278
  512.         # Items name, should be with color codes
  513.         name: '&8Miner Pickaxe'
  514.         # Item lore, again should come with color codes
  515.         lore:
  516.        - '&eBobs pick'
  517.         - '&710% bonus XP'
  518.         # Item enchantments, all enchantment names can be found https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  519.         enchants:
  520.        - DAMAGE_ALL=1
  521.         - FIRE_ASPECT=1
  522.         # Money boost: 1.1 is equals 10% more income when 0.9 is equals 10% less from base income
  523.         moneyBoost: 1.1
  524.         # Exp boost
  525.         expBoost: 1.2
  526.         # Point boost
  527.         pointBoost: 1.3
  528.       helmet:
  529.        # Armor id. This one works with all jobs
  530.         id: 310
  531.         name: '&8Armor'
  532.         lore:
  533.        - '&eBobs armor'
  534.         - '&710% bonus XP'
  535.         moneyBoost: 1.1
  536.         expBoost: 1.1
  537.     # Limit item use to jobs level
  538.     limitedItems:
  539.      # Just name, don't have any impact
  540.       firstOne:
  541.        # Tool/Weapon id. Works for any interact action.
  542.         id: 278
  543.         # Level of this job player can start using this item
  544.         level: 5
  545.         # (optional) Items name, option to use color codes
  546.         name: '&8Miner Pickaxe'
  547.         # (optional) Item lore, again can come with color codes
  548.         lore:
  549.        - '&eBobs pick'
  550.         - '&710% bonus XP'
  551.         # (optional) Item enchantments, all enchantment names can be found https://hub.spigotmc.org/javadocs/spigot/org/bukkit/enchantments/Enchantment.html
  552.         # enchant level can increase with jobs level to give best RPG experience
  553.         enchants:
  554.        - DAMAGE_ALL=1
  555.         - FIRE_ASPECT=1
  556.     cmd-on-join:
  557.    - 'msg [name] Thx for joining this job!'
  558.     - 'msg [name] Now start working and get money from [jobname] job!'
  559.     cmd-on-leave:
  560.    - 'msg [name] You have left this awesome [jobname] job'
  561.     - 'msg [name] See you soon!'
  562. # from this point you can edit jobs by your liking, rename, remove or add new ones
  563.   Woodcutter:
  564.     fullname: Woodcutter
  565.     shortname: W
  566.     description: Earns money felling and planting trees
  567.     ChatColour: GREEN
  568.     chat-display: full
  569.     max-level: 200
  570.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  571.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  572.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  573.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  574.     rejoinCooldown: 10
  575.     Gui:
  576.       Id: 17
  577.       Data: 2
  578.     Break:
  579.      #logs - natural; gain income, points, and exp
  580.       oak_log:
  581.         income: 1.0
  582.         points: 1.0
  583.         experience: 1.0
  584.       spruce_log:
  585.         income: 1.0
  586.         points: 1.0
  587.         experience: 1.0
  588.         experience: 1.0
  589.       birch_log:
  590.         income: 1.0
  591.         points: 1.0
  592.         experience: 1.0
  593.       jungle_log:
  594.         income: 1.0
  595.         points: 1.0
  596.         experience: 1.0
  597.       acacia_log:
  598.         income: 1.0
  599.         points: 1.0
  600.         experience: 1.0
  601.       dark_oak_log:
  602.         income: 1.0
  603.         points: 1.0
  604.         experience: 1.0
  605.       #planks - natural in mineshafts; gain some income/points and exp, but less as compromise as it's mainly a building block and used in placement
  606.       #oak_planks:
  607.         #income: 0.25
  608.         #points: 0.25
  609.         #experience: .25
  610.       #spruce_planks:
  611.         #income: 0.25
  612.         #points: 0.25
  613.         #experience: .25
  614.       #birch_planks:
  615.         #income: 0.25
  616.         #points: 0.25
  617.         #experience: .25
  618.       #jungle_planks:
  619.         #income: 0.25
  620.         #points: 0.25
  621.         #experience: .25
  622.       #acacia_planks:
  623.         #income: 0.25
  624.         #points: 0.25
  625.         #experience: .25
  626.       #dark_oak_planks:
  627.         #income: 0.25
  628.         #points: 0.25
  629.         #experience: .25
  630.       #stripped logs - crafted/natural; gain income, points, and exp. Compromise for stripping natural logs.
  631.       #use axe durability to create, just 0.75 income/points to make up for loss, plus 0.25 exp (compromise)
  632.       stripped_oak_log:
  633.         income: 0.75
  634.         points: 0.75
  635.         experience: 0.25
  636.       stripped_spruce_log:
  637.         income: 0.75
  638.         points: 0.75
  639.         experience: 0.25
  640.       stripped_birch_log:
  641.         income: 0.75
  642.         points: 0.75
  643.         experience: 0.25
  644.       stripped_jungle_log:
  645.         income: 0.75
  646.         points: 0.75
  647.         experience: 0.25
  648.       stripped_acacia_log:
  649.         income: 0.75
  650.         points: 0.75
  651.         experience: 0.25
  652.       stripped_dark_oak_log:
  653.         income: 0.75
  654.         points: 0.75
  655.         experience: 0.25
  656.     Kill:
  657.       Player:
  658.         income: 7.5
  659.         points: 7.5
  660.         experience: 7.5
  661.     custom-kill:
  662.       Woodcutter:
  663.         income: 10.0
  664.         points: 10.0
  665.         experience: 10.0
  666.   Miner:
  667.     fullname: Miner
  668.     shortname: M
  669.     description: Earns money mining minerals and ores.
  670.     ChatColour: DARK_GRAY
  671.     chat-display: full
  672.     max-level: 200
  673.     #slots: 10
  674.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  675.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  676.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  677.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  678.     rejoinCooldown: 10
  679.     Gui:
  680.       Id: 270
  681.       Data: 0
  682.     TNTBreak:
  683.       stone:
  684.         income: 0.25
  685.         points: 0.25
  686.         experience: 0.5
  687.       granite:
  688.         income: 0.25
  689.         points: 0.25
  690.         experience: 0.5
  691.       diorite:
  692.         income: 0.25
  693.         points: 0.25
  694.         experience: 0.5
  695.       andesite:
  696.         income: 0.25
  697.         points: 0.25
  698.         experience: 0.5
  699.     Break:
  700.      #1.14 blocks
  701.       #brick_wall:
  702.         #income: 0.1
  703.         #points:0.1
  704.         #experience: 1
  705.       #granite_wall:
  706.         #income: 0.1
  707.         #points:0.1
  708.         #experience: 1
  709.       #diorite_wall:
  710.         #income: 0.1
  711.         #points:0.1
  712.         #experience: 1
  713.       #andesite_wall:
  714.         #income: 0.1
  715.         #points:0.1
  716.         #experience: 1
  717.       #prismarine_wall:
  718.         #income: 0.1
  719.         #points:0.1
  720.         #experience: 1
  721.       #stone_brick_wall:
  722.         #income: 0.1
  723.         #points:0.1
  724.         #experience: 1
  725.       #mossy_stone_brick_wall:
  726.         #income: 0.1
  727.         #points:0.1
  728.         #experience: 1
  729.       #end_stone_brick_wall:
  730.         #income: 0.1
  731.         #points:0.1
  732.         #experience: 1
  733.       #nether_brick_wall:
  734.         #income: 0.1
  735.         #points:0.1
  736.         #experience: 1
  737.       #red_nether_brick_wall:
  738.         #income: 0.1
  739.         #points:0.1
  740.         #experience: 1
  741.       #sandstone_wall:
  742.         #income: 0.1
  743.         #points:0.1
  744.         #experience: 1
  745.       #red_sandstone_wall:
  746.         #income: 0.1
  747.         #points:0.1
  748.         #experience: 1
  749.       #1.13 blocks (some changed blocks are below
  750.       tube_coral_block:
  751.         income: 2
  752.         points: 2
  753.         experience: 3
  754.       brain_coral_block:
  755.         income: 2
  756.         points: 2
  757.         experience: 3
  758.       bubble_coral_block:
  759.         income: 2
  760.         points: 2
  761.         experience: 3
  762.       fire_coral_block:
  763.         income: 2
  764.         points: 2
  765.         experience: 3
  766.       horn_coral_block:
  767.         income: 2
  768.         points: 2
  769.         experience: 3    
  770.       #origial blocks
  771.       andesite:
  772.         income: 1
  773.         points: 1
  774.         experience: 1
  775.       stone:
  776.         income: 1
  777.         points: 1
  778.         experience: 1
  779.       granite:
  780.         income: 1
  781.         points: 1
  782.         experience: 1
  783.       diorite:
  784.         income: 1
  785.         points: 1
  786.         experience: 1
  787.       sandstone:
  788.         income: 0.15
  789.         points: 0.15
  790.         experience: 0.2
  791.       chiseled_sandstone:
  792.         income: 0.15
  793.         points: 0.15
  794.         experience: 0.2
  795.       cut_sandstone:
  796.         income: 0.15
  797.         points: 0.15
  798.         experience: 0.2
  799.       coal_ore:
  800.         income: 3
  801.         points: 2
  802.         experience: 2
  803.       redstone_ore:
  804.         income: 2.5
  805.         points: 2
  806.         experience: 2
  807.       iron_ore:
  808.         income: 3.5
  809.         points: 3
  810.         experience: 2
  811.       gold_ore:
  812.         income: 5
  813.         points: 4
  814.         experience: 2
  815.       lapis_ore:
  816.         income: 7.5
  817.         points: 6
  818.         experience: 2
  819.       diamond_ore:
  820.         income: 10
  821.         points: 10
  822.         experience: 10
  823.       emerald_ore:
  824.         income: 15
  825.         points: 15
  826.         experience: 30
  827.       nether_quartz_ore:
  828.         income: 2.5
  829.         points: 2.5
  830.         experience: 2.5
  831.       obsidian:
  832.         income: 5
  833.         points: 5
  834.         experience: 5
  835.       cobblestone_wall:
  836.         income: 2.5
  837.         points: 2.5
  838.         experience: 2.5
  839.       mossy_cobblestone_wall:
  840.         income: 2.5
  841.         points: 2.5
  842.         experience: 2.5
  843.       nether_brick:
  844.         income: 1.0
  845.         points: 1
  846.         experience: 1.0
  847.       nether_brick_stairs:
  848.         income: 3
  849.         points: 3
  850.         experience: 3
  851.       nether_brick_fence:
  852.         income: 1
  853.         points: 1
  854.         experience: 1
  855.       netherrack:
  856.         income: 0.1
  857.         points: 0.1
  858.         experience: 0.1
  859.       prismarine:
  860.         income: 2.5
  861.         points: 2.5
  862.         experience: 2.5
  863.       prismarine_bricks:
  864.         income: 2.5
  865.         points: 2.5
  866.         experience: 2.5
  867.       dark_prismarine:
  868.         income: 2.5
  869.         points: 2.5
  870.         experience: 2.5
  871.     Place:
  872.       rail:
  873.         income: 2.0
  874.         points: 2.0
  875.         experience: 2.0
  876.       iron_ore:
  877.         income: -5.0
  878.         points: -5
  879.         experience: -5.0
  880.       gold_ore:
  881.         income: -6.0
  882.         points: -6
  883.         experience: -6.0
  884.       diamond_ore:
  885.         income: -10.0
  886.         points: -10
  887.         experience: -10.0
  888.       emerald_ore:
  889.         income: -15
  890.         points: -15
  891.         experience: -30
  892.     Kill:
  893.       Player:
  894.         income: 7.5
  895.         points: 7.5
  896.         experience: 7.5
  897.   Builder:
  898.     fullname: Builder
  899.     shortname: B
  900.     description: Earns money for building structures.
  901.     ChatColour: WHITE
  902.     chat-display: full
  903.     max-level: 200
  904.     #slots: 10
  905.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  906.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  907.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  908.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  909.     rejoinCooldown: 10
  910.     Gui:
  911.       Item: BRICK_STAIRS
  912.     Place:
  913.      #1.14 blocks
  914.       #stone_slab:
  915.         #income:0.3
  916.         #points:0.3
  917.         #experience:0.3
  918.       #granite_slab:
  919.         #income:0.3
  920.         #points:0.3
  921.         #experience:0.3
  922.       #polished_granite_slab:
  923.         #income:0.3
  924.         #points:0.3
  925.         #experience:0.3
  926.       #diorite_slab:
  927.         #income:0.3
  928.         #points:0.3
  929.         #experience:0.3
  930.       #polished_diorite_slab:
  931.         #income:0.3
  932.         #points:0.3
  933.         #experience:0.3
  934.       #andesite_slab:
  935.         #income:0.3
  936.         #points:0.3
  937.         #experience:0.3
  938.       #polished_andesite_slab:
  939.         #income:0.3
  940.         #points:0.3
  941.         #experience:0.3
  942.       #red_nether_brick_slab:
  943.         #income:0.3
  944.         #points:0.3
  945.         #experience:0.3
  946.       #end_stone_brick_slab:
  947.         #income:0.3
  948.         #points:0.3
  949.         #experience:0.3
  950.       #mossy_stone_brick_slab:
  951.         #income:0.3
  952.         #points:0.3
  953.         #experience:0.3
  954.       #mossy_cobblestone_slab:
  955.         #income:0.3
  956.         #points:0.3
  957.         #experience:0.3
  958.       #smooth_sandstone_slab:
  959.         #income:0.3
  960.         #points:0.3
  961.         #experience:0.3
  962.       #smooth_red_sandstone_slab:
  963.         #income:0.3
  964.         #points:0.3
  965.         #experience:0.3
  966.       #smooth_quartz_slab:
  967.         #income:0.3
  968.         #points:0.3
  969.         #experience:0.3
  970.       #stone_stairs:
  971.         #income:0.3
  972.         #points:0.3
  973.         #experience:0.3
  974.       #granite_stairs:
  975.         #income:0.3
  976.         #points:0.3
  977.         #experience:0.3
  978.       #polished_granite_stairs:
  979.         #income:0.3
  980.         #points:0.3
  981.         #experience:0.3
  982.       #diorite_stairs:
  983.         #income:0.3
  984.         #points:0.3
  985.         #experience:0.3
  986.       #polished_diorite_stairs:
  987.         #income:0.3
  988.         #points:0.3
  989.         #experience:0.3
  990.       #andesite_stairs:
  991.         #income:0.3
  992.         #points:0.3
  993.         #experience:0.3
  994.       #polished_andesite_stairs:
  995.         #income:0.3
  996.         #points:0.3
  997.         #experience:0.3
  998.       #red_nether_brick_stairs:
  999.         #income:0.3
  1000.         #points:0.3
  1001.         #experience:0.3
  1002.       #end_stone_brick_stairs:
  1003.         #income:0.3
  1004.         #points:0.3
  1005.         #experience:0.3
  1006.       #mossy_stone_brick_stairs:
  1007.         #income:0.3
  1008.         #points:0.3
  1009.         #experience:0.3
  1010.       #mossy_cobblestone_stairs:
  1011.         #income:0.3
  1012.         #points:0.3
  1013.         #experience:0.3
  1014.       #smooth_sandstone_stairs:
  1015.         #income:0.3
  1016.         #points:0.3
  1017.         #experience:0.3
  1018.       #smooth_red_sandstone_stairs:
  1019.         #income:0.3
  1020.         #points:0.3
  1021.         #experience:0.3
  1022.       #smooth_quartz_stairs:
  1023.         #income:0.3
  1024.         #points:0.3
  1025.         #experience:0.3
  1026.       #1.13 blocks
  1027.       stripped_oak_wood:
  1028.         income: 2
  1029.         points: 2
  1030.         experience: 2
  1031.       stripped_spruce_wood:
  1032.         income: 2
  1033.         points: 2
  1034.         experience: 2
  1035.       stripped_birch_wood:
  1036.         income: 2
  1037.         points: 2
  1038.         experience: 2
  1039.       stripped_jungle_wood:
  1040.         income: 2
  1041.         points: 2
  1042.         experience: 2
  1043.       stripped_acacia_wood:
  1044.         income: 2
  1045.         points: 2
  1046.         experience: 2
  1047.       stripped_dark_oak_wood:
  1048.         income: 2
  1049.         points: 2
  1050.         experience: 2
  1051.       dead_tube_coral_block:
  1052.         income: 2
  1053.         points: 2
  1054.         experience: 3
  1055.       dead_brain_coral_block:
  1056.         income: 2
  1057.         points: 2
  1058.         experience: 3
  1059.       dead_bubble_coral_block:
  1060.         income: 2
  1061.         points: 2
  1062.         experience: 3
  1063.       dead_fire_coral_block:
  1064.         income: 2
  1065.         points: 2
  1066.         experience: 3
  1067.       dead_horn_coral_block:
  1068.         income: 2
  1069.         points: 2
  1070.         experience: 3
  1071.       dried_kelp_block:
  1072.         income: 2
  1073.         points: 2
  1074.         experience: 3
  1075.       #old blocks
  1076.       stone:
  1077.         income: 1.3
  1078.         points: 1.3
  1079.         experience: 2
  1080.       andesite:
  1081.         income: 1.3
  1082.         points: 1.3
  1083.         experience: 2
  1084.       granite:
  1085.         income: 1.3
  1086.         points: 1.3
  1087.         experience: 2
  1088.       diorite:
  1089.         income: 1.3
  1090.         points: 1.3
  1091.         experience: 2
  1092.       cobblestone:
  1093.         income: 0.7
  1094.         points: 0.7
  1095.         experience: 2
  1096.       oak_planks:
  1097.         income: 1.5
  1098.         points: 1.5
  1099.         experience: 2
  1100.       spruce_planks:
  1101.         income: 1.5
  1102.         points: 1.5
  1103.         experience: 2
  1104.       birch_planks:
  1105.         income: 1.5
  1106.         points: 1.5
  1107.         experience: 2
  1108.       jungle_planks:
  1109.         income: 1.5
  1110.         points: 1.5
  1111.         experience: 2
  1112.       acacia_planks:
  1113.         income: 1.5
  1114.         points: 1.5
  1115.         experience: 2
  1116.       dark_oak_planks:
  1117.         income: 1.5
  1118.         points: 1.5
  1119.         experience: 2
  1120.       wool:
  1121.         income: 1.5
  1122.         points: 1.5
  1123.         experience: 2
  1124.       gold_block:
  1125.         income: 1.5
  1126.         points: 1.5
  1127.         experience: 2
  1128.       iron_block:
  1129.         income: 1.5
  1130.         points: 1.5
  1131.         experience: 2
  1132.       oak_slab:
  1133.         income: 0.8
  1134.         points: 0.8
  1135.         experience: 2
  1136.       spruce_slab:
  1137.         income: 0.8
  1138.         points: 0.8
  1139.         experience: 2
  1140.       birch_slab:
  1141.         income: 0.8
  1142.         points: 0.8
  1143.         experience: 2
  1144.       jungle_slab:
  1145.         income: 0.8
  1146.         points: 0.8
  1147.         experience: 2
  1148.       acacia_slab:
  1149.         income: 0.8
  1150.         points: 0.8
  1151.         experience: 2
  1152.       dark_oak_slab:
  1153.         income: 0.8
  1154.         points: 0.8
  1155.         experience: 2
  1156.       stone_slab:
  1157.         income: 0.8
  1158.         points: 0.8
  1159.         experience: 2
  1160.       sandstone_slab:
  1161.         income: 0.8
  1162.         points: 0.8
  1163.         experience: 2
  1164.       petrified_oak_slab:
  1165.         income: 0.8
  1166.         points: 0.8
  1167.         experience: 2
  1168.       cobblestone_slab:
  1169.         income: 0.8
  1170.         points: 0.8
  1171.         experience: 2
  1172.       brick_slab:
  1173.         income: 0.8
  1174.         points: 0.8
  1175.         experience: 2
  1176.       stone_brick_slab:
  1177.         income: 0.8
  1178.         points: 0.8
  1179.         experience: 2
  1180.       nether_brick_slab:
  1181.         income: 0.8
  1182.         points: 0.8
  1183.         experience: 2
  1184.       quartz_slab:
  1185.         income: 0.8
  1186.         points: 0.8
  1187.         experience: 2
  1188.       red_sandstone_slab:
  1189.         income: 0.8
  1190.         points: 0.8
  1191.         experience: 2
  1192.       purpur_slab:
  1193.         income: 0.8
  1194.         points: 0.8
  1195.         experience: 2
  1196.       bricks:
  1197.         income: 1.5
  1198.         points: 1.5
  1199.         experience: 2
  1200.       bookshelf:
  1201.         income: 1.5
  1202.         points: 1.5
  1203.         experience: 2
  1204.       mossy_cobblestone:
  1205.         income: 1.5
  1206.         points: 1.5
  1207.         experience: 2
  1208.       obsidian:
  1209.         income: 1.5
  1210.         points: 1.5
  1211.         experience: 2
  1212.       cobblestone_stairs:
  1213.         income: 1.5
  1214.         points: 1.5
  1215.         experience: 2
  1216.       acacia_stairs:
  1217.         income: 1.5
  1218.         points: 1.5
  1219.         experience: 2
  1220.       birch_stairs:
  1221.         income: 1.5
  1222.         points: 1.5
  1223.         experience: 2
  1224.       brick_stairs:
  1225.         income: 1.5
  1226.         points: 1.5
  1227.         experience: 2
  1228.       dark_oak_stairs:
  1229.         income: 1.5
  1230.         points: 1.5
  1231.         experience: 2
  1232.       dark_prismarine_stairs:
  1233.         income: 1.5
  1234.         points: 1.5
  1235.         experience: 2
  1236.       jungle_stairs:
  1237.         income: 1.5
  1238.         points: 1.5
  1239.         experience: 2
  1240.       nether_brick_stairs:
  1241.         income: 1.5
  1242.         points: 1.5
  1243.         experience: 2
  1244.       oak_stairs:
  1245.         income: 1.5
  1246.         points: 1.5
  1247.         experience: 2
  1248.       prismarine_brick_stairs:
  1249.         income: 1.5
  1250.         points: 1.5
  1251.         experience: 2
  1252.       prismarine_stairs:
  1253.         income: 1.5
  1254.         points: 1.5
  1255.         experience: 2
  1256.       purpur_stairs:
  1257.         income: 1.5
  1258.         points: 1.5
  1259.         experience: 2
  1260.       quartz_stairs:
  1261.         income: 1.5
  1262.         points: 1.5
  1263.         experience: 2
  1264.       red_sandstone_stairs:
  1265.         income: 1.5
  1266.         points: 1.5
  1267.         experience: 2
  1268.       sandstone_stairs:
  1269.         income: 1.5
  1270.         points: 1.5
  1271.         experience: 2
  1272.       spruce_stairs:
  1273.         income: 1.5
  1274.         points: 1.5
  1275.         experience: 2
  1276.       stone_brick_stairs:
  1277.         income: 1.5
  1278.         points: 1.5
  1279.         experience: 2
  1280.       chest:
  1281.         income: 1.5
  1282.         points: 1.5
  1283.         experience: 2
  1284.       diamond_block:
  1285.         income: 1.5
  1286.         points: 1.5
  1287.         experience: 2
  1288.       crafting_table:
  1289.         income: 1.5
  1290.         points: 1.5
  1291.         experience: 2
  1292.       furnace:
  1293.         income: 1.5
  1294.         points: 1.5
  1295.         experience: 2
  1296.       ladder:
  1297.         income: 1.5
  1298.         points: 1.5
  1299.         experience: 2
  1300.       ice:
  1301.         income: 1.5
  1302.         points: 1.5
  1303.         experience: 2
  1304.       snow_block:
  1305.         income: 1.0
  1306.         points: 1.0
  1307.         experience: 2
  1308.       jukebox:
  1309.         income: 1.0
  1310.         points: 1.0
  1311.         experience: 2
  1312.       oak_fence:
  1313.         income: 1.5
  1314.         points: 1.5
  1315.         experience: 2
  1316.       spruce_fence:
  1317.         income: 1.5
  1318.         points: 1.5
  1319.         experience: 2
  1320.       birch_fence:
  1321.         income: 1.5
  1322.         points: 1.5
  1323.         experience: 2
  1324.       jungle_fence:
  1325.         income: 1.5
  1326.         points: 1.5
  1327.         experience: 2
  1328.       acacia_fence:
  1329.         income: 1.5
  1330.         points: 1.5
  1331.         experience: 2
  1332.       dark_oak_fence:
  1333.         income: 1.5
  1334.         points: 1.5
  1335.         experience: 2
  1336.       oak_fence_gate:
  1337.         income: 1.5
  1338.         points: 1.5
  1339.         experience: 2
  1340.       spruce_fence_gate:
  1341.         income: 1.5
  1342.         points: 1.5
  1343.         experience: 2
  1344.       birch_fence_gate:
  1345.         income: 1.5
  1346.         points: 1.5
  1347.         experience: 2
  1348.       jungle_fence_gate:
  1349.         income: 1.5
  1350.         points: 1.5
  1351.         experience: 2
  1352.       acacia_fence_gate:
  1353.         income: 1.5
  1354.         points: 1.5
  1355.         experience: 2
  1356.       dark_oak_fence_gate:
  1357.         income: 1.5
  1358.         points: 1.5
  1359.         experience: 2
  1360.       glowstone:
  1361.         income: 1.5
  1362.         points: 1.5
  1363.         experience: 2
  1364.       glass:
  1365.         income: 1.5
  1366.         points: 1.5
  1367.         experience: 2
  1368.       white_stained_glass:
  1369.         income: 1.5
  1370.         points: 1.5
  1371.         experience: 2
  1372.       orange_stained_glass:
  1373.         income: 1.5
  1374.         points: 1.5
  1375.         experience: 2
  1376.       magenta_stained_glass:
  1377.         income: 1.5
  1378.         points: 1.5
  1379.         experience: 2
  1380.       light_blue_stained_glass:
  1381.         income: 1.5
  1382.         points: 1.5
  1383.         experience: 2
  1384.       yellow_stained_glass:
  1385.         income: 1.5
  1386.         points: 1.5
  1387.         experience: 2
  1388.       lime_stained_glass:
  1389.         income: 1.5
  1390.         points: 1.5
  1391.         experience: 2
  1392.       pink_stained_glass:
  1393.         income: 1.5
  1394.         points: 1.5
  1395.         experience: 2
  1396.       gray_stained_glass:
  1397.         income: 1.5
  1398.         points: 1.5
  1399.         experience: 2
  1400.       light_gray_stained_glass:
  1401.         income: 1.5
  1402.         points: 1.5
  1403.         experience: 2
  1404.       cyan_stained_glass:
  1405.         income: 1.5
  1406.         points: 1.5
  1407.         experience: 2
  1408.       purple_stained_glass:
  1409.         income: 1.5
  1410.         points: 1.5
  1411.         experience: 2
  1412.       blue_stained_glass:
  1413.         income: 1.5
  1414.         points: 1.5
  1415.         experience: 2
  1416.       brown_stained_glass:
  1417.         income: 1.5
  1418.         points: 1.5
  1419.         experience: 2
  1420.       green_stained_glass:
  1421.         income: 1.5
  1422.         points: 1.5
  1423.         experience: 2
  1424.       red_stained_glass:
  1425.         income: 1.5
  1426.         points: 1.5
  1427.         experience: 2
  1428.       black_stained_glass:
  1429.         income: 1.5
  1430.         points: 1.5
  1431.         experience: 2
  1432.       iron_trapdoor:
  1433.         income: 1.5
  1434.         points: 1.5
  1435.         experience: 2
  1436.       oak_trapdoor:
  1437.         income: 1.5
  1438.         points: 1.5
  1439.         experience: 2
  1440.       spruce_trapdoor:
  1441.         income: 1.5
  1442.         points: 1.5
  1443.         experience: 2
  1444.       birch_trapdoor:
  1445.         income: 1.5
  1446.         points: 1.5
  1447.         experience: 2
  1448.       jungle_trapdoor:
  1449.         income: 1.5
  1450.         points: 1.5
  1451.         experience: 2
  1452.       acacia_trapdoor:
  1453.         income: 1.5
  1454.         points: 1.5
  1455.         experience: 2
  1456.       dark_oak_trapdoor:
  1457.         income: 1.5
  1458.         points: 1.5
  1459.         experience: 2
  1460.       stone_bricks:
  1461.         income: 1.5
  1462.         points: 1.5
  1463.         experience: 2
  1464.       mossy_stone_bricks:
  1465.         income: 1.5
  1466.         points: 1.5
  1467.         experience: 2
  1468.       cracked_stone_bricks:
  1469.         income: 1.5
  1470.         points: 1.5
  1471.         experience: 2
  1472.       chiseled_stone_bricks:
  1473.         income: 1.5
  1474.         points: 1.5
  1475.         experience: 2
  1476.       iron_bars:
  1477.         income: 1.5
  1478.         points: 1.5
  1479.         experience: 2
  1480.       glass_pane:
  1481.         income: 1.5
  1482.         points: 1.5
  1483.         experience: 2
  1484.       white_stained_glass_pane:
  1485.         income: 1.5
  1486.         points: 1.5
  1487.         experience: 2
  1488.       orange_stained_glass_pane:
  1489.         income: 1.5
  1490.         points: 1.5
  1491.         experience: 2
  1492.       magenta_stained_glass_pane:
  1493.         income: 1.5
  1494.         points: 1.5
  1495.         experience: 2
  1496.       light_blue_stained_glass_pane:
  1497.         income: 1.5
  1498.         points: 1.5
  1499.         experience: 2
  1500.       yellow_stained_glass_pane:
  1501.         income: 1.5
  1502.         points: 1.5
  1503.         experience: 2
  1504.       lime_stained_glass_pane:
  1505.         income: 1.5
  1506.         points: 1.5
  1507.         experience: 2
  1508.       pink_stained_glass_pane:
  1509.         income: 1.5
  1510.         points: 1.5
  1511.         experience: 2
  1512.       gray_stained_glass_pane:
  1513.         income: 1.5
  1514.         points: 1.5
  1515.         experience: 2
  1516.       light_gray_stained_glass_pane:
  1517.         income: 1.5
  1518.         points: 1.5
  1519.         experience: 2
  1520.       cyan_stained_glass_pane:
  1521.         income: 1.5
  1522.         points: 1.5
  1523.         experience: 2
  1524.       purple_stained_glass_pane:
  1525.         income: 1.5
  1526.         points: 1.5
  1527.         experience: 2
  1528.       blue_stained_glass_pane:
  1529.         income: 1.5
  1530.         points: 1.5
  1531.         experience: 2
  1532.       brown_stained_glass_pane:
  1533.         income: 1.5
  1534.         points: 1.5
  1535.         experience: 2
  1536.       green_stained_glass_pane:
  1537.         income: 1.5
  1538.         points: 1.5
  1539.         experience: 2
  1540.       red_stained_glass_pane:
  1541.         income: 1.5
  1542.         points: 1.5
  1543.         experience: 2
  1544.       black_stained_glass_pane:
  1545.         income: 1.5
  1546.         points: 1.5
  1547.         experience: 2
  1548.       nether_brick:
  1549.         income: 1.5
  1550.         points: 1.5
  1551.         experience: 2
  1552.       nether_brick_fence:
  1553.         income: 1.5
  1554.         points: 1.5
  1555.         experience: 2
  1556.       nether_brick_stairs:
  1557.         income: 1.5
  1558.         points: 1.5
  1559.         experience: 2
  1560.       enchanting_table:
  1561.         income: 1.5
  1562.         points: 1.5
  1563.         experience: 2
  1564.       end_portal_frame:
  1565.         income: 1.5
  1566.         points: 1.5
  1567.         experience: 2
  1568.       redstone_lamp:
  1569.         income: 1.0
  1570.         points: 1.0
  1571.         experience: 2
  1572.       ender_chest:
  1573.         income: 1.5
  1574.         points: 1.5
  1575.         experience: 2
  1576.       emerald_block:
  1577.         income: 1.5
  1578.         points: 1.5
  1579.         experience: 2
  1580.       cobblestone_wall:
  1581.         income: 1.5
  1582.         points: 1.5
  1583.         experience: 2
  1584.       mossy_cobblestone_wall:
  1585.         income: 1.5
  1586.         points: 1.5
  1587.         experience: 2
  1588.       trapped_chest:
  1589.         income: 1.5
  1590.         points: 1.5
  1591.         experience: 2
  1592.       redstone_block:
  1593.         income: 1.5
  1594.         points: 1.5
  1595.         experience: 2
  1596.       hopper:
  1597.         income: 1.5
  1598.         points: 1.5
  1599.         experience: 2
  1600.       quartz_block:
  1601.         income: 1.5
  1602.         points: 1.5
  1603.         experience: 2
  1604.       smooth_quartz:
  1605.         income: 1.5
  1606.         points: 1.5
  1607.         experience: 2
  1608.       quartz_pillar:
  1609.         income: 1.5
  1610.         points: 1.5
  1611.         experience: 2
  1612.       chiseled_quartz_block:
  1613.         income: 1.5
  1614.         points: 1.5
  1615.         experience: 2
  1616.       terracotta:
  1617.         income: 1.5
  1618.         points: 1.5
  1619.         experience: 2
  1620.       white_terracotta:
  1621.         income: 1.5
  1622.         points: 1.5
  1623.         experience: 2
  1624.       orange_terracotta:
  1625.         income: 1.5
  1626.         points: 1.5
  1627.         experience: 2
  1628.       magenta_terracotta:
  1629.         income: 1.5
  1630.         points: 1.5
  1631.         experience: 2
  1632.       light_blue_terracotta:
  1633.         income: 1.5
  1634.         points: 1.5
  1635.         experience: 2
  1636.       yellow_terracotta:
  1637.         income: 1.5
  1638.         points: 1.5
  1639.         experience: 2
  1640.       lime_terracotta:
  1641.         income: 1.5
  1642.         points: 1.5
  1643.         experience: 2
  1644.       pink_terracotta:
  1645.         income: 1.5
  1646.         points: 1.5
  1647.         experience: 2
  1648.       gray_terracotta:
  1649.         income: 1.5
  1650.         points: 1.5
  1651.         experience: 2
  1652.       light_gray_terracotta:
  1653.         income: 1.5
  1654.         points: 1.5
  1655.         experience: 2
  1656.       cyan_terracotta:
  1657.         income: 1.5
  1658.         points: 1.5
  1659.         experience: 2
  1660.       purple_terracotta:
  1661.         income: 1.5
  1662.         points: 1.5
  1663.         experience: 2
  1664.       blue_terracotta:
  1665.         income: 1.5
  1666.         points: 1.5
  1667.         experience: 2
  1668.       brown_terracotta:
  1669.         income: 1.5
  1670.         points: 1.5
  1671.         experience: 2
  1672.       green_terracotta:
  1673.         income: 1.5
  1674.         points: 1.5
  1675.         experience: 2
  1676.       red_terracotta:
  1677.         income: 1.5
  1678.         points: 1.5
  1679.         experience: 2
  1680.       black_terracotta:
  1681.         income: 1.5
  1682.         points: 1.5
  1683.         experience: 2
  1684.       glass_pane:
  1685.         income: 1.5
  1686.         points: 1.5
  1687.         experience: 2
  1688.       white_stained_glass_pane:
  1689.         income: 1.5
  1690.         points: 1.5
  1691.         experience: 2
  1692.       orange_stained_glass_pane:
  1693.         income: 1.5
  1694.         points: 1.5
  1695.         experience: 2
  1696.       magenta_stained_glass_pane:
  1697.         income: 1.5
  1698.         points: 1.5
  1699.         experience: 2
  1700.       light_blue_stained_glass_pane:
  1701.         income: 1.5
  1702.         points: 1.5
  1703.         experience: 2
  1704.       yellow_stained_glass_pane:
  1705.         income: 1.5
  1706.         points: 1.5
  1707.         experience: 2
  1708.       lime_stained_glass_pane:
  1709.         income: 1.5
  1710.         points: 1.5
  1711.         experience: 2
  1712.       pink_stained_glass_pane:
  1713.         income: 1.5
  1714.         points: 1.5
  1715.         experience: 2
  1716.       gray_stained_glass_pane:
  1717.         income: 1.5
  1718.         points: 1.5
  1719.         experience: 2
  1720.       light_gray_stained_glass_pane:
  1721.         income: 1.5
  1722.         points: 1.5
  1723.         experience: 2
  1724.       cyan_stained_glass_pane:
  1725.         income: 1.5
  1726.         points: 1.5
  1727.         experience: 2
  1728.       purple_stained_glass_pane:
  1729.         income: 1.5
  1730.         points: 1.5
  1731.         experience: 2
  1732.       blue_stained_glass_pane:
  1733.         income: 1.5
  1734.         points: 1.5
  1735.         experience: 2
  1736.       brown_stained_glass_pane:
  1737.         income: 1.5
  1738.         points: 1.5
  1739.         experience: 2
  1740.       green_stained_glass_pane:
  1741.         income: 1.5
  1742.         points: 1.5
  1743.         experience: 2
  1744.       red_stained_glass_pane:
  1745.         income: 1.5
  1746.         points: 1.5
  1747.         experience: 2
  1748.       black_stained_glass_pane:
  1749.         income: 1.5
  1750.         points: 1.5
  1751.         experience: 2
  1752.       oak_leaves:
  1753.         income: 1.5
  1754.         points: 1.5
  1755.         experience: 2
  1756.       spruce_leaves:
  1757.         income: 1.5
  1758.         points: 1.5
  1759.         experience: 2
  1760.       birch_leaves:
  1761.         income: 1.5
  1762.         points: 1.5
  1763.         experience: 2
  1764.       jungle_leaves:
  1765.         income: 1.5
  1766.         points: 1.5
  1767.         experience: 2
  1768.       acacia_leaves:
  1769.         income: 1.5
  1770.         points: 1.5
  1771.         experience: 2
  1772.       dark_oak_leaves:
  1773.         income: 1.5
  1774.         points: 1.5
  1775.         experience: 2
  1776.       prismarine:
  1777.         income: 1.3
  1778.         points: 1.3
  1779.         experience: 1.9
  1780.       prismarine_bricks:
  1781.         income: 1.3
  1782.         points: 1.3
  1783.         experience: 1.9
  1784.       dark_prismarine:
  1785.         income: 1.3
  1786.         points: 1.3
  1787.         experience: 1.9
  1788.       sea_lantern:
  1789.         income: 1.5
  1790.         points: 1.5
  1791.         experience: 2
  1792.       hay_block:
  1793.         income: 1.5
  1794.         points: 1.5
  1795.         experience: 2
  1796.       coal_block:
  1797.         income: 1.5
  1798.         points: 1.5
  1799.         experience: 2
  1800.       packed_ice:
  1801.         income: 1.5
  1802.         points: 1.5
  1803.         experience: 2
  1804.       red_sandstone:
  1805.         income: 1.5
  1806.         points: 1.5
  1807.         experience: 2
  1808.       chiseled_red_sandstone:
  1809.         income: 1.5
  1810.         points: 1.5
  1811.         experience: 2
  1812.       cut_red_sandstone:
  1813.         income: 1.5
  1814.         points: 1.5
  1815.         experience: 2
  1816.     Kill:
  1817.       Player:
  1818.         income: 7.5
  1819.         points: 7.5
  1820.         experience: 7.5
  1821.   Digger:
  1822.     fullname: Digger
  1823.     shortname: D
  1824.     description: Earns money for terraforming the world.
  1825.     ChatColour: GOLD
  1826.     chat-display: full
  1827.     max-level: 200
  1828.     #slots: 10
  1829.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1830.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1831.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1832.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1833.     rejoinCooldown: 10
  1834.     Gui:
  1835.       Id: 269
  1836.       Data: 0
  1837.     Break:
  1838.       red_sand:
  1839.         income: 1
  1840.         points: 1
  1841.         experience: 1
  1842.       coarse_dirt:
  1843.         income: 1
  1844.         points: 1
  1845.         experience: 1
  1846.       dirt:
  1847.         income: 0.25
  1848.         points: 0.25
  1849.         experience: 0.25
  1850.       grass_block:
  1851.         income: 0.3
  1852.         points: 0.3
  1853.         experience: 0.3
  1854.       gravel:
  1855.         income: 1
  1856.         points: 1
  1857.         experience: 1.0
  1858.       sand:
  1859.         income: 0.4
  1860.         points: 0.4
  1861.         experience: 0.5
  1862.       clay:
  1863.         income: 1
  1864.         points: 1
  1865.         experience: 1.0
  1866.     Kill:
  1867.       Player:
  1868.         income: 7.5
  1869.         points: 7.5
  1870.         experience: 7.5
  1871.     custom-kill:
  1872.       Digger:
  1873.         income: 10.0
  1874.         points: 10.0
  1875.         experience: 10.0
  1876.   Farmer:
  1877.     fullname: Farmer
  1878.     shortname: Fa
  1879.     description: Earns money farming crops.
  1880.     ChatColour: BLUE
  1881.     chat-display: full
  1882.     max-level: 200
  1883.     #slots: 10
  1884.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  1885.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1886.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  1887.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  1888.     rejoinCooldown: 10
  1889.     Gui:
  1890.       Item: WOODEN_HOE
  1891.     Tame:
  1892.       Wolf:
  1893.         income: 5.0
  1894.         points: 5.0
  1895.         experience: 5.0
  1896.       Horse:
  1897.         income: 5.0
  1898.         points: 5.0
  1899.         experience: 5.0
  1900.       Parrot:
  1901.         income: 5.0
  1902.         points: 5.0
  1903.         experience: 5.0
  1904.       Ocelot:
  1905.         income: 5.0
  1906.         points: 5.0
  1907.         experience: 5.0
  1908.       Llama:
  1909.         income: 5.0
  1910.         points: 5.0
  1911.         experience: 5.0
  1912.     Breed:
  1913.      #1.14 mobs
  1914.       #panda:
  1915.         #income: 4
  1916.         #points: 4
  1917.         #experience: 4
  1918.       #old mobs
  1919.       Horse:
  1920.         income: 4.0
  1921.         points: 4.0
  1922.         experience: 5.0
  1923.       Sheep:
  1924.         income: 4.0
  1925.         points: 4.0
  1926.         experience: 5.0
  1927.       Cow:
  1928.         income: 4.0
  1929.         points: 4.0
  1930.         experience: 5.0
  1931.       mushroom_cow:
  1932.         income: 4.0
  1933.         points: 4.0
  1934.         experience: 5.0
  1935.       Pig:
  1936.         income: 4.0
  1937.         points: 4.0
  1938.         experience: 5.0
  1939.       Chicken:
  1940.         income: 4.0
  1941.         points: 4.0
  1942.         experience: 5.0
  1943.       Wolf:
  1944.         income: 4.0
  1945.         points: 4.0
  1946.         experience: 5.0
  1947.       Ocelot:
  1948.         income: 4.0
  1949.         points: 4.0
  1950.         experience: 5.0
  1951.       Rabbit:
  1952.         income: 4.0
  1953.         points: 4.0
  1954.         experience: 5.0
  1955.       Llama:
  1956.         income: 4.0
  1957.         points: 4.0
  1958.         experience: 5.0
  1959.       Turtle:
  1960.         income: 4.0
  1961.         points: 4.0
  1962.         experience: 5.0
  1963.     Shear:
  1964.       Red:
  1965.         income: 4.0
  1966.         points: 4.0
  1967.         experience: 5.0
  1968.       Orange:
  1969.         income: 4.0
  1970.         points: 4.0
  1971.         experience: 5.0
  1972.       Yellow:
  1973.         income: 4.0
  1974.         points: 4.0
  1975.         experience: 5.0
  1976.       Green:
  1977.         income: 4.0
  1978.         points: 4.0
  1979.         experience: 5.0
  1980.       Blue:
  1981.         income: 4.0
  1982.         points: 4.0
  1983.         experience: 5.0
  1984.       'Light Blue':
  1985.         income: 4.0
  1986.         points: 4.0
  1987.         experience: 5.0
  1988.       Magenta:
  1989.         income: 4.0
  1990.         points: 4.0
  1991.         experience: 5.0
  1992.       Pink:
  1993.         income: 4.0
  1994.         points: 4.0
  1995.         experience: 5.0
  1996.       White:
  1997.         income: 4.0
  1998.         points: 4.0
  1999.         experience: 5.0
  2000.       'Light Gray':
  2001.         income: 4.0
  2002.         points: 4.0
  2003.         experience: 5.0
  2004.       Black:
  2005.         income: 4.0
  2006.         points: 4.0
  2007.         experience: 5.0
  2008.       Brown:
  2009.         income: 4.0
  2010.         points: 4.0
  2011.         experience: 5.0
  2012.       Purple:
  2013.         income: 4.0
  2014.         points: 4.0
  2015.         experience: 5.0
  2016.       Cyan:
  2017.         income: 4.0
  2018.         points: 4.0
  2019.         experience: 5.0
  2020.       Gray:
  2021.         income: 4.0
  2022.         points: 4.0
  2023.         experience: 5.0
  2024.       Lime:
  2025.         income: 4.0
  2026.         points: 4.0
  2027.         experience: 5.0
  2028.     Milk:
  2029.       Cow:
  2030.         income: 5.0
  2031.         points: 5.0
  2032.         experience: 5.0
  2033.     Break:
  2034.      #1.14 blocks
  2035.       #bamboo-1:
  2036.         #income: 1
  2037.         #points: 1
  2038.         #experience: 1
  2039.       #cornflower:
  2040.         #income: 0.1
  2041.         #points:0.1
  2042.         #experience: 1
  2043.       #lilly_of_the_valley:
  2044.         #income: 0.1
  2045.         #points:0.1
  2046.         #experience: 1
  2047.       #wither_rose:
  2048.         #income: 0.1
  2049.         #points:0.1
  2050.         #experience: 1
  2051.      
  2052.       #1.13 blocks
  2053.       tube_coral_fan:
  2054.         income: 2
  2055.         points: 2
  2056.         experience: 3
  2057.       brain_coral_fan:
  2058.         income: 2
  2059.         points: 2
  2060.         experience: 3
  2061.       bubble_coral_fan:
  2062.         income: 2
  2063.         points: 2
  2064.         experience: 3
  2065.       fire_coral_fan:
  2066.         income: 2
  2067.         points: 2
  2068.         experience: 3
  2069.       horn_coral_fan:
  2070.         income: 2
  2071.         points: 2
  2072.         experience: 3
  2073.       kelp_plant:
  2074.         income: 1
  2075.         points: 1
  2076.         experience: 1
  2077.       kelp:
  2078.         income: 1
  2079.         points: 1
  2080.         experience: 1
  2081.       seagrass:
  2082.         income: 1
  2083.         points: 1
  2084.         experience: 1
  2085.       tall_seagrass:
  2086.         income: 1
  2087.         points: 1
  2088.         experience: 1
  2089.       sea_pickle:
  2090.         income: 1
  2091.         points: 1
  2092.         experience: 1
  2093.       #old blocks
  2094.       sunflower:
  2095.         income: 2
  2096.         points: 2
  2097.         experience: 2.0
  2098.       lilac:
  2099.         income: 2
  2100.         points: 2
  2101.         experience: 2.0
  2102.       rose_bush:
  2103.         income: 2
  2104.         points: 2
  2105.         experience: 2.0
  2106.       peony:
  2107.         income: 2
  2108.         points: 2
  2109.         experience: 2.0
  2110.       chorus_plant:
  2111.         income: 1.5
  2112.         points: 1.5
  2113.         experience: 3.0
  2114.       chorus_flower:
  2115.         income: 1.5
  2116.         points: 1.5
  2117.         experience: 3.0
  2118.       beetroots:
  2119.         income: 1.5
  2120.         points: 1.5
  2121.         experience: 3.0
  2122.       wheat-7:
  2123.         income: 1.5
  2124.         points: 1.5
  2125.         experience: 3.0
  2126.       carrots-7:
  2127.         income: 1.0
  2128.         points: 1.0
  2129.         experience: 1.0
  2130.       potatoes-7:
  2131.         income: 1.0
  2132.         points: 1.0
  2133.         experience: 1.0
  2134.       pumpkin:
  2135.         income: 0.5
  2136.         points: 0.5
  2137.         experience: 1.0
  2138.       sugar_cane-15:
  2139.         income: 0.2
  2140.         points: 0.2
  2141.         experience: 0.2
  2142.       cocoa-2:
  2143.         income: 4
  2144.         points: 4
  2145.         experience: 4.0
  2146.       oak_sapling:
  2147.         income: 2
  2148.         points: 2
  2149.         experience: 2.0
  2150.       spruce_sapling:
  2151.         income: 2
  2152.         points: 2
  2153.         experience: 2.0
  2154.       birch_sapling:
  2155.         income: 2
  2156.         points: 2
  2157.         experience: 2.0
  2158.       jungle_sapling:
  2159.         income: 2
  2160.         points: 2
  2161.         experience: 2.0
  2162.       acacia_sapling:
  2163.         income: 2
  2164.         points: 2
  2165.         experience: 2.0
  2166.       dark_oak_sapling:
  2167.         income: 2
  2168.         points: 2
  2169.         experience: 2.0
  2170.       lily_pad:
  2171.         income: 2
  2172.         points: 2
  2173.         experience: 2.0
  2174.       dandelion:
  2175.         income: 2
  2176.         points: 2
  2177.         experience: 2.0
  2178.       poppy:
  2179.         income: 2
  2180.         points: 2
  2181.         experience: 2.0
  2182.       blue_orchid:
  2183.         income: 2
  2184.         points: 2
  2185.         experience: 2.0
  2186.       allium:
  2187.         income: 2
  2188.         points: 2
  2189.         experience: 2.0
  2190.       azure_bluet:
  2191.         income: 2
  2192.         points: 2
  2193.         experience: 2.0
  2194.       red_tulip:
  2195.         income: 2
  2196.         points: 2
  2197.         experience: 2.0
  2198.       orange_tulip:
  2199.         income: 2
  2200.         points: 2
  2201.         experience: 2.0
  2202.       white_tulip:
  2203.         income: 2
  2204.         points: 2
  2205.         experience: 2.0
  2206.       pink_tulip:
  2207.         income: 2
  2208.         points: 2
  2209.         experience: 2.0
  2210.       oxeye_daisy:
  2211.         income: 2
  2212.         points: 2
  2213.         experience: 2.0
  2214.       brown_mushroom:
  2215.         income: 1
  2216.         points: 1
  2217.         experience: 1.0
  2218.       red_mushroom:
  2219.         income: 1
  2220.         points: 1
  2221.         experience: 1.0
  2222.       vine:
  2223.         income: 1
  2224.         points: 1
  2225.         experience: 1.0
  2226.       cactus:
  2227.         income: 1
  2228.         points: 1
  2229.         experience: 1.0
  2230.       nether_wart-3:
  2231.         income: 1
  2232.         points: 1
  2233.         experience: 1.0
  2234.     Place:
  2235.      #1.14 blocks
  2236.       #bamboo_sapling:
  2237.         #income: 1
  2238.         #points: 1
  2239.         #experience: 1
  2240.       #1.13 blocks
  2241.       dead_tube_coral_fan:
  2242.         income: 2
  2243.         points: 2
  2244.         experience: 3
  2245.       dead_brain_coral_fan:
  2246.         income: 2
  2247.         points: 2
  2248.         experience: 3
  2249.       dead_bubble_coral_fan:
  2250.         income: 2
  2251.         points: 2
  2252.         experience: 3
  2253.       dead_fire_coral_fan:
  2254.         income: 2
  2255.         points: 2
  2256.         experience: 3
  2257.       dead_horn_coral_fan:
  2258.         income: 2
  2259.         points: 2
  2260.         experience: 3
  2261.       #old
  2262.       wheat-0:
  2263.         income: 1
  2264.         points: 1
  2265.         experience: 1
  2266.       potatoes-0:
  2267.         income: 1
  2268.         points: 1
  2269.         experience: 1
  2270.       carrots-0:
  2271.         income: 1
  2272.         points: 1
  2273.         experience: 1
  2274.       beetroots-0:
  2275.         income: 1
  2276.         points: 1
  2277.         experience: 1
  2278.       cocoa-0:
  2279.         income: 1
  2280.         points: 1
  2281.         experience: 1
  2282.       #sugarcane will remove an income/point and experience so it isn't spammed
  2283.       sugar_cane-0:
  2284.         income: -1
  2285.         points: -1
  2286.         experience: -1
  2287.       pumpkin_stem-0:
  2288.         income: 1
  2289.         points: 1
  2290.         experience: 1
  2291.       melon_stem-0:
  2292.         income: 1
  2293.         points: 1
  2294.         experience: 1
  2295.       nether_wart-0:
  2296.         income: 1
  2297.         points: 1
  2298.         experience: 1
  2299.     Kill:
  2300.       Player:
  2301.         income: 7.5
  2302.         points: 7.5
  2303.         experience: 7.5
  2304.   Hunter:
  2305.     fullname: Hunter
  2306.     shortname: H
  2307.     description: Earns money killing animals and monsters.
  2308.     ChatColour: RED
  2309.     chat-display: full
  2310.     max-level: 200
  2311.     #slots: 10
  2312.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  2313.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2314.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2315.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2316.     rejoinCooldown: 10
  2317.     Gui:
  2318.       Id: 261
  2319.       Data: 0
  2320.     Tame:
  2321.       Wolf:
  2322.         income: 20.0
  2323.         points: 20
  2324.         experience: 15.0
  2325.       Ocelot:
  2326.         income: 20.0
  2327.         points: 20
  2328.         experience: 15.0
  2329.       Horse:
  2330.         income: 20.0
  2331.         points: 20
  2332.         experience: 15.0
  2333.     Kill:
  2334.      #1.14 mobs
  2335.       #illager_beast:
  2336.         #income: 10
  2337.         #points:10
  2338.         #experience: 15
  2339.       #panda:
  2340.         #income: 5
  2341.         #points: 5
  2342.         #experience: 5
  2343.       #pillager:
  2344.         #income:
  2345.         #points:
  2346.         #experience:
  2347.       #old mobs
  2348.       Chicken:
  2349.         income: 5.0
  2350.         points: 5
  2351.         experience: 5.0
  2352.       Cow:
  2353.         income: 5
  2354.         points: 5
  2355.         experience: 5.0
  2356.       Pig:
  2357.         income: 5.0
  2358.         points: 5
  2359.         experience: 5.0
  2360.       Sheep:
  2361.         income: 5.0
  2362.         points: 5
  2363.         experience: 5.0
  2364.       Wolf:
  2365.         income: 10.0
  2366.         points: 10
  2367.         experience: 5.0
  2368.       Creeper:
  2369.         income: 15.0
  2370.         points: 15
  2371.         experience: 15.0
  2372.       Skeleton:
  2373.         income: 10.0
  2374.         points: 10
  2375.         experience: 15.0
  2376.       Spider:
  2377.         income: 10.0
  2378.         points: 10
  2379.         experience: 15.0
  2380.       Zombie:
  2381.         income: 10.0
  2382.         points: 10
  2383.         experience: 15.0
  2384.       BLAZE:
  2385.         income: 20.0
  2386.         points: 20
  2387.         experience: 15.0
  2388.       CAVE_SPIDER:
  2389.         income: 20.0
  2390.         points: 20
  2391.         experience: 15.0
  2392.       ENDERMAN:
  2393.         income: 2.0
  2394.         points: 2
  2395.         experience: 2.0
  2396.       GHAST:
  2397.         income: 30.0
  2398.         points: 30
  2399.         experience: 30.0
  2400.       GIANT:
  2401.         income: 250.0
  2402.         points: 250
  2403.         experience: 100.0
  2404.       IRON_GOLEM:
  2405.         income: 30.0
  2406.         points: 30
  2407.         experience: 30.0
  2408.       mushroom_cow:
  2409.         income: 5.0
  2410.         points: 5
  2411.         experience: 5.0
  2412.       PIG_ZOMBIE:
  2413.         income: 5.0
  2414.         points: 5
  2415.         experience: 5.0
  2416.       SILVERFISH:
  2417.         income: 3.0
  2418.         points: 3
  2419.         experience: 5.0
  2420.       SNOWMAN:
  2421.         income: 2.0
  2422.         points: 2
  2423.         experience: 4.0
  2424.       SQUID:
  2425.         income: 2.0
  2426.         points: 2
  2427.         experience: 2.0
  2428.       RABBIT:
  2429.         income: 2.0
  2430.         points: 2
  2431.         experience: 2.0
  2432.       GUARDIAN:
  2433.         income: 2.0
  2434.         points: 2
  2435.         experience: 2.0
  2436.       shulker_box:
  2437.         income: 5.0
  2438.         points: 5
  2439.         experience: 5.0
  2440.       WITHER:
  2441.         income: 50.0
  2442.         points: 50
  2443.         experience: 120.0
  2444.       ENDER_DRAGON:
  2445.         income: 2000.0
  2446.         points: 2000
  2447.         experience: 2000.0
  2448.       Player:
  2449.         income: 9.0
  2450.         points: 9
  2451.         experience: 7.5
  2452.   Explorer:
  2453.     fullname: Explorer
  2454.     shortname: Ex
  2455.     description: Earns money from exploring map.
  2456.     ChatColour: AQUA
  2457.     chat-display: full
  2458.     max-level: 200
  2459.     #slots: 10
  2460.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  2461.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2462.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2463.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2464.     rejoinCooldown: 10
  2465.     Gui:
  2466.       Id: 301
  2467.       Data: 0
  2468.     Explore:
  2469.       1:
  2470.         income: 5.0
  2471.         points: 5
  2472.         experience: 5.0
  2473.       2:
  2474.         income: 2.5
  2475.         points: 2.5
  2476.         experience: 2.5
  2477.       3:
  2478.         income: 1.0
  2479.         points: 1.0
  2480.         experience: 1.0
  2481.       4:
  2482.         income: 0.5
  2483.         points: 0.5
  2484.         experience: 0.5
  2485.       5:
  2486.         income: 0.1
  2487.         points: 0.1
  2488.         experience: 0.1
  2489.     Kill:
  2490.       Player:
  2491.         income: 7.5
  2492.         experience: 7.5
  2493.   Crafter:
  2494.     fullname: Crafter
  2495.     shortname: Cr
  2496.     description: Earns money from crafting items.
  2497.     ChatColour: RED
  2498.     chat-display: full
  2499.     max-level: 200
  2500.     #slots: 10
  2501.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  2502.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2503.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  2504.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  2505.     rejoinCooldown: 10
  2506.     Gui:
  2507.       Item: CRAFTING_TABLE
  2508.     Craft:
  2509.      #1.14 items.  check the name of each of these on 1.14 release
  2510.       #hanging:
  2511.         #income:0.3
  2512.         #points:0.3
  2513.         #experience:0.3
  2514.       #barrel:
  2515.         #income:0.3
  2516.         #points:0.3
  2517.         #experience:0.3
  2518.       #bell:
  2519.         #income:0.3
  2520.         #points:0.3
  2521.         #experience:0.3
  2522.       #blast_furnace:
  2523.         #income:0.3
  2524.         #points:0.3
  2525.         #experience:0.3
  2526.       #smoker:
  2527.         #income:0.3
  2528.         #points:0.3
  2529.         #experience:0.3
  2530.       #cartography_table:
  2531.         #income:0.3
  2532.         #points:0.3
  2533.         #experience:0.3
  2534.       #fletching_table:
  2535.         #income:0.3
  2536.         #points:0.3
  2537.         #experience:0.3
  2538.       #smithing_table:
  2539.         #income:0.3
  2540.         #points:0.3
  2541.         #experience:0.3
  2542.       #stonecutter:
  2543.         #income:0.3
  2544.         #points:0.3
  2545.         #experience:0.3
  2546.       #grindstone:
  2547.         #income:0.3
  2548.         #points:0.3
  2549.         #experience:0.3
  2550.       #lectern:
  2551.         #income:0.3
  2552.         #points:0.3
  2553.         #experience:0.3
  2554.       #loom:
  2555.         #income:0.3
  2556.         #points:0.3
  2557.         #experience:0.3
  2558.       #scaffolding:
  2559.         #income:0.3
  2560.         #points:0.3
  2561.         #experience:0.3
  2562.       #spruce_sign:
  2563.         #income:0.3
  2564.         #points:0.3
  2565.         #experience:0.3
  2566.       #birch_sign:
  2567.         #income:0.3
  2568.         #points:0.3
  2569.         #experience:0.3
  2570.       #acacia_sign:
  2571.         #income:0.3
  2572.         #points:0.3
  2573.         #experience:0.3
  2574.       #jungle_sign:
  2575.         #income:0.3
  2576.         #points:0.3
  2577.         #experience:0.3
  2578.       #dark_oak_sign:
  2579.         #income:0.3
  2580.         #points:0.3
  2581.         #experience:0.3
  2582.       #stone_slab:
  2583.         #income:0.3
  2584.         #points:0.3
  2585.         #experience:0.3
  2586.       #granite_slab:
  2587.         #income:0.3
  2588.         #points:0.3
  2589.         #experience:0.3
  2590.       #polished_granite_slab:
  2591.         #income:0.3
  2592.         #points:0.3
  2593.         #experience:0.3
  2594.       #diorite_slab:
  2595.         #income:0.3
  2596.         #points:0.3
  2597.         #experience:0.3
  2598.       #polished_diorite_slab:
  2599.         #income:0.3
  2600.         #points:0.3
  2601.         #experience:0.3
  2602.       #andesite_slab:
  2603.         #income:0.3
  2604.         #points:0.3
  2605.         #experience:0.3
  2606.       #polished_andesite_slab:
  2607.         #income:0.3
  2608.         #points:0.3
  2609.         #experience:0.3
  2610.       #red_nether_brick_slab:
  2611.         #income:0.3
  2612.         #points:0.3
  2613.         #experience:0.3
  2614.       #end_stone_brick_slab:
  2615.         #income:0.3
  2616.         #points:0.3
  2617.         #experience:0.3
  2618.       #mossy_stone_brick_slab:
  2619.         #income:0.3
  2620.         #points:0.3
  2621.         #experience:0.3
  2622.       #mossy_cobblestone_slab:
  2623.         #income:0.3
  2624.         #points:0.3
  2625.         #experience:0.3
  2626.       #smooth_sandstone_slab:
  2627.         #income:0.3
  2628.         #points:0.3
  2629.         #experience:0.3
  2630.       #smooth_red_sandstone_slab:
  2631.         #income:0.3
  2632.         #points:0.3
  2633.         #experience:0.3
  2634.       #smooth_quartz_slab:
  2635.         #income:0.3
  2636.         #points:0.3
  2637.         #experience:0.3
  2638.       #stone_stairs:
  2639.         #income:0.3
  2640.         #points:0.3
  2641.         #experience:0.3
  2642.       #granite_stairs:
  2643.         #income:0.3
  2644.         #points:0.3
  2645.         #experience:0.3
  2646.       #polished_granite_stairs:
  2647.         #income:0.3
  2648.         #points:0.3
  2649.         #experience:0.3
  2650.       #diorite_stairs:
  2651.         #income:0.3
  2652.         #points:0.3
  2653.         #experience:0.3
  2654.       #polished_diorite_stairs:
  2655.         #income:0.3
  2656.         #points:0.3
  2657.         #experience:0.3
  2658.       #andesite_stairs:
  2659.         #income:0.3
  2660.         #points:0.3
  2661.         #experience:0.3
  2662.       #polished_andesite_stairs:
  2663.         #income:0.3
  2664.         #points:0.3
  2665.         #experience:0.3
  2666.       #red_nether_brick_stairs:
  2667.         #income:0.3
  2668.         #points:0.3
  2669.         #experience:0.3
  2670.       #end_stone_brick_stairs:
  2671.         #income:0.3
  2672.         #points:0.3
  2673.         #experience:0.3
  2674.       #mossy_stone_brick_stairs:
  2675.         #income:0.3
  2676.         #points:0.3
  2677.         #experience:0.3
  2678.       #mossy_cobblestone_stairs:
  2679.         #income:0.3
  2680.         #points:0.3
  2681.         #experience:0.3
  2682.       #smooth_sandstone_stairs:
  2683.         #income:0.3
  2684.         #points:0.3
  2685.         #experience:0.3
  2686.       #smooth_red_sandstone_stairs:
  2687.         #income:0.3
  2688.         #points:0.3
  2689.         #experience:0.3
  2690.       #smooth_quartz_stairs:
  2691.         #income:0.3
  2692.         #points:0.3
  2693.         #experience:0.3
  2694.      
  2695.       #old items
  2696.       oak_slab:
  2697.         income: 0.1
  2698.         points: 0.1
  2699.         experience: 1
  2700.       spruce_slab:
  2701.         income: 0.1
  2702.         points: 0.1
  2703.         experience: 1
  2704.       birch_slab:
  2705.         income: 0.1
  2706.         points: 0.1
  2707.         experience: 1
  2708.       jungle_slab:
  2709.         income: 0.1
  2710.         points: 0.1
  2711.         experience: 1
  2712.       acacia_slab:
  2713.         income: 0.1
  2714.         points: 0.1
  2715.         experience: 1
  2716.       dark_oak_slab:
  2717.         income: 0.1
  2718.         points: 0.1
  2719.         experience: 1
  2720.       stone_slab: #IMPORTANT!!!! CHANGE THIS TO smooth_stone_slab WHEN 1.14 comes out!
  2721.         income: 0.1
  2722.         points: 0.1
  2723.         experience: 1
  2724.       sandstone_slab:
  2725.         income: 0.1
  2726.         points: 0.1
  2727.         experience: 1
  2728.       petrified_oak_slab:
  2729.         income: 0.1
  2730.         points: 0.1
  2731.         experience: 1
  2732.       cobblestone_slab:
  2733.         income: 0.1
  2734.         points: 0.1
  2735.         experience: 1
  2736.       brick_slab:
  2737.         income: 0.1
  2738.         points: 0.1
  2739.         experience: 1
  2740.       stone_brick_slab:
  2741.         income: 0.1
  2742.         points: 0.1
  2743.         experience: 1
  2744.       nether_brick_slab:
  2745.         income: 0.1
  2746.         points: 0.1
  2747.         experience: 1
  2748.       quartz_slab:
  2749.         income: 0.1
  2750.         points: 0.1
  2751.         experience: 1
  2752.       stick:
  2753.         income: 0.1
  2754.         points: 0.1
  2755.         experience: 0.1
  2756.       dispenser:
  2757.         income: 4.0
  2758.         points: 4.0
  2759.         experience: 4.0
  2760.       note_block:
  2761.         income: 1.5
  2762.         points: 1.5
  2763.         experience: 3.0
  2764.       powered_rail:
  2765.         income: 5.0
  2766.         points: 5
  2767.         experience: 5.0
  2768.       detector_rail:
  2769.         income: 5.0
  2770.         points: 4.0
  2771.         experience: 5.0
  2772.       sticky_piston:
  2773.         income: 3.0
  2774.         points: 3.0
  2775.         experience: 3.0
  2776.       'tnt':
  2777.         income: 4.0
  2778.         points: 4.0
  2779.         experience: 4.0
  2780.       'chest':
  2781.         income: 1.3
  2782.         points: 1.3
  2783.         experience: 1.3
  2784.       crafting_table:
  2785.         income: 0.7
  2786.         points: 0.7
  2787.         experience: 1.0
  2788.       furnace:
  2789.         income: 1.0
  2790.         points: 1.0
  2791.         experience: 1.0
  2792.       ladder:
  2793.         income: 0.1
  2794.         points: 0.1
  2795.         experience: 0.1
  2796.       rail:
  2797.         income: 1.1
  2798.         points: 1.0
  2799.         experience: 1.1
  2800.       jukebox:
  2801.         income: 10.0
  2802.         points: 10.0
  2803.         experience: 20.0
  2804.       white_stained_glass:
  2805.         income: 0.3
  2806.         points: 0.3
  2807.         experience: 0.3
  2808.       orange_stained_glass:
  2809.         income: 0.3
  2810.         points: 0.3
  2811.         experience: 0.3
  2812.       magenta_stained_glass:
  2813.         income: 0.3
  2814.         points: 0.3
  2815.         experience: 0.3
  2816.       light_blue_stained_glass:
  2817.         income: 0.3
  2818.         points: 0.3
  2819.         experience: 0.3
  2820.       yellow_stained_glass:
  2821.         income: 0.3
  2822.         points: 0.3
  2823.         experience: 0.3
  2824.       lime_stained_glass:
  2825.         income: 0.3
  2826.         points: 0.3
  2827.         experience: 0.3
  2828.       pink_stained_glass:
  2829.         income: 0.3
  2830.         points: 0.3
  2831.         experience: 0.3
  2832.       gray_stained_glass:
  2833.         income: 0.3
  2834.         points: 0.3
  2835.         experience: 0.3
  2836.       light_gray_stained_glass:
  2837.         income: 0.3
  2838.         points: 0.3
  2839.         experience: 0.3
  2840.       cyan_stained_glass:
  2841.         income: 0.3
  2842.         points: 0.3
  2843.         experience: 0.3
  2844.       purple_stained_glass:
  2845.         income: 0.3
  2846.         points: 0.3
  2847.         experience: 0.3
  2848.       blue_stained_glass:
  2849.         income: 0.3
  2850.         points: 0.3
  2851.         experience: 0.3
  2852.       brown_stained_glass:
  2853.         income: 0.3
  2854.         points: 0.3
  2855.         experience: 0.3
  2856.       green_stained_glass:
  2857.         income: 0.3
  2858.         points: 0.3
  2859.         experience: 0.3
  2860.       red_stained_glass:
  2861.         income: 0.3
  2862.         points: 0.3
  2863.         experience: 0.3
  2864.       black_stained_glass:
  2865.         income: 0.3
  2866.         points: 0.3
  2867.         experience: 0.3
  2868.       cobblestone_stairs:
  2869.         income: 2.5
  2870.         points: 2.5
  2871.         experience: 3
  2872.       acacia_stairs:
  2873.         income: 2.5
  2874.         points: 2.5
  2875.         experience: 3
  2876.       birch_stairs:
  2877.         income: 2.5
  2878.         points: 2.5
  2879.         experience: 3
  2880.       brick_stairs:
  2881.         income: 2.5
  2882.         points: 2.5
  2883.         experience: 3
  2884.       dark_oak_stairs:
  2885.         income: 2.5
  2886.         points: 2.5
  2887.         experience: 3
  2888.       dark_prismarine_stairs:
  2889.         income: 2.5
  2890.         points: 2.5
  2891.         experience: 3
  2892.       jungle_stairs:
  2893.         income: 2.5
  2894.         points: 2.5
  2895.         experience: 3
  2896.       nether_brick_stairs:
  2897.         income: 2.5
  2898.         points: 2.5
  2899.         experience: 3
  2900.       oak_stairs:
  2901.         income: 2.5
  2902.         points: 2.5
  2903.         experience: 3
  2904.       prismarine_brick_stairs:
  2905.         income: 2.5
  2906.         points: 2.5
  2907.         experience: 3
  2908.       prismarine_stairs:
  2909.         income: 2.5
  2910.         points: 2.5
  2911.         experience: 3
  2912.       purpur_stairs:
  2913.         income: 2.5
  2914.         points: 2.5
  2915.         experience: 3
  2916.       quartz_stairs:
  2917.         income: 2.5
  2918.         points: 2.5
  2919.         experience: 3
  2920.       red_sandstone_stairs:
  2921.         income: 2.5
  2922.         points: 2.5
  2923.         experience: 3
  2924.       sandstone_stairs:
  2925.         income: 2.5
  2926.         points: 2.5
  2927.         experience: 3
  2928.       spruce_stairs:
  2929.         income: 2.5
  2930.         points: 2.5
  2931.         experience: 3
  2932.       stone_brick_stairs:
  2933.         income: 2.5
  2934.         points: 2.5
  2935.         experience: 3
  2936.       enchanting_table:
  2937.         income: 30.0
  2938.         points: 30.0
  2939.         experience: 40.0
  2940.       beacon:
  2941.         income: 100.0
  2942.         points: 100.0
  2943.         experience: 300.0
  2944.       anvil:
  2945.         income: 20.0
  2946.         points: 20.0
  2947.         experience: 25.0
  2948.       trapped_chest:
  2949.         income: 1.5
  2950.         points: 1.5
  2951.         experience: 1.5
  2952.       stone_pressure_plate:
  2953.         income: 3.0
  2954.         points: 3.0
  2955.         experience: 3.0
  2956.       oak_pressure_plate:
  2957.         income: 3.0
  2958.         points: 3.0
  2959.         experience: 3.0
  2960.       spruce_pressure_plate:
  2961.         income: 3.0
  2962.         points: 3.0
  2963.         experience: 3.0
  2964.       birch_pressure_plate:
  2965.         income: 3.0
  2966.         points: 3.0
  2967.         experience: 3.0
  2968.       jungle_pressure_plate:
  2969.         income: 3.0
  2970.         points: 3.0
  2971.         experience: 3.0
  2972.       acacia_pressure_plate:
  2973.         income: 3.0
  2974.         points: 3.0
  2975.         experience: 3.0
  2976.       dark_oak_pressure_plate:
  2977.         income: 3.0
  2978.         points: 3.0
  2979.         experience: 3.0
  2980.       light_weighted_pressure_plate:
  2981.         income: 3.0
  2982.         points: 3.0
  2983.         experience: 3.0
  2984.       heavy_weighted_pressure_plate:
  2985.         income: 3.0
  2986.         points: 3.0
  2987.         experience: 3.0
  2988.       daylight_detector:
  2989.         income: 2.5
  2990.         points: 2.5
  2991.         experience: 2.5
  2992.       'hopper':
  2993.         income: 7.0
  2994.         points: 7.0
  2995.         experience: 7.0
  2996.       activator_rail:
  2997.         income: 4.0
  2998.         points: 4.0
  2999.         experience: 4.0
  3000.       dropper:
  3001.         income: 2.0
  3002.         points: 2.0
  3003.         experience: 3.0
  3004.       terracotta:
  3005.         income: 1.5
  3006.         points: 1.5
  3007.         experience: 1.5
  3008.       white_terracotta:
  3009.         income: 1.5
  3010.         points: 1.5
  3011.         experience: 1.5
  3012.       orange_terracotta:
  3013.         income: 1.5
  3014.         points: 1.5
  3015.         experience: 1.5
  3016.       magenta_terracotta:
  3017.         income: 1.5
  3018.         points: 1.5
  3019.         experience: 1.5
  3020.       light_blue_terracotta:
  3021.         income: 1.5
  3022.         points: 1.5
  3023.         experience: 1.5
  3024.       yellow_terracotta:
  3025.         income: 1.5
  3026.         points: 1.5
  3027.         experience: 1.5
  3028.       lime_terracotta:
  3029.         income: 1.5
  3030.         points: 1.5
  3031.         experience: 1.5
  3032.       pink_terracotta:
  3033.         income: 1.5
  3034.         points: 1.5
  3035.         experience: 1.5
  3036.       gray_terracotta:
  3037.         income: 1.5
  3038.         points: 1.5
  3039.         experience: 1.5
  3040.       light_gray_terracotta:
  3041.         income: 1.5
  3042.         points: 1.5
  3043.         experience: 1.5
  3044.       cyan_terracotta:
  3045.         income: 1.5
  3046.         points: 1.5
  3047.         experience: 1.5
  3048.       purple_terracotta:
  3049.         income: 1.5
  3050.         points: 1.5
  3051.         experience: 1.5
  3052.       blue_terracotta:
  3053.         income: 1.5
  3054.         points: 1.5
  3055.         experience: 1.5
  3056.       brown_terracotta:
  3057.         income: 1.5
  3058.         points: 1.5
  3059.         experience: 1.5
  3060.       green_terracotta:
  3061.         income: 1.5
  3062.         points: 1.5
  3063.         experience: 1.5
  3064.       red_terracotta:
  3065.         income: 1.5
  3066.         points: 1.5
  3067.         experience: 1.5
  3068.       black_terracotta:
  3069.         income: 1.5
  3070.         points: 1.5
  3071.         experience: 1.5
  3072.       glass:
  3073.         income: 0.2
  3074.         points: 0.2
  3075.         experience: 0.2
  3076.       white_stained_glass:
  3077.         income: 0.2
  3078.         points: 0.2
  3079.         experience: 0.2
  3080.       orange_stained_glass:
  3081.         income: 0.2
  3082.         points: 0.2
  3083.         experience: 0.2
  3084.       magenta_stained_glass:
  3085.         income: 0.2
  3086.         points: 0.2
  3087.         experience: 0.2
  3088.       light_blue_stained_glass:
  3089.         income: 0.2
  3090.         points: 0.2
  3091.         experience: 0.2
  3092.       yellow_stained_glass:
  3093.         income: 0.2
  3094.         points: 0.2
  3095.         experience: 0.2
  3096.       lime_stained_glass:
  3097.         income: 0.2
  3098.         points: 0.2
  3099.         experience: 0.2
  3100.       pink_stained_glass:
  3101.         income: 0.2
  3102.         points: 0.2
  3103.         experience: 0.2
  3104.       gray_stained_glass:
  3105.         income: 0.2
  3106.         points: 0.2
  3107.         experience: 0.2
  3108.       light_gray_stained_glass:
  3109.         income: 0.2
  3110.         points: 0.2
  3111.         experience: 0.2
  3112.       cyan_stained_glass:
  3113.         income: 0.2
  3114.         points: 0.2
  3115.         experience: 0.2
  3116.       purple_stained_glass:
  3117.         income: 0.2
  3118.         points: 0.2
  3119.         experience: 0.2
  3120.       blue_stained_glass:
  3121.         income: 0.2
  3122.         points: 0.2
  3123.         experience: 0.2
  3124.       brown_stained_glass:
  3125.         income: 0.2
  3126.         points: 0.2
  3127.         experience: 0.2
  3128.       green_stained_glass:
  3129.         income: 0.2
  3130.         points: 0.2
  3131.         experience: 0.2
  3132.       red_stained_glass:
  3133.         income: 0.2
  3134.         points: 0.2
  3135.         experience: 0.2
  3136.       black_stained_glass:
  3137.         income: 0.2
  3138.         points: 0.2
  3139.         experience: 0.2
  3140.       slime_block:
  3141.         income: 1.0
  3142.         points: 1.0
  3143.         experience: 1.0
  3144.       prismarine:
  3145.         income: 3.0
  3146.         points: 3.0
  3147.         experience: 3.0
  3148.       prismarine_bricks:
  3149.         income: 3.0
  3150.         points: 3.0
  3151.         experience: 3.0
  3152.       dark_prismarine:
  3153.         income: 3.0
  3154.         points: 3.0
  3155.         experience: 3.0
  3156.       sea_lantern:
  3157.         income: 10.0
  3158.         points: 10.0
  3159.         experience: 10.0
  3160.       oak_fence_gate:
  3161.         income: 0.5
  3162.         points: 0.5
  3163.         experience: 0.5
  3164.       spruce_fence_gate:
  3165.         income: 0.5
  3166.         points: 0.5
  3167.         experience: 0.5
  3168.       birch_fence_gate:
  3169.         income: 0.5
  3170.         points: 0.5
  3171.         experience: 0.5
  3172.       jungle_fence_gate:
  3173.         income: 0.5
  3174.         points: 0.5
  3175.         experience: 0.5
  3176.       acacia_fence_gate:
  3177.         income: 0.5
  3178.         points: 0.5
  3179.         experience: 0.5
  3180.       dark_oak_fence_gate:
  3181.         income: 0.5
  3182.         points: 0.5
  3183.         experience: 0.5
  3184.       oak_fence:
  3185.         income: 1.5
  3186.         points: 1.5
  3187.         experience: 2
  3188.       spruce_fence:
  3189.         income: 1.5
  3190.         points: 1.5
  3191.         experience: 2
  3192.       birch_fence:
  3193.         income: 1.5
  3194.         points: 1.5
  3195.         experience: 2
  3196.       jungle_fence:
  3197.         income: 1.5
  3198.         points: 1.5
  3199.         experience: 2
  3200.       acacia_fence:
  3201.         income: 1.5
  3202.         points: 1.5
  3203.         experience: 2
  3204.       dark_oak_fence:
  3205.         income: 1.5
  3206.         points: 1.5
  3207.         experience: 2
  3208.       oak_door:
  3209.         income: 0.5
  3210.         points: 0.5
  3211.         experience: 0.5
  3212.       spruce_door:
  3213.         income: 0.5
  3214.         points: 0.5
  3215.         experience: 0.5
  3216.       birch_door:
  3217.         income: 0.5
  3218.         points: 0.5
  3219.         experience: 0.5
  3220.       jungle_door:
  3221.         income: 0.5
  3222.         points: 0.5
  3223.         experience: 0.5
  3224.       acacia_door:
  3225.         income: 0.5
  3226.         points: 0.5
  3227.         experience: 0.5
  3228.       dark_oak_door:
  3229.         income: 0.5
  3230.         points: 0.5
  3231.         experience: 0.5
  3232.       iron_door:
  3233.         income: 8.0
  3234.         points: 8.0
  3235.         experience: 8.0
  3236.       book:
  3237.         income: 1.0
  3238.         points: 1.0
  3239.         experience: 1.0
  3240.       compass:
  3241.         income: 4.0
  3242.         points: 4.0
  3243.         experience: 7.0
  3244.       clock:
  3245.         income: 7.0
  3246.         points: 7.0
  3247.         experience: 7.0
  3248.       cake:
  3249.         income: 8.0
  3250.         points: 8.0
  3251.         experience: 10.0
  3252.       bed:
  3253.         income: 3.0
  3254.         points: 3.0
  3255.         experience: 3.0
  3256.       brewing_stand:
  3257.         income: 2.8
  3258.         points: 2.8
  3259.         experience: 3.5
  3260.       cauldron:
  3261.         income: 7.0
  3262.         points: 7.0
  3263.         experience: 7.0
  3264.     Smelt:
  3265.       COOKED_CHICKEN:
  3266.         income: 3.0
  3267.         points: 3.0
  3268.         experience: 3.0
  3269.     Kill:
  3270.       Player:
  3271.         income: 7.5
  3272.         points: 7.5
  3273.         experience: 7.5
  3274.   Fisherman:
  3275.     fullname: Fisherman
  3276.     shortname: Fi
  3277.     description: Earns money from fishing.
  3278.     ChatColour: AQUA
  3279.     chat-display: full
  3280.     max-level: 200
  3281.     #slots: 10
  3282.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  3283.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  3284.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  3285.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  3286.     rejoinCooldown: 10
  3287.     Gui:
  3288.       Item: FISHING_ROD
  3289.     Fish:
  3290.       cod:
  3291.         income: 15.0
  3292.         points: 15.0
  3293.         experience: 15.0
  3294.       salmon:
  3295.         income: 20.0
  3296.         points: 20.0
  3297.         experience: 25.0
  3298.       tropical_fish:
  3299.         income: 25.0
  3300.         points: 25.0
  3301.         experience: 25.0
  3302.       pufferfish:
  3303.         income: 25.0
  3304.         points: 25.0
  3305.         experience: 25.0
  3306.     Kill:
  3307.       Player:
  3308.         income: 7.5
  3309.         points: 7.5
  3310.         experience: 7.5
  3311.   Weaponsmith:
  3312.     fullname: Weaponsmith
  3313.     shortname: W
  3314.     description: Earns money from crafting and repairing weapons.
  3315.     ChatColour: DARK_PURPLE
  3316.     chat-display: full
  3317.     max-level: 200
  3318.     #slots: 10
  3319.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  3320.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  3321.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  3322.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  3323.     rejoinCooldown: 10
  3324.     Gui:
  3325.       Id: 58
  3326.       Data: 0
  3327.     Craft:
  3328.      #1.14 items
  3329.       #crossbow:
  3330.         #income:3
  3331.         #points:3
  3332.         #experience:3
  3333.      
  3334.       #old items
  3335.       wooden_sword:
  3336.         income: 1.0
  3337.         points: 1.0
  3338.         experience: 2.0
  3339.       leather_boots:
  3340.         income: 3.0
  3341.         points: 3.0
  3342.         experience: 4.0
  3343.       leather_chestplate:
  3344.         income: 4.0
  3345.         points: 4.0
  3346.         experience: 8.0
  3347.       leather_helmet:
  3348.         income: 2.5
  3349.         points: 2.5
  3350.         experience: 5.0
  3351.       leather_leggings:
  3352.         income: 3.5
  3353.         points: 3.5
  3354.         experience: 7.0
  3355.       IRON_SWORD:
  3356.         income: 4.0
  3357.         points: 4.0
  3358.         experience: 8.0
  3359.       IRON_BOOTS:
  3360.         income: 8.0
  3361.         points: 8.0
  3362.         experience: 16.0
  3363.       IRON_CHESTPLATE:
  3364.         income: 16.0
  3365.         points: 16.0
  3366.         experience: 32.0
  3367.       IRON_HELMET:
  3368.         income: 10.0
  3369.         points: 10.0
  3370.         experience: 20.0
  3371.       IRON_LEGGINGS:
  3372.         income: 14.0
  3373.         points: 14.0
  3374.         experience: 28.0
  3375.       GOLD_SWORD:
  3376.         income: 6.0
  3377.         points: 6.0
  3378.         experience: 12.0
  3379.       GOLD_BOOTS:
  3380.         income: 12.0
  3381.         points: 12.0
  3382.         experience: 24.0
  3383.       GOLD_CHESTPLATE:
  3384.         income: 24.0
  3385.         points: 24.0
  3386.         experience: 48.0
  3387.       GOLD_HELMET:
  3388.         income: 15.0
  3389.         points: 15.0
  3390.         experience: 30.0
  3391.       GOLD_LEGGINGS:
  3392.         income: 21.0
  3393.         points: 21.0
  3394.         experience: 42.0
  3395.       DIAMOND_SWORD:
  3396.         income: 8.0
  3397.         points: 8.0
  3398.         experience: 16.0
  3399.       DIAMOND_PICKAXE:
  3400.         income: 12.0
  3401.         points: 12.0
  3402.         experience: 24.0
  3403.       DIAMOND_AXE:
  3404.         income: 12.0
  3405.         points: 12.0
  3406.         experience: 24.0
  3407.       DIAMOND_HELMET:
  3408.         income: 20.0
  3409.         points: 20.0
  3410.         experience: 40.0
  3411.       DIAMOND_CHESTPLATE:
  3412.         income: 32.0
  3413.         points: 32.0
  3414.         experience: 64.0
  3415.       DIAMOND_LEGGINGS:
  3416.         income: 28.0
  3417.         points: 28.0
  3418.         experience: 40.0
  3419.       DIAMOND_BOOTS:
  3420.         income: 16.0
  3421.         points: 16.0
  3422.         experience: 32.0
  3423.       turtle_helmet:
  3424.         income: 20.0
  3425.         points: 20.0
  3426.         experience: 40.0
  3427.     Repair:
  3428.       WOOD_SWORD:
  3429.         income: 1.0
  3430.         points: 1.0
  3431.         experience: 1.0
  3432.       IRON_SWORD:
  3433.         income: 2.0
  3434.         points: 2.0
  3435.         experience: 2.0
  3436.       GOLD_SWORD:
  3437.         income: 3.0
  3438.         points: 3.0
  3439.         experience: 3.0
  3440.       DIAMOND_SWORD:
  3441.         income: 4.0
  3442.         points: 4.0
  3443.         experience: 4.0
  3444.     Smelt:
  3445.       IRON_INGOT:
  3446.         income: 1.3
  3447.         points: 1.3
  3448.         experience: 2.0
  3449.       GOLD_INGOT:
  3450.         income: 5.0
  3451.         points: 5.0
  3452.         experience: 10
  3453.       DIAMOND:
  3454.         income: 7.0
  3455.         points: 7.0
  3456.         experience: 20
  3457.   Brewer:
  3458.     fullname: Brewer
  3459.     shortname: Br
  3460.     description: Earns money brewing potions.
  3461.     ChatColour: LIGHT_PURPLE
  3462.     chat-display: full
  3463.     max-level: 200
  3464.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  3465.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  3466.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  3467.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  3468.     rejoinCooldown: 10
  3469.     Gui:
  3470.       Id: 379
  3471.       Data: 0
  3472.     Brew:
  3473.       nether_wart:
  3474.         income: 6.0
  3475.         points: 6.0
  3476.         experience: 6.0
  3477.       redstone:
  3478.         income: 6.0
  3479.         points: 6.0
  3480.         experience: 6.0
  3481.       glowstone_dust:
  3482.         income: 8.0
  3483.         points: 8.0
  3484.         experience: 8.0
  3485.       fermented_spider_eye:
  3486.         income: 12.0
  3487.         points: 12.0
  3488.         experience: 12.0
  3489.       gunpowder:
  3490.         income: 6.0
  3491.         points: 6.0
  3492.         experience: 6.0
  3493.       dragon_breath:
  3494.         income: 25.0
  3495.         points: 25.0
  3496.         experience: 25.0
  3497.       sugar:
  3498.         income: 7.0
  3499.         points: 7.0
  3500.         experience: 7.0
  3501.       rabbit_foot:
  3502.         income: 18.0
  3503.         points: 18.0
  3504.         experience: 18.0
  3505.       glistering_melon_slice:
  3506.         income: 10.0
  3507.         points: 10.0
  3508.         experience: 10.0
  3509.       spider_eye:
  3510.         income: 9.0
  3511.         points: 9.0
  3512.         experience: 9.0
  3513.       pufferfish:
  3514.         income: 14.0
  3515.         points: 14.0
  3516.         experience: 14.0
  3517.       magma_cream:
  3518.         income: 12.0
  3519.         points: 12.0
  3520.         experience: 12.0
  3521.       golden_carrot:
  3522.         income: 14.0
  3523.         points: 14.0
  3524.         experience: 14.0
  3525.       blaze_powder:
  3526.         income: 12.0
  3527.         points: 12.0
  3528.         experience: 12.0
  3529.       ghast_tear:
  3530.         income: 22.0
  3531.         points: 22.0
  3532.         experience: 22.0
  3533.       turtle_helmet:
  3534.         income: 12.0
  3535.         points: 12.0
  3536.         experience: 12.0
  3537.       phantom_membrane:
  3538.         income: 12.0
  3539.         points: 12.0
  3540.         experience: 12.0
  3541.   Enchanter:
  3542.     fullname: Enchanter
  3543.     shortname: E
  3544.     description: Earns money enchanting weapons.
  3545.     ChatColour: DARK_BLUE
  3546.     chat-display: full
  3547.     max-level: 200
  3548.     #slots: 10
  3549.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  3550.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  3551.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  3552.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  3553.     rejoinCooldown: 10
  3554.     Gui:
  3555.       Id: 116
  3556.       Data: 0
  3557.     Enchant:
  3558.      #1.14
  3559.       #crossbow:
  3560.         #income: 2
  3561.         #points: 2
  3562.         #experience: 4
  3563.       WOOD_SWORD:
  3564.         income: 1.5
  3565.         points: 1.5
  3566.         experience: 3.0
  3567.       LEATHER_BOOTS:
  3568.         income: 1.0
  3569.         points: 1.0
  3570.         experience: 6.0
  3571.       LEATHER_CHESTPLATE:
  3572.         income: 2.0
  3573.         points: 2.0
  3574.         experience: 6.0
  3575.       LEATHER_HELMET:
  3576.         income: 1.0
  3577.         points: 1.0
  3578.         experience: 6.0
  3579.       LEATHER_LEGGINGS:
  3580.         income: 2.0
  3581.         points: 2.0
  3582.         experience: 6.0
  3583.       IRON_SWORD:
  3584.         income: 3.0
  3585.         points: 3.0
  3586.         experience: 6.0
  3587.       IRON_BOOTS:
  3588.         income: 2.5
  3589.         points: 2.5
  3590.         experience: 9.0
  3591.       IRON_CHESTPLATE:
  3592.         income: 4.5
  3593.         points: 4.5
  3594.         experience: 9.0
  3595.       IRON_HELMET:
  3596.         income: 2.5
  3597.         points: 2.5
  3598.         experience: 9.0
  3599.       IRON_LEGGINGS:
  3600.         income: 4.5
  3601.         points: 4.5
  3602.         experience: 9.0
  3603.       GOLD_SWORD:
  3604.         income: 4.5
  3605.         points: 4.5
  3606.         experience: 15.0
  3607.       GOLD_BOOTS:
  3608.         income: 2.5
  3609.         points: 2.5
  3610.         experience: 15.0
  3611.       GOLD_CHESTPLATE:
  3612.         income: 5.5
  3613.         points: 5.5
  3614.         experience: 15.0
  3615.       GOLD_HELMET:
  3616.         income: 2.5
  3617.         points: 2.5
  3618.         experience: 15.0
  3619.       GOLD_LEGGINGS:
  3620.         income: 5.5
  3621.         points: 5.5
  3622.         experience: 15.0
  3623.       DIAMOND_SWORD:
  3624.         income: 9.0
  3625.         points: 9.0
  3626.         experience: 30.0
  3627.       DIAMOND_SPADE:
  3628.         income: 5.0
  3629.         points: 5.0
  3630.         experience: 30.0
  3631.       DIAMOND_PICKAXE:
  3632.         income: 10.0
  3633.         points: 10.0
  3634.         experience: 30.0
  3635.       DIAMOND_AXE:
  3636.         income: 10.0
  3637.         points: 10.0
  3638.         experience: 30.0
  3639.       DIAMOND_HELMET:
  3640.         income: 6.0
  3641.         points: 6.0
  3642.         experience: 30.0
  3643.       DIAMOND_CHESTPLATE:
  3644.         income: 12.0
  3645.         points: 12.0
  3646.         experience: 50.0
  3647.       DIAMOND_LEGGINGS:
  3648.         income: 12.0
  3649.         points: 12.0
  3650.         experience: 50.0
  3651.       DIAMOND_BOOTS:
  3652.         income: 6.0
  3653.         points: 6.0
  3654.         experience: 30.0
  3655.       #1.14 enchants
  3656.       #multishot:
  3657.         #income:
  3658.         #points:
  3659.         #experience:
  3660.       #quick_charge:
  3661.         #income:
  3662.         #points:
  3663.         #experience:
  3664.       #piercing:
  3665.         #income:
  3666.         #points:
  3667.         #experience:
  3668.       #old enchants
  3669.       #Power
  3670.       ARROW_DAMAGE-1:
  3671.         income: 10.0
  3672.         points: 10.0
  3673.         experience: 10.0
  3674.       ARROW_DAMAGE-2:
  3675.         income: 20.0
  3676.         points: 20.0
  3677.         experience: 20.0
  3678.       ARROW_DAMAGE-3:
  3679.         income: 30.0
  3680.         points: 30.0
  3681.         experience: 30.0
  3682.       ARROW_DAMAGE-4:
  3683.         income: 40.0
  3684.         points: 40.0
  3685.         experience: 40.0
  3686.       ARROW_DAMAGE-5:
  3687.         income: 50.0
  3688.         points: 50.0
  3689.         experience: 50.0
  3690.       #Flame
  3691.       ARROW_FIRE:
  3692.         income: 10.0
  3693.         points: 10.0
  3694.         experience: 30.0
  3695.       #Infinity
  3696.       ARROW_INFINITE:
  3697.         income: 20.0
  3698.         points: 20.0
  3699.         experience: 50.0
  3700.       #Punch
  3701.       ARROW_KNOCKBACK-1:
  3702.         income: 10.0
  3703.         points: 10.0
  3704.         experience: 10.0
  3705.       ARROW_KNOCKBACK-2:
  3706.         income: 20.0
  3707.         points: 20.0
  3708.         experience: 20.0
  3709.       #Sharpness
  3710.       DAMAGE_ALL-1:
  3711.         income: 10.0
  3712.         points: 10.0
  3713.         experience: 10.0
  3714.       DAMAGE_ALL-2:
  3715.         income: 20.0
  3716.         points: 20.0
  3717.         experience: 20.0
  3718.       DAMAGE_ALL-3:
  3719.         income: 30.0
  3720.         points: 30.0
  3721.         experience: 30.0
  3722.       DAMAGE_ALL-4:
  3723.         income: 40.0
  3724.         points: 40.0
  3725.         experience: 40.0
  3726.       DAMAGE_ALL-5:
  3727.         income: 50.0
  3728.         points: 50.0
  3729.         experience: 50.0
  3730.       #Bane of Arthropods
  3731.       DAMAGE_ARTHROPODS-1:
  3732.         income: 10.0
  3733.         points: 10.0
  3734.         experience: 10.0
  3735.       DAMAGE_ARTHROPODS-2:
  3736.         income: 20.0
  3737.         points: 20.0
  3738.         experience: 20.0
  3739.       DAMAGE_ARTHROPODS-3:
  3740.         income: 30.0
  3741.         points: 30.0
  3742.         experience: 30.0
  3743.       DAMAGE_ARTHROPODS-4:
  3744.         income: 40.0
  3745.         points: 40.0
  3746.         experience: 40.0
  3747.       DAMAGE_ARTHROPODS-5:
  3748.         income: 50.0
  3749.         points: 50.0
  3750.         experience: 50.0
  3751.       #Smite
  3752.       DAMAGE_UNDEAD-1:
  3753.         income: 10.0
  3754.         points: 10.0
  3755.         experience: 10.0
  3756.       DAMAGE_UNDEAD-2:
  3757.         income: 20.0
  3758.         points: 20.0
  3759.         experience: 20.0
  3760.       DAMAGE_UNDEAD-3:
  3761.         income: 30.0
  3762.         points: 30.0
  3763.         experience: 30.0
  3764.       DAMAGE_UNDEAD-4:
  3765.         income: 40.0
  3766.         points: 40.0
  3767.         experience: 40.0
  3768.       DAMAGE_UNDEAD-5:
  3769.         income: 50.0
  3770.         points: 50.0
  3771.         experience: 50.0
  3772.       #Depth Strider
  3773.       DEPTH_STRIDER-1:
  3774.         income: 10.0
  3775.         points: 10.0
  3776.         experience: 10.0
  3777.       DEPTH_STRIDER-2:
  3778.         income: 20.0
  3779.         points: 20.0
  3780.         experience: 20.0
  3781.       DEPTH_STRIDER-3:
  3782.         income: 30.0
  3783.         points: 30.0
  3784.         experience: 30.0
  3785.       #Efficiency
  3786.       DIG_SPEED-1:
  3787.         income: 10.0
  3788.         points: 10.0
  3789.         experience: 10.0
  3790.       DIG_SPEED-2:
  3791.         income: 20.0
  3792.         points: 20.0
  3793.         experience: 20.0
  3794.       DIG_SPEED-3:
  3795.         income: 30.0
  3796.         points: 30.0
  3797.         experience: 30.0
  3798.       DIG_SPEED-4:
  3799.         income: 40.0
  3800.         points: 40.0
  3801.         experience: 40.0
  3802.       DIG_SPEED-5:
  3803.         income: 50.0
  3804.         points: 50.0
  3805.         experience: 50.0
  3806.       #Unbreaking
  3807.       DURABILITY-1:
  3808.         income: 10.0
  3809.         points: 10.0
  3810.         experience: 10.0
  3811.       DURABILITY-2:
  3812.         income: 20.0
  3813.         points: 20.0
  3814.         experience: 20.0
  3815.       DURABILITY-3:
  3816.         income: 30.0
  3817.         points: 30.0
  3818.         experience: 30.0
  3819.       #Fire Aspect
  3820.       FIRE_ASPECT-1:
  3821.         income: 10.0
  3822.         points: 10.0
  3823.         experience: 10.0
  3824.       FIRE_ASPECT-2:
  3825.         income: 20.0
  3826.         points: 20.0
  3827.         experience: 20.0
  3828.       #Knockback
  3829.       KNOCKBACK-1:
  3830.         income: 10.0
  3831.         points: 10.0
  3832.         experience: 10.0
  3833.       KNOCKBACK-2:
  3834.         income: 20.0
  3835.         points: 20.0
  3836.         experience: 20.0
  3837.       #Fortune
  3838.       LOOT_BONUS_BLOCKS-1:
  3839.         income: 20.0
  3840.         points: 20.0
  3841.         experience: 100.0
  3842.       LOOT_BONUS_BLOCKS-2:
  3843.         income: 40.0
  3844.         points: 40.0
  3845.         experience: 200.0
  3846.       LOOT_BONUS_BLOCKS-3:
  3847.         income: 80.0
  3848.         points: 80.0
  3849.         experience: 300.0
  3850.       #Looting
  3851.       LOOT_BONUS_MOBS-1:
  3852.         income: 10.0
  3853.         points: 10.0
  3854.         experience: 20.0
  3855.       LOOT_BONUS_MOBS-2:
  3856.         income: 20.0
  3857.         points: 20.0
  3858.         experience: 40.0
  3859.       LOOT_BONUS_MOBS-3:
  3860.         income: 30.0
  3861.         points: 30.0
  3862.         experience: 60.0
  3863.       #Luck of the Sea
  3864.       LUCK-1:
  3865.         income: 15.0
  3866.         points: 15.0
  3867.         experience: 10.0
  3868.       LUCK-2:
  3869.         income: 25.0
  3870.         points: 25.0
  3871.         experience: 20.0
  3872.       LUCK-3:
  3873.         income: 35.0
  3874.         points: 35.0
  3875.         experience: 30.0
  3876.       #Lure
  3877.       LURE-1:
  3878.         income: 10.0
  3879.         points: 10.0
  3880.         experience: 10.0
  3881.       LURE-2:
  3882.         income: 20.0
  3883.         points: 20.0
  3884.         experience: 20.0
  3885.       LURE-3:
  3886.         income: 30.0
  3887.         points: 30.0
  3888.         experience: 30.0
  3889.       #Respiration
  3890.       OXYGEN-1:
  3891.         income: 10.0
  3892.         points: 10.0
  3893.         experience: 10.0
  3894.       OXYGEN-2:
  3895.         income: 20.0
  3896.         points: 20.0
  3897.         experience: 20.0
  3898.       OXYGEN-3:
  3899.         income: 30.0
  3900.         points: 30.0
  3901.         experience: 30.0
  3902.       #Protection
  3903.       PROTECTION_ENVIRONMENTAL-1:
  3904.         income: 10.0
  3905.         points: 10.0
  3906.         experience: 10.0
  3907.       PROTECTION_ENVIRONMENTAL-2:
  3908.         income: 20.0
  3909.         points: 20.0
  3910.         experience: 20.0
  3911.       PROTECTION_ENVIRONMENTAL-3:
  3912.         income: 30.0
  3913.         points: 30.0
  3914.         experience: 30.0
  3915.       PROTECTION_ENVIRONMENTAL-4:
  3916.         income: 40.0
  3917.         points: 40.0
  3918.         experience: 40.0
  3919.       #Blast Protection
  3920.       PROTECTION_EXPLOSIONS-1:
  3921.         income: 10.0
  3922.         points: 10.0
  3923.         experience: 10.0
  3924.       PROTECTION_EXPLOSIONS-2:
  3925.         income: 20.0
  3926.         points: 20.0
  3927.         experience: 20.0
  3928.       PROTECTION_EXPLOSIONS-3:
  3929.         income: 30.0
  3930.         points: 30.0
  3931.         experience: 30.0
  3932.       PROTECTION_EXPLOSIONS-4:
  3933.         income: 40.0
  3934.         points: 40.0
  3935.         experience: 40.0
  3936.       #Feather Falling
  3937.       PROTECTION_FALL-1:
  3938.         income: 10.0
  3939.         points: 10.0
  3940.         experience: 10.0
  3941.       PROTECTION_FALL-2:
  3942.         income: 20.0
  3943.         points: 20.0
  3944.         experience: 20.0
  3945.       PROTECTION_FALL-3:
  3946.         income: 30.0
  3947.         points: 30.0
  3948.         experience: 30.0
  3949.       PROTECTION_FALL-4:
  3950.         income: 40.0
  3951.         points: 40.0
  3952.         experience: 40.0
  3953.       #Fire Protection
  3954.       PROTECTION_FIRE-1:
  3955.         income: 5.0
  3956.         points: 5.0
  3957.         experience: 10.0
  3958.       PROTECTION_FIRE-2:
  3959.         income: 10.0
  3960.         points: 10.0
  3961.         experience: 20.0
  3962.       PROTECTION_FIRE-3:
  3963.         income: 20.0
  3964.         points: 20.0
  3965.         experience: 30.0
  3966.       PROTECTION_FIRE-4:
  3967.         income: 30.0
  3968.         points: 30.0
  3969.         experience: 40.0
  3970.       #Projectile Protection
  3971.       PROTECTION_PROJECTILE-1:
  3972.         income: 10.0
  3973.         points: 10.0
  3974.         experience: 10.0
  3975.       PROTECTION_PROJECTILE-2:
  3976.         income: 20.0
  3977.         points: 20.0
  3978.         experience: 20.0
  3979.       PROTECTION_PROJECTILE-3:
  3980.         income: 30.0
  3981.         points: 30.0
  3982.         experience: 30.0
  3983.       PROTECTION_PROJECTILE-4:
  3984.         income: 40.0
  3985.         points: 40.0
  3986.         experience: 40.0
  3987.       #Silk Touch
  3988.       SILK_TOUCH:
  3989.         income: 100.0
  3990.         points: 100.0
  3991.         experience: 300.0
  3992.       #Thorns
  3993.       THORNS-1:
  3994.         income: 10.0
  3995.         points: 10.0
  3996.         experience: 10.0
  3997.       THORNS-2:
  3998.         income: 20.0
  3999.         points: 20.0
  4000.         experience: 20.0
  4001.       THORNS-3:
  4002.         income: 30.0
  4003.         points: 30.0
  4004.         experience: 30.0
  4005.       #Aqua Affinity
  4006.       WATER_WORKER:
  4007.         income: 30.0
  4008.         points: 30.0
  4009.         experience: 100.0
  4010.       #1.13 enchantments
  4011.       #Channeling
  4012.       channeling:
  4013.         income: 10
  4014.         points: 10
  4015.         experience: 10
  4016.       #Curse of Binding
  4017.       binding_curse:
  4018.         income: 5
  4019.         points: 5
  4020.         experience: 5
  4021.       #Curse of Vanishing
  4022.       vanishing_curse:
  4023.         income: 5
  4024.         points: 5
  4025.         experience: 5
  4026.       #Frost Walker 2
  4027.       frost_walker-1:
  4028.         income: 10
  4029.         points: 10
  4030.         experience: 10
  4031.       frost_walker-2:
  4032.         income: 20
  4033.         points: 20
  4034.         experience: 20
  4035.       #Impaling 5
  4036.       impaling-1:
  4037.         income: 10
  4038.         points: 10
  4039.         experience: 10
  4040.       impaling-2:
  4041.         income: 20
  4042.         points: 20
  4043.         experience: 20
  4044.       impaling-3:
  4045.         income: 30
  4046.         points: 30
  4047.         experience: 30
  4048.       impaling-4:
  4049.         income: 40
  4050.         points: 40
  4051.         experience: 40
  4052.       impaling-5:
  4053.         income: 50
  4054.         points: 50
  4055.         experience: 50
  4056.       #Loyalty 3
  4057.       loyalty-1:
  4058.         income: 10
  4059.         points: 10
  4060.         experience: 10
  4061.       loyalty-2:
  4062.         income: 20
  4063.         points: 20
  4064.         experience: 20
  4065.       loyalty-3:
  4066.         income: 30
  4067.         points: 30
  4068.         experience: 30
  4069.       #Mending
  4070.       mending:
  4071.         income: 10
  4072.         points: 10
  4073.         experience: 10
  4074.       #Riptide
  4075.       riptide:
  4076.         income: 20
  4077.         points: 20
  4078.         experience: 20
  4079.       #Sweeping Edge
  4080.       sweeping_edge:
  4081.         income: 15
  4082.         points: 15
  4083.         experience: 15
  4084.   None:
  4085.     fullname: None
  4086.     shortname: N
  4087.     ChatColour: WHITE
  4088.     chat-display: none
  4089.     #max-level: 10
  4090.     #slots: 10
  4091.     leveling-progression-equation: 10*(joblevel)+(joblevel*joblevel*4)
  4092.     income-progression-equation: baseincome+(baseincome*(joblevel-1)*0.01)-((baseincome+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  4093.     points-progression-equation: basepoints+(basepoints*(joblevel-1)*0.01)-((basepoints+(joblevel-1)*0.01) * ((numjobs-1)*0.05))
  4094.     experience-progression-equation: baseexperience-(baseexperience*((numjobs-1) *0.01))
  4095.     Kill:
  4096.       Player:
  4097.         income: 7.5
Add Comment
Please, Sign In to add comment