Free samples

You have no imagination ? You don't really understand how professions' configuration work ? You're lazy ? Here is some professions' configuration I've made.

Basic 2 professions

This is just 2 basics professions with some required:

  • Miner (Mix between Miner and Blacksmith): He's able to break iron/gold/diamond/restone ore and craft all the tools & Armor. To become a Miner, you'll need to have broken 20 coal_ore and pay 50 iconomy Money.
  • Lumberjack (Mix between Lumberjack and Carpenter): He's able to break log, craft wooden plank, stick, boat, fence, sign and ladder. To become a Lumberjack, you'll need to have broken 50 "longgrass" and pay 50 iconomy Money.
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    professions:
      miner:
        name: Miner
        price: 50
        required:
        - category: blockdestroyed
          key: coalore
          required: 20
          hasnot: You need to mine {LEFT} ores of coal.
        skills:
          breakBlock:
          - id: 14,15,56,73,74
            hasnot: Only a miner could break that ...
          craftItem:
          - id: 256,257,258,267,268,269,270,271,272,273,274,275,276,277,278,279,283,284,285,286,291,292,293,294
            hasnot: Only a miner could craft that !
      lumberjack:
        name: Lumberjack
        price: 50
        required:
        - category: blockdestroyed
          key: longgrass
          required: 50
          hasnot: You need to cut {LEFT} long grass.
        skills:
          breakBlock:
          - id: 17
            hasnot: Only a lumberjack could break that ...
          craftItem:
          - id: 5,280,85,333,323,65
            hasnot: Only a lumberjack could craft that.