Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.67 KB | None | 0 0
  1. ##########################################################################################
  2. # Challenges
  3. # Rewards and required items have to be described using Bukkit Materials
  4. # and be exactly correct
  5. # Do not use Type Id's - they will not work
  6. # Challenges can be one of three types - inventory, island or level.
  7. # inventory - means the player must have the items on them
  8. # island - means the items have to be on the island and within 10 blocks of the player
  9. # entities are also supported, e.g., COW.
  10. # level - means the island level has to be equal or over this amount.
  11. # If level is set as nothing '', then the challenge is a free challenge and can be
  12. # done at any time.
  13. # Challenges can be repeatable only if they are inventory challenges
  14. # permissions can be given as a reward
  15. #
  16. # Reward Commands - commands can be run when a challenge is completed and repeated
  17. # Commands are:
  18. # rewardcommands:
  19. # - command1
  20. # - command2
  21. # repeatrewardcommands:
  22. # - command1
  23. # - command2
  24. # The commands are listed and run in order. Do not put a / in front of the command.
  25. # The token [player] will be replaced with the player's name.
  26. # Example:
  27. # rewardcommands:
  28. # - pex promote [player]
  29. # - heal [player]
  30. # - warp winner_circle [player]
  31. # If a command fails, it will be noted in the console.
  32. #
  33. # The format for POTIONS is as follows:
  34. #
  35. # Format POTION:NAME:<LEVEL>:<EXTENDED>:<SPLASH/LINGER>:QTY
  36. # LEVEL, EXTENDED, SPLASH, LINGER are optional.
  37. # LEVEL is a number, 1 or 2
  38. # LINGER is for V1.9 servers and later
  39. # Examples:
  40. # POTION:STRENGTH:1:EXTENDED:SPLASH:1
  41. # POTION:INSTANT_DAMAGE:2::LINGER:2
  42. # POTION:JUMP:2:NOTEXTENDED:NOSPLASH:1
  43. # POTION:WEAKNESS::::1 - any weakness potion
  44. #
  45. # Valid potion names are:
  46. # WATER, REGEN, SPEED, FIRE_RESISTANCE, POISON, INSTANT_HEAL, NIGHT_VISION, WEAKNESS,
  47. # STRENGTH, SLOWNESS, JUMP, INSTANT_DAMAGE, WATER_BREATHING, INVISIBILITY
  48. # For V1.9 these are also available:
  49. # LUCK, MUNDANE, THICK, AWKWARD
  50. #
  51. #
  52. # Reseting islands and challenges - usually challenges are reset when a player resets
  53. # their island (see resetchallenges in config.yml). You can stop some challenges from
  54. # being reset by using resetallowed:false in the challenge.
  55. ##########################################################################################
  56.  
  57. challenges:
  58. # Challenge levels - list as many as you like. If a challenge's level is '' it can
  59. # be done anytime. You cannot name a challenge the same as a level.
  60. levels: 'Novice Competent Expert Advanced Elite'
  61.  
  62. # The number of undone tasks that can be left on a level before unlocking next level
  63. waiveramount: 1
  64.  
  65. # Free levels - which levels above should be auto done when reached, therefore unlocking next level.
  66. # Example:
  67. # freelevels: 'Novice' will immediately put player onto Competent level challenges
  68. # freelevels: 'Novice Competent' will make all Novice, Competent and Expert challenges available immediately.
  69. # freelevels: 'Competent' will open Competent and Expert levels once Novice is complete
  70. freelevels: ''
  71.  
  72. # This section determines what happens when a player unlocks a new level
  73. # The subname should correspond to the levels listed above
  74. # Note that there is no section for the first level as it is automatically unlocked
  75. levelUnlock:
  76. Competent:
  77. # What additional message to send player
  78. message: 'Congratulations - you unlocked the &9Competent level!'
  79. rewardDesc: 'A diamond!'
  80. itemReward: 'DIAMOND:1'
  81. moneyReward: 100
  82. expReward: 100
  83. # List permissions separated by spaces
  84. permissionReward: ''
  85. # Commands to run on this player. Use [player] for their name.
  86. commands:
  87. #- kit tools [player]
  88. #- some other command
  89. Expert:
  90. # What additional message to send player
  91. message: 'Congratulations - you unlocked the &aExpert level!'
  92. rewardDesc: '3 diamonds!'
  93. itemReward: 'DIAMOND:3'
  94. moneyReward: 100
  95. expReward: 100
  96. permissionReward: ''
  97. # Commands to run on this player. Use [player] for their name.
  98. commands:
  99. #- kit tools [player]
  100. #- some other command
  101. Advanced:
  102. # What additional message to send player
  103. message: 'Congratulations - you unlocked the &bAdvanced level!'
  104. rewardDesc: '5 diamonds!'
  105. itemReward: 'DIAMOND:5'
  106. moneyReward: 100
  107. expReward: 100
  108. permissionReward: ''
  109. # Commands to run on this player. Use [player] for their name.
  110. commands:
  111. #- kit tools [player]
  112. #- some other command
  113. Elite:
  114. # What additional message to send player
  115. message: 'Congratulations - you unlocked the &dElite level!'
  116. rewardDesc: '7 diamonds!'
  117. itemReward: 'DIAMOND:7'
  118. moneyReward: 100
  119. expReward: 100
  120. permissionReward: ''
  121. # Commands to run on this player. Use [player] for their name.
  122. commands:
  123. #- kit tools [player]
  124. #- some other command
  125.  
  126. # Challenge list
  127. # Challenge names must be in lowercase. Do not use the same name as a level!
  128. challengeList:
  129. glassmaker:
  130. friendlyname: 'Glass Maker'
  131. description: 'Create 1 block of glass'
  132. icon: GLASS
  133. level: 'Novice'
  134. type: inventory
  135. requiredItems: 'GLASS:1'
  136. # You can require the player has a certain amount of money for inventory challenges.
  137. # Remember to mention it in the description!
  138. # If takeItems is true, the money will be removed, so you may want to give it
  139. # back in the reward.
  140. #requiredMoney: 10
  141. takeItems: true
  142. itemReward: 'ICE:1'
  143. rewardText: '1 block of ice'
  144. #rewardcommands:
  145. #- kit tools [player]
  146. moneyReward: 10
  147. expReward: 30
  148. permissionReward: ''
  149. repeatable: true
  150. repeatItemReward: 'ICE:1'
  151. repeatRewardText: '1 block of ice'
  152. repeatMoneyReward: 5
  153. repeatExpReward: 10
  154. #repeatrewardcommands:
  155. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  156. maxtimes: 2
  157. # Allow this challenge to reset when the player resets their island
  158. # Default is true. Set to false to keep this challenge completed.
  159. # Admins can always reset challenges even if this is set to false.
  160. resetallowed: true
  161. breadmaker:
  162. friendlyname: 'Bread Maker'
  163. description: 'Bake 21 loaves of bread'
  164. icon: BREAD
  165. level: 'Novice'
  166. type: inventory
  167. requiredItems: 'BREAD:21'
  168. takeItems: true
  169. itemReward: 'DIRT:5'
  170. rewardText: '5 dirt'
  171. moneyReward: 10
  172. expReward: 30
  173. permissionReward: ''
  174. repeatable: true
  175. repeatItemReward: 'DIRT:1'
  176. repeatRewardText: '1 dirt'
  177. repeatMoneyReward: 5
  178. repeatExpReward: 10
  179. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  180. maxtimes: 100
  181. dyemaker:
  182. friendlyname: 'Dye Maker'
  183. description: 'Craft 32 cactus green dyes'
  184. icon: INK_SACK:2
  185. level: 'Novice'
  186. type: inventory
  187. requiredItems: 'INK_SACK:2:32'
  188. takeItems: true
  189. itemReward: 'SAPLING:0:2 SAPLING:1:2 SAPLING:2:2 SAPLING:3:2'
  190. rewardText: '2 oak, 2 birch, 2 jungle and 2 spruce saplings'
  191. moneyReward: 10
  192. expReward: 30
  193. permissionReward: ''
  194. repeatable: true
  195. repeatItemReward: 'SAPLING:0:1 SAPLING:1:1 SAPLING:2:1 SAPLING:3:1 SAPLING:4:1 SAPLING:5:1'
  196. repeatRewardText: '1 of each kind of sapling'
  197. repeatMoneyReward: 5
  198. repeatExpReward: 10
  199. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  200. maxtimes: 100
  201. papermaker:
  202. friendlyname: 'Paper Maker'
  203. description: 'Create 21 pages of paper'
  204. icon: PAPER
  205. level: 'Novice'
  206. type: inventory
  207. requiredItems: 'PAPER:21'
  208. takeItems: true
  209. itemReward: 'DIRT:5 CLAY:15'
  210. rewardText: '5 dirt and 15 clay blocks'
  211. moneyReward: 15
  212. expReward: 30
  213. permissionReward: ''
  214. repeatable: true
  215. repeatItemReward: 'SAND:2'
  216. repeatRewardText: '2 sand blocks'
  217. repeatMoneyReward: 5
  218. repeatExpReward: 10
  219. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  220. maxtimes: 100
  221. cobblemaker:
  222. friendlyname: 'Cobble Maker'
  223. description: 'Create a cobblestone generator and mine 64 cobblestone.'
  224. icon: COBBLESTONE
  225. level: 'Novice'
  226. type: inventory
  227. requiredItems: 'COBBLESTONE:64'
  228. takeItems: true
  229. itemReward: 'LEATHER:4'
  230. permissionReward: ''
  231. rewardText: '4 leather - boots or a book perhaps?'
  232. moneyReward: 10
  233. expReward: 30
  234. repeatable: true
  235. repeatItemReward: 'LEATHER:1'
  236. repeatRewardText: '1 leather'
  237. repeatMoneyReward: 5
  238. repeatExpReward: 10
  239. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  240. maxtimes: 100
  241. seedbank:
  242. friendlyname: 'Seedbank'
  243. description: 'Collect 64 melon seeds, 64 pumpkin seeds and 64 wheat seeds'
  244. icon: PUMPKIN_SEEDS
  245. level: 'Novice'
  246. type: inventory
  247. requiredItems: 'MELON_SEEDS:64 PUMPKIN_SEEDS:64 SEEDS:64'
  248. takeItems: true
  249. itemReward: 'DIRT:5 VINE:20'
  250. rewardText: '5 dirt blocks and 20 vines'
  251. moneyReward: 15
  252. expReward: 30
  253. permissionReward: ''
  254. repeatable: true
  255. repeatItemReward: 'DIRT:2 VINE:20'
  256. repeatRewardText: '2 dirt blocks and 5 vines'
  257. repeatMoneyReward: 5
  258. repeatExpReward: 10
  259. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  260. maxtimes: 100
  261. stewmaker:
  262. friendlyname: 'Stew Maker'
  263. description: 'Cook up 18 bowls of mushroom stew'
  264. icon: MUSHROOM_SOUP
  265. level: 'Novice'
  266. type: inventory
  267. requiredItems: 'MUSHROOM_SOUP:18'
  268. takeItems: true
  269. itemReward: 'MYCEL:2'
  270. rewardText: '2 mycelium blocks'
  271. moneyReward: 15
  272. expReward: 30
  273. permissionReward: ''
  274. repeatable: true
  275. repeatItemReward: 'MYCEL:1'
  276. repeatRewardText: '1 mycelium block'
  277. repeatMoneyReward: 5
  278. repeatExpReward: 10
  279. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  280. maxtimes: 100
  281. builder:
  282. friendlyname: 'Builder'
  283. description: 'Reach island level 10 (/[label] level).'
  284. icon: WOOD
  285. level: 'Novice'
  286. type: level
  287. requiredItems: 10
  288. takeItems: false
  289. itemReward: 'IRON_PICKAXE:1 DIRT:5 SPONGE:1'
  290. rewardText: '1 iron pickaxe, 5 dirt and a Sponge'
  291. moneyReward: 50
  292. expReward: 50
  293. permissionReward: ''
  294. repeatable: false
  295. repeatItemReward: ''
  296. repeatRewardText: ''
  297. repeatMoneyReward: 0
  298. repeatExpReward: 0
  299. grinder:
  300. description: 'Kill monsters and collect 64 rotten flesh, 32 skeleton bones, 32 string, 32 arrows, 16 gunpowder, 5 spider eyes'
  301. icon: BONE
  302. level: 'Competent'
  303. type: inventory
  304. requiredItems: 'ROTTEN_FLESH:64 STRING:32 SULPHUR:16 ARROW:32 BONE:32 SPIDER_EYE:5'
  305. takeItems: true
  306. itemReward: 'REDSTONE:16 IRON_ORE:5 FLINT:1 POTION:WATER_BREATHING:1 POTION:NIGHT_VISION:1'
  307. rewardText: '16 redstone dust, 1 flint, 1 water breathing potion, 1 night vision potion and 5 iron(ore)'
  308. moneyReward: 75
  309. expReward: 75
  310. permissionReward: ''
  311. repeatable: true
  312. repeatItemReward: 'REDSTONE:2 IRON_ORE:1 FLINT:1 POTION:WATER_BREATHING:1'
  313. repeatRewardText: '2 redstone dust, 1 flint, 1 water breathing potion and 1 iron(ore)'
  314. repeatMoneyReward: 15
  315. repeatExpReward: 15
  316. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  317. maxtimes: 100
  318. farmer:
  319. description: 'Harvest 64 units of the following: wheat, sugar, melon, carrots, potatoes, pumpkin'
  320. icon: WHEAT
  321. level: 'Competent'
  322. type: inventory
  323. requiredItems: 'WHEAT:64 SUGAR:64 MELON:64 CARROT_ITEM:64 POTATO_ITEM:64 PUMPKIN:64'
  324. takeItems: true
  325. itemReward: 'REDSTONE:16 INK_SACK:3:1 MONSTER_EGG:PIG:1 MONSTER_EGG:COW:1 MONSTER_EGG:CHICKEN:1'
  326. rewardText: '16 redstone dust, 1 cocoa bean, 1 spawn egg(chicken,cow,pig)'
  327. moneyReward: 75
  328. expReward: 75
  329. permissionReward: ''
  330. repeatable: true
  331. repeatItemReward: 'INK_SACK:3:1 MONSTER_EGG:PIG:1 MONSTER_EGG:COW:1 MONSTER_EGG:CHICKEN:1'
  332. repeatRewardText: '1 cocoa bean, 1 spawn egg(chicken,cow,pig)'
  333. repeatMoneyReward: 20
  334. repeatExpReward: 20
  335. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  336. maxtimes: 100
  337. angler:
  338. friendlyname: 'Angler'
  339. description: 'Catch and cook 10 standard fish (no salmon)'
  340. icon: COOKED_FISH
  341. level: 'Competent'
  342. type: inventory
  343. requiredItems: 'COOKED_FISH:10'
  344. takeItems: true
  345. itemReward: 'REDSTONE:16 IRON_ORE:5 INK_SACK:5'
  346. rewardText: '16 redstone dust, 5 inksacs, 5 iron (ore)'
  347. moneyReward: 75
  348. expReward: 75
  349. permissionReward: ''
  350. repeatable: true
  351. repeatItemReward: 'REDSTONE:2 IRON_ORE:1 INK_SACK:1'
  352. repeatRewardText: '2 redstone dust, 1 inksac, 1 iron (ore)'
  353. repeatMoneyReward: 15
  354. repeatExpReward: 15
  355. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  356. maxtimes: 100
  357. treecutter:
  358. friendlyname: 'Treecutter'
  359. description: 'Create a tree farm and collect 16 oak, birch, jungle, and spruce logs'
  360. icon: LOG
  361. level: 'Competent'
  362. type: inventory
  363. requiredItems: 'LOG:0:16 LOG:1:16 LOG:2:16 LOG:3:16'
  364. takeItems: true
  365. itemReward: 'REDSTONE:16 IRON_ORE:5 MONSTER_EGG:WOLF:1'
  366. rewardText: '16 redstone dust, 5 iron (ore), 1 wolf spawn egg'
  367. moneyReward: 75
  368. expReward: 75
  369. permissionReward: ''
  370. repeatable: true
  371. repeatItemReward: 'REDSTONE:2 IRON_ORE:1'
  372. repeatRewardText: '2 redstone dust, 1 iron (ore)'
  373. repeatMoneyReward: 15
  374. repeatExpReward: 15
  375. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  376. maxtimes: 100
  377. cookiemaker:
  378. friendlyname: 'Cookie Maker'
  379. description: 'Make 128 cookies and a bucket of milk'
  380. icon: COOKIE
  381. level: 'Competent'
  382. type: inventory
  383. requiredItems: 'MILK_BUCKET:1 COOKIE:128'
  384. takeItems: true
  385. itemReward: 'REDSTONE:16 IRON_ORE:5'
  386. rewardText: '16 redstone dust, 5 iron (ore)'
  387. moneyReward: 75
  388. expReward: 75
  389. permissionReward: ''
  390. repeatable: true
  391. repeatItemReward: 'REDSTONE:2 IRON_ORE:1'
  392. repeatRewardText: '2 redstone dust, 1 iron (ore)'
  393. repeatMoneyReward: 15
  394. repeatExpReward: 15
  395. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  396. maxtimes: 100
  397. craftsman:
  398. friendlyname: 'Craftsman'
  399. description: 'Reach island level 75 (/[label] level).'
  400. icon: IRON_BLOCK
  401. level: 'Competent'
  402. type: level
  403. requiredItems: 75
  404. takeItems: false
  405. itemReward: 'OBSIDIAN:10'
  406. rewardText: '10 obsidian blocks'
  407. moneyReward: 50
  408. expReward: 50
  409. permissionReward: ''
  410. repeatable: false
  411. repeatItemReward: ''
  412. repeatRewardText: ''
  413. repeatMoneyReward: 0
  414. repeatExpReward: 0
  415. homestead:
  416. friendlyname: 'Homestead'
  417. description: 'Build a house that contains at least 1 wooden door, bed, bookshelf, crafting table, furnace, glass-block window, and torch.'
  418. icon: BED
  419. level: 'Competent'
  420. type: island
  421. requiredItems: 'BED_BLOCK:1 WORKBENCH:1 GLASS:1 WOODEN_DOOR:1 FURNACE:1 BOOKSHELF:1 TORCH:1'
  422. # Search radius - the number of blocks that will be searched around the player
  423. # Minimum 10, which searches from -10 to +10 blocks around the player in x,y,z
  424. # Max is 50 because big searches cause lag
  425. searchRadius: 10
  426. takeItems: false
  427. itemReward: 'JUKEBOX:1 RECORD_12:1 LAPIS_BLOCK:10'
  428. rewardText: '1 jukebox, 1 music disk, 10 lapis lazuli blocks'
  429. moneyReward: 100
  430. expReward: 100
  431. permissionReward: ''
  432. repeatable: false
  433. repeatItemReward: ''
  434. repeatRewardText: ''
  435. repeatMoneyReward: 0
  436. repeatExpReward: 0
  437. nether:
  438. friendlyname: 'Nether'
  439. description: 'Build a nether portal on your island and activate it.'
  440. icon: NETHERRACK
  441. level: 'Expert'
  442. type: island
  443. requiredItems: 'OBSIDIAN:10 PORTAL:1'
  444. takeItems: false
  445. itemReward: 'DIAMOND_SWORD:1'
  446. rewardText: '1 diamond sword'
  447. moneyReward: 100
  448. expReward: 100
  449. permissionReward: ''
  450. repeatable: false
  451. repeatItemReward: ''
  452. repeatRewardText: ''
  453. repeatMoneyReward: 0
  454. repeatExpReward: 0
  455. enderpearls:
  456. friendlyname: 'Enderpearls'
  457. description: 'Collect 15 enderpearls from endermen'
  458. icon: ENDER_PEARL
  459. level: 'Expert'
  460. type: inventory
  461. requiredItems: 'ENDER_PEARL:15'
  462. takeItems: true
  463. itemReward: 'GOLD_INGOT:5 BLAZE_ROD:1'
  464. rewardText: '5 gold ingots and 1 blaze rod'
  465. moneyReward: 50
  466. expReward: 100
  467. permissionReward: ''
  468. repeatable: true
  469. repeatItemReward: 'GOLD_INGOT:1 BLAZE_ROD:1'
  470. repeatRewardText: '1 gold ingot and 1 blaze rod'
  471. repeatMoneyReward: 15
  472. repeatExpReward: 15
  473. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  474. maxtimes: 100
  475. slimeballfarmer:
  476. friendlyname: 'Slimeball Farmer'
  477. description: 'Collect 40 slimeballs from slimes'
  478. icon: SLIME_BALL
  479. level: 'Expert'
  480. type: inventory
  481. requiredItems: 'SLIME_BALL:40'
  482. takeItems: true
  483. itemReward: 'GOLD_INGOT:5 IRON_ORE:5'
  484. rewardText: '5 gold ingots and 5 blocks of iron ore'
  485. moneyReward: 50
  486. expReward: 100
  487. permissionReward: ''
  488. repeatable: true
  489. repeatItemReward: 'REDSTONE:8'
  490. repeatRewardText: '8 redstone dust'
  491. repeatMoneyReward: 15
  492. repeatExpReward: 15
  493. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  494. maxtimes: 100
  495. baker:
  496. friendlyname: 'baker'
  497. description: 'Bake 5 cakes and 5 pumpkin pies'
  498. icon: CAKE
  499. level: 'Expert'
  500. type: inventory
  501. requiredItems: 'CAKE:5 PUMPKIN_PIE:5'
  502. takeItems: true
  503. itemReward: 'GOLD_INGOT:5 DIAMOND:1'
  504. rewardText: '5 gold ingots and 1 diamond'
  505. moneyReward: 50
  506. expReward: 100
  507. permissionReward: ''
  508. repeatable: true
  509. repeatItemReward: 'IRON_ORE:1'
  510. repeatRewardText: '1 iron (ore)'
  511. repeatMoneyReward: 15
  512. repeatExpReward: 15
  513. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  514. maxtimes: 100
  515. pioneer:
  516. friendlyname: 'Pioneer'
  517. description: 'Make 1 map and use it, a compass, a clock and collect 64 netherrack, 16 soulsand, and 1 ghast tear'
  518. icon: MAP
  519. level: 'Expert'
  520. type: inventory
  521. requiredItems: 'NETHERRACK:64 SOUL_SAND:16 GHAST_TEAR:1 MAP:1 COMPASS:1 WATCH:1'
  522. takeItems: true
  523. itemReward: 'POWERED_RAIL:32 RAILS:256 DIAMOND:1 MONSTER_EGG:OCELOT:1'
  524. rewardText: '256 rails, 32 powered rails, 1 ocelot spawn egg, 1 diamond'
  525. moneyReward: 100
  526. expReward: 100
  527. permissionReward: ''
  528. repeatable: true
  529. repeatItemReward: 'IRON_ORE:1'
  530. repeatRewardText: '1 iron (ore)'
  531. repeatMoneyReward: 20
  532. repeatExpReward: 20
  533. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  534. maxtimes: 100
  535. mason:
  536. friendlyname: 'Mason'
  537. description: 'Reach island level 150 (/[label] level).'
  538. icon: GOLD_BLOCK
  539. level: 'Expert'
  540. type: level
  541. requiredItems: 150
  542. takeItems: false
  543. itemReward: 'DIAMOND:1 DIRT:20 GOLD_BLOCK:2'
  544. rewardText: '1 diamond, 20 dirt, and 2 gold blocks'
  545. moneyReward: 150
  546. expReward: 150
  547. permissionReward: ''
  548. repeatable: false
  549. repeatItemReward: ''
  550. repeatRewardText: ''
  551. repeatMoneyReward: 0
  552. repeatExpReward: 0
  553. shepherd:
  554. friendlyname: 'Shepherd'
  555. description: 'Collect 5 of every color of wool'
  556. icon: WOOL:2
  557. level: 'Advanced'
  558. type: inventory
  559. requiredItems: 'WOOL:0:5 WOOL:1:5 WOOL:2:5 WOOL:3:5 WOOL:4:5 WOOL:5:5 WOOL:6:5 WOOL:7:5 WOOL:8:5 WOOL:9:5 WOOL:10:5 WOOL:11:5 WOOL:12:5 WOOL:13:5 WOOL:14:5 WOOL:15:5'
  560. takeItems: true
  561. itemReward: 'DIAMOND:2 RECORD_7:1 RECORD_8:1 RECORD_6:1 MONSTER_EGG:SHEEP:1 EMERALD:5'
  562. rewardText: '2 diamonds, 5 emeralds, 3 music disks, 1 sheep spawn egg'
  563. moneyReward: 200
  564. expReward: 200
  565. permissionReward: ''
  566. repeatable: true
  567. repeatItemReward: 'EMERALD:1 MONSTER_EGG:SHEEP:1'
  568. repeatRewardText: '1 emerald, 1 sheep spawn egg'
  569. repeatMoneyReward: 20
  570. repeatExpReward: 20
  571. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  572. maxtimes: 100
  573. alchemist:
  574. friendlyname: 'Alchemist'
  575. description: 'Brew 1 potion of Fire Resistance, Slowness, Swiftness, Healing, Harming, Invisibility, Strength and Regeneration'
  576. icon: BREWING_STAND_ITEM
  577. level: 'Advanced'
  578. type: inventory
  579. requiredItems: 'POTION:FIRE_RESISTANCE::::1 POTION:SLOWNESS::::1 POTION:SPEED::::1 POTION:INSTANT_HEAL::::1 POTION:INSTANT_DAMAGE::::1 POTION:INVISIBILITY::::1 POTION:STRENGTH::::1 POTION:REGEN::::1'
  580. takeItems: true
  581. itemReward: 'ENCHANTMENT_TABLE:1'
  582. rewardText: 'Enchantment Table'
  583. moneyReward: 200
  584. expReward: 200
  585. permissionReward: ''
  586. repeatable: true
  587. repeatItemReward: 'DIAMOND:1'
  588. repeatRewardText: '1 diamond'
  589. repeatMoneyReward: 20
  590. repeatExpReward: 20
  591. dj:
  592. friendlyname: 'DJ'
  593. description: 'Craft a jukebox and collect all music discs'
  594. icon: RECORD_5
  595. level: 'Advanced'
  596. type: inventory
  597. requiredItems: 'GOLD_RECORD:1 GREEN_RECORD:1 RECORD_3:1 RECORD_4:1 RECORD_5:1 RECORD_6:1 RECORD_7:1 RECORD_8:1 RECORD_9:1 RECORD_10:1 RECORD_11:1 RECORD_12:1 JUKEBOX:1'
  598. takeItems: true
  599. itemReward: 'DIAMOND:3 EMERALD:10 GOLD_INGOT:5'
  600. rewardText: '3 diamonds, 10 emeralds and 5 gold ingots'
  601. moneyReward: 200
  602. expReward: 200
  603. permissionReward: ''
  604. repeatable: true
  605. repeatItemReward: 'DIAMOND:1 EMERALD:5 GOLD_INGOT:2'
  606. repeatRewardText: '1 diamond, 5 emeralds and 2 gold bars'
  607. repeatMoneyReward: 20
  608. repeatExpReward: 20
  609. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  610. maxtimes: 100
  611. gemcollector:
  612. friendlyname: 'Gem Collector'
  613. description: 'Collect 50 emeralds'
  614. icon: EMERALD
  615. level: 'Advanced'
  616. type: inventory
  617. requiredItems: 'EMERALD:50'
  618. takeItems: true
  619. itemReward: 'DIAMOND:10'
  620. rewardText: '10 diamonds'
  621. moneyReward: 200
  622. expReward: 200
  623. permissionReward: ''
  624. repeatable: true
  625. repeatItemReward: 'GOLD_INGOT:2'
  626. repeatRewardText: '2 gold ingots'
  627. repeatMoneyReward: 20
  628. repeatExpReward: 20
  629. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  630. maxtimes: 100
  631. culinaryartist:
  632. friendlyname: 'Culinary Artist'
  633. description: 'Collect 1 of every kind of cooked or crafted edible food (no raw food, zombie flesh, or super golden apples)'
  634. icon: GOLDEN_APPLE
  635. level: 'Advanced'
  636. type: inventory
  637. requiredItems: 'BAKED_POTATO:1 BREAD:1 CAKE:1 COOKED_CHICKEN:1 COOKED_FISH:1 GRILLED_PORK:1 COOKIE:1 GOLDEN_APPLE:0:1 GOLDEN_CARROT:1 MUSHROOM_SOUP:1 PUMPKIN_PIE:1 COOKED_BEEF:1'
  638. # If you are running 1.8 change to this:
  639. # requiredItems: 'BAKED_POTATO:1 BREAD:1 CAKE:1 COOKED_CHICKEN:1 COOKED_FISH:1 GRILLED_PORK:1 COOKIE:1 GOLDEN_APPLE:0:1 GOLDEN_CARROT:1 MUSHROOM_SOUP:1 PUMPKIN_PIE:1 COOKED_BEEF:1 COOKED_RABBIT:1 RABBIT_STEW:1 COOKED_MUTTON:1'
  640. takeItems: true
  641. itemReward: 'GOLD_BLOCK:2 GREEN_RECORD:1 RECORD_3:1 RECORD_5:1 MONSTER_EGG:MUSHROOM_COW:1 EMERALD:5'
  642. rewardText: '2 gold blocks, 3 music discs, 1 mooshroom spawn egg, and 5 emeralds'
  643. moneyReward: 200
  644. expReward: 200
  645. permissionReward: ''
  646. repeatable: true
  647. repeatItemReward: 'GOLD_INGOT:10 MONSTER_EGG:MUSHROOM_COW:1 EMERALD:1'
  648. repeatRewardText: '10 gold ingots, 1 mooshroom spawn egg, 1 emerald'
  649. repeatMoneyReward: 20
  650. repeatExpReward: 20
  651. # Max times limits how many times a challenge can be done. Comment out to make unlimited
  652. maxtimes: 100
  653. beaconator:
  654. friendlyname: 'Beaconator'
  655. description: 'Build a beacon and let it shine!'
  656. icon: BEACON
  657. level: 'Advanced'
  658. type: island
  659. requiredItems: 'BEACON:1'
  660. takeItems: false
  661. itemReward: 'SMOOTH_BRICK:20 SMOOTH_BRICK:1:20 SMOOTH_BRICK:2:20 SMOOTH_BRICK:3:20'
  662. rewardText: '20 blocks of every kind of stone brick'
  663. moneyReward: 300
  664. expReward: 300
  665. permissionReward: ''
  666. repeatable: false
  667. repeatItemReward: ''
  668. repeatRewardText: ''
  669. repeatMoneyReward: 0
  670. repeatExpReward: 0
  671. ittakesavillage:
  672. friendlyname: 'It Takes A Village'
  673. description: 'Hold a village meeting with 10 villagers!'
  674. icon: STONE
  675. level: 'Advanced'
  676. type: island
  677. requiredItems: 'VILLAGER:10'
  678. takeItems: false
  679. itemReward: 'HOPPER:4'
  680. rewardText: '4 hoppers'
  681. moneyReward: 300
  682. expReward: 300
  683. permissionReward: ''
  684. repeatable: false
  685. repeatItemReward: ''
  686. repeatRewardText: ''
  687. repeatMoneyReward: 0
  688. repeatExpReward: 0
  689. myprecious:
  690. friendlyname: 'My Precious'
  691. description: 'Build an iron golem'
  692. icon: NAME_TAG
  693. level: 'Advanced'
  694. type: island
  695. requiredItems: 'IRON_GOLEM:1'
  696. takeItems: false
  697. itemReward: 'NAME_TAG:1 ANVIL:1 CAULDRON_ITEM:1 IRON_BLOCK:2'
  698. rewardText: 'A name tag, an anvil, a cauldron and 2 iron blocks'
  699. moneyReward: 300
  700. expReward: 300
  701. permissionReward: ''
  702. repeatable: false
  703. repeatItemReward: ''
  704. repeatRewardText: ''
  705. repeatMoneyReward: 0
  706. repeatExpReward: 0
  707. snowplay:
  708. friendlyname: 'Snow Play!'
  709. description: 'Build a snow golem'
  710. icon: SNOW_BALL
  711. level: 'Advanced'
  712. type: island
  713. requiredItems: 'SNOWMAN:1'
  714. takeItems: false
  715. itemReward: 'DIAMOND_SPADE:1'
  716. rewardText: 'A diamond spade - get shoveling!'
  717. moneyReward: 300
  718. expReward: 300
  719. permissionReward: ''
  720. repeatable: false
  721. repeatItemReward: ''
  722. repeatRewardText: ''
  723. repeatMoneyReward: 0
  724. repeatExpReward: 0
  725. itsaparty:
  726. friendlyname: "It's a party"
  727. description: 'Have a party! Invite 4 friends.'
  728. icon: PUMPKIN_PIE
  729. level: 'Advanced'
  730. type: island
  731. requiredItems: 'PLAYER:5'
  732. takeItems: false
  733. itemReward: 'EMERALD:6 PUMPKIN_PIE:6'
  734. rewardText: '6 Emeralds, 6 pumpkin pies'
  735. moneyReward: 200
  736. expReward: 200
  737. permissionReward: ''
  738. repeatable: false
  739. repeatItemReward: ''
  740. repeatRewardText: ''
  741. repeatMoneyReward: 0
  742. repeatExpReward: 0
  743. itsamonsterparty:
  744. friendlyname: "It's a Monster Party"
  745. description: 'Have a party - all monsters invited! Get close to a Skeleton, Zombie, Spider, Creeper and Enderman all at the same time.'
  746. icon: SKULL_ITEM
  747. level: 'Advanced'
  748. type: island
  749. requiredItems: 'SKELETON:1 ZOMBIE:1 SPIDER:1 CREEPER:1 ENDERMAN:1'
  750. takeItems: false
  751. itemReward: 'SKULL_ITEM:0:2 SKULL_ITEM:2:2 SKULL_ITEM:3:2'
  752. rewardText: 'Skulls!'
  753. moneyReward: 200
  754. expReward: 400
  755. permissionReward: ''
  756. repeatable: false
  757. repeatItemReward: ''
  758. repeatRewardText: ''
  759. repeatMoneyReward: 0
  760. repeatExpReward: 0
  761. acidduke:
  762. friendlyname: 'Arch Duke'
  763. description: 'Achieve an island level of 1000'
  764. icon: DIAMOND_BLOCK
  765. level: 'Elite'
  766. type: level
  767. requiredItems: 1000
  768. takeItems: false
  769. itemReward: 'DIAMOND:1'
  770. rewardText: '1 diamond'
  771. moneyReward: 250
  772. expReward: 250
  773. permissionReward: ''
  774. repeatable: false
  775. repeatItemReward: ''
  776. repeatRewardText: ''
  777. repeatMoneyReward: 0
  778. repeatExpReward: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement