Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.83 KB | None | 0 0
  1. VANNAKA(1597, 40, 1, 30, new int[]{15,35}, new int[]{15,55},
  2.         "Ankou", "Banshee", "Basilisk", "Crocodile", "Cyclops", "Earth Warrior", "Green Dragon"
  3.         , "Hill Giant", "Ice Giant", "Ice Warrior", "Infernal Mage", "Ice Troll", "Moss Giant", "Ogre",
  4.         "Pyrefiend","Troll", "Werewolf"),
  5. CHAELDAR(1598, 95, 65, 50,  new int[]{20,55}, new int[]{21,151},
  6.         "Banshee", "Basilisk", "Blue Dragon", "Crawling Hand", "Cave Horror", "Dagannoth",
  7.         "Dust Devil", "Fire Giant", "Grotworm", "Infernal Mage", "Ice Troll","Kalphite",
  8.         "Lesser Demon", "Shadow Warrior","Troll"),
  9. DURADEL(8466, 115, 95, 70, new int[]{30, 70}, new int[]{45,198},
  10.         "Aberrant Spectre", "Abyssal Demon", "Black Dragon", "Bloodveld", "Bronze Dragon", "Blue Dragon",
  11.         "Dagannoth", "Dark Beast",
  12.         "Dust Devil", "Fire Giant", "Frost Dragon","Gargoyle","Ganodermic Beast", "Greater Demon",
  13.         "Green Dragon","Iron Dragon",
  14.         "Kalphite", "Mutated Jadinko", "Nechryael", "Spiritual Mage", "Steel Dragon");
  15.  
  16. /**
  17. *Make sure that there is essentially no slayer level req for the Vannaka tasks, and a max of lvl 65 for Chaeldar tasks. for the duradel tasks you need 95 slayer so any *monster for him will do.
  18. **/
  19.  
  20. /**
  21. *Still need all finished object Id's and item reqs for all of the ground floor con items. Here's the format.
  22. **/
  23.  
  24. //Chairs
  25. CRUDECHAIR(13581, 8309, 1, 66, new Item(960, 1)),
  26. WOODENCHAIR(13582, 8310, 8, 96, new Item(960, 2)),
  27. ROCKINGCHAIR(13583, 8311, 14, 96, new Item(960, 3)),
  28. OAKCHAIR(13584, 8312, 19, 120, new Item(8778, 1)),
  29. OAKARMCHAIR(13585, 8313, 26, 180, new Item(8778, 2)),
  30. TEAKCHAIR(13586, 8314, 35, 180, new Item(8780, 2)),
  31. MAHOGANYCHAIR(13587, 8315, 60, 280, new Item(8782, 3)),
  32. //Fireplaces
  33. CLAYFIREPLACE(13609, 8325, 3, 30, new Item(1763, 3)),
  34. STONEFIREPLACE(13611, 8326, 33, 40, new Item(3211, 3)),
  35. MARBLEFIREPLACE(13613, 8327, 66, 500, new Item(8786, 5)),
  36. //Curtains
  37. TORNCURTAINS(13603, 8322, 2, 132, new Item(960, 2)),
  38. CURTAINS(13604, 8323, 18, 225, new Item(8778, 3)),
  39. OPULENTCURTAINS(13605, 8324, 40, 315, new Item(8780, 3)),
  40. //Beds
  41. NORMALBED(13148, 1, 20, 117, new Item(960, 3)),
  42. OAKBED(13149, 1, 30, 210, new Item(8778, 3)),
  43. LARGEOAKBED(13150, 1, 34, 330, new Item(8778, 5)),
  44. TEAKBED(13151, 1, 40, 300, new Item(8780, 3)),
  45. LARGETEAKBED(13152, 1, 45, 480, new Item(8780, 5)),
  46. POSTER(13153, 1, 53, 450, new Item(8782, 3)),
  47. GILDEDPOSTER(13154, 1, 60, 1330, new Item(8782, 5)),
  48. //Bookcase
  49. WOODENBOOKCASE(13597, 1, 4, 115, new Item(960, 5)),
  50. OAKBOOKCASE(13598, 1, 29, 180, new Item(8778, 5)),
  51. MAHOGANYBOOKCASE(13599, 1, 40, 420, new Item(8782, 5)),
  52. //Stairs
  53. OAKSTAIRS(13497, 1, 27, 680, new Item(8778, 10)),
  54. TEAKSTAIRS(13499, 1, 48, 980, new Item(8780, 10)),
  55. SPIRAL(13503, 1, 67, 1040, new Item(8780, 10)),
  56. MARBLESTAIRCASE(13501, 1, 82, 3200, new Item(8782, 10)),
  57. MARBLESPIRAL(13505, 1, 97, 4400, new Item(8782, 15));
  58.  
  59. /**
  60. *@TODO the rest
  61. *
  62. **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement