Advertisement
Guest User

iProfession config

a guest
Aug 6th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.47 KB | None | 0 0
  1. config:
  2.   max_profession: 2
  3. players: {}
  4. professions:
  5.   Miner:
  6.     name: Miner
  7.     price: 50
  8.     required:
  9.       - category: blockdestroy
  10.         key: stone
  11.         require: 32
  12.         hasnot: You must mine {LEFT} more block(s) of stone!
  13.       - category: blockdestroy
  14.         key: coalore
  15.         require: 5
  16.         hasnot: You must mine {LEFT} more block(s) of coal!
  17.         skills:
  18.           breakBlock:
  19.             - id: 15, 21, 42, 22, 52, 87
  20.               hasnot: This block is too hard!
  21.    
  22.   DiamondMiner:
  23.     name: DiamondMiner
  24.     price: 250
  25.     parent: Miner
  26.     required:
  27.       - category: blockdestroy
  28.         key: ironore
  29.         require: 64
  30.         hasnot: You must mine {LEFT} more block(s) of iron ore!
  31.       skills:
  32.         breakBlock:
  33.           - id: 56, 57, 14, 41, 73, 74, 121
  34.             hasnot: This block is too hard!
  35.                
  36.   ObsidianMiner:
  37.     name: ObsidianMiner
  38.     price: 250
  39.     parent: DiamondMiner
  40.     required:
  41.       - category: blockdestroy
  42.         key: diamondore
  43.         require: 6
  44.         hasnot: You must mine {LEFT} more block(s) of diamond ore!
  45.       - category: blockdestroy
  46.         key: goldore
  47.         require: 6
  48.         hasnot: You must mine {LEFT} more block(s) of diamond ore!
  49.     skills:
  50.       breakBlock:
  51.         - id: 49, 129, 133
  52.           hasnot: This block is too hard!
  53.                
  54.   Blacksmith:
  55.     name: Blacksmith
  56.     price: 250
  57.     required:
  58.       - category: blockdestroy
  59.         key: ironore
  60.         require: 32
  61.         hasnot: You must mine {LEFT} more block(s) of iron ore!
  62.       - category: blockdestroy
  63.         key: coalore
  64.         require: 16
  65.         hasnot: You must mine {LEFT} more block(s) of coal ore!
  66.     skills:
  67.       craftItem:
  68.         - id: 272, 273, 275, 275, 291, 256, 257, 258, 267, 42, 22
  69.           hasnot: This item is too difficult to make!
  70.       smeltItem:
  71.         - id: 265
  72.           hasnot: This item is too hot!
  73.            
  74.   DiamondBlacksmith:
  75.     name: Blacksmith
  76.     price: 250
  77.     parent: Blacksmith
  78.     required:
  79.       - category: blockdestroy
  80.         key: ironore
  81.         require: 64
  82.         hasnot: You must mine {LEFT} more block(s) of iron ore!
  83.     skills:
  84.       craftItem:
  85.         - id: 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 276, 277, 278, 279, 283, 284, 285, 286, 294, 293, 133, 57, 41
  86.           hasnot: This item is too difficult to make!
  87.       smeltItem:
  88.         - id: 266
  89.           hasnot: This item is too hot!
  90.        
  91.   Builder:
  92.     name: Builder
  93.     price: 250
  94.     required:
  95.       - category: blockcreate
  96.         key: cobblestone
  97.         require: 128
  98.         hasnot: You must build {LEFT} more cobblestone!
  99.       - category: blockcreate
  100.         key: wood
  101.         require: 128
  102.         hasnot: You must build {LEFT} more wood!
  103.     skills:
  104.       placeBlock:
  105.         - id: 01, 04, 14, 15, 16, 20, 21, 22, 24, 41, 42, 43, 44, 45, 47, 48, 49, 56, 57, 64, 66, 67, 71, 73, 79, 85, 87, 88, 89, 96, 98, 101, 102, 107, 108, 109, 112, 113, 114, 121, 123, 128, 129, 113, 134, 135, 136
  106.           hasnot: You have difficulties placing this block!
  107.            
  108.   Mechanic:
  109.     name: Mechanic
  110.     price: 250
  111.     required:
  112.       - category: itempickup
  113.         key: redstonedust
  114.         require: 32
  115.         hasnot: You must get {LEFT} more redstone dust!
  116.     skills:
  117.       placeBlock:
  118.         - id: 55, 331, 93, 356, 76, 131, 123
  119.           hasnot: You don't know how to do this!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement