Guest User

Untitled

a guest
Jun 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. /**
  2. * Represents the tasks a player can get
  3. * @args npc name ( req, difficulty )
  4. * @note use requirement of 1 for npcs without one or your going to run into troubles
  5. * @note Difficulty 4 will equal bosses and all bosses need at least 90 slayer
  6. * @note 3rd number is minimum amount assigned 4th is maximum
  7. * @note 5th number is to depict similar monsters (0 means no similar monsters)
  8. * @author Harlan
  9. *
  10. */
  11. public enum Task {
  12. GOBLIN(1, 1, 8, 25, 0),
  13. BANSHEE(15, 1, 8, 25, 0),
  14. ROCK_CRAB(1, 1, 15, 50, 0),
  15. GHOST(1, 1, 8, 25, 0),
  16. GIANT_BAT(1, 1, 8, 25, 0),
  17. CHAOS_DRUID(1, 1, 15, 50, 0),
  18. LESSER_DEMON(1, 2, 15, 50, 1),
  19. BLUE_DRAGON(1, 2, 15, 50, 2),
  20. GREEN_DRAGON(1, 2, 20, 60, 2),
  21. BLACK_DRAGON(1, 3, 10, 40, 2),
  22. CAVE_HORROR(58, 2, 20, 60, 0),
  23. TZHAAR(1, 2, 20, 60, 0),
  24. STEEL_DRAGON(1, 3, 25, 70, 2),
  25. IRON_DRAGON(1, 3, 30, 80, 2),
  26. VYREWATCH(1, 3, 10, 30, 0),
  27. HILL_GIANT(1, 2, 30, 75, 3),
  28. DARK_BEAST(90, 3, 25, 60, 0),
  29. JUNGLE_DEMON(95, 4, 1, 3, 1),
  30. LUCIEN(99, 4, 1, 3, 0),
  31. TZTOK_JAD(1, 4, 1, 3, 0),
  32. CRAWLING_HAND(5, 1, 20, 50, 0),
  33. ABYSSALS_DEMON(85, 3, 40, 80, 1),
  34. DUST_DEVIL(65, 2, 30, 90, 0),
  35. BLOODVELD(50, 2, 40, 90, 0),
  36. SKELETAL_WYVERN(72, 3, 20, 40, 2),
  37. ABERRANT_SPECTRE(60, 2, 30, 70, 0),
  38. GARGOYLE(75, 3, 30, 60, 0),
  39. NECHRYAEL(80, 3, 20, 70, 0),
  40. HELL_HOUND(1, 3, 20, 40, 1),
  41. MOSQUITO_SWARM(1, 1, 20, 40, 0),
  42. INFERNAL_MAGE(45, 2, 20, 50, 0),
  43. BARRELCHEST(90, 4, 2, 4, 0),
  44. CORPORAL_BEAST(1, 4, 1, 3, 0),
  45. SNAKE(1, 3, 5, 15, 0),
  46. WHITE_WOLF(1, 1, 20, 40, 0),
  47. MONKEY_GUARD(1, 3, 30, 60, 0),
  48. HILL_GIANT(1, 2, 40, 70, 3),
  49. FIRE_GIANT(1, 2, 30, 60, 3),
  50. CYCLOPS(1, 2, 20, 40, 0),
  51. ;
Add Comment
Please, Sign In to add comment