Advertisement
Guest User

Untitled

a guest
Apr 18th, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.94 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. *NAMEALLCAPS(finishedID, IconIDforInterface, lvlReq, Don't worry, new Item(pickOneItemNeededForNow, amtOfItemNeeded)
  23. **/
  24.  
  25. //Chairs
  26. CRUDECHAIR(13581, 8309, 1, 66, new Item(960, 1)),
  27. WOODENCHAIR(13582, 8310, 8, 96, new Item(960, 2)),
  28. ROCKINGCHAIR(13583, 8311, 14, 96, new Item(960, 3)),
  29. OAKCHAIR(13584, 8312, 19, 120, new Item(8778, 1)),
  30. OAKARMCHAIR(13585, 8313, 26, 180, new Item(8778, 2)),
  31. TEAKCHAIR(13586, 8314, 35, 180, new Item(8780, 2)),
  32. MAHOGANYCHAIR(13587, 8315, 60, 280, new Item(8782, 3)),
  33. //Fireplaces
  34. CLAYFIREPLACE(13609, 8325, 3, 30, new Item(1763, 3)),
  35. STONEFIREPLACE(13611, 8326, 33, 40, new Item(3211, 3)),
  36. MARBLEFIREPLACE(13613, 8327, 66, 500, new Item(8786, 5)),
  37. //Curtains
  38. TORNCURTAINS(13603, 8322, 2, 132, new Item(960, 2)),
  39. CURTAINS(13604, 8323, 18, 225, new Item(8778, 3)),
  40. OPULENTCURTAINS(13605, 8324, 40, 315, new Item(8780, 3)),
  41. //Beds
  42. NORMALBED(13148, 1, 20, 117, new Item(960, 3)),
  43. OAKBED(13149, 1, 30, 210, new Item(8778, 3)),
  44. LARGEOAKBED(13150, 1, 34, 330, new Item(8778, 5)),
  45. TEAKBED(13151, 1, 40, 300, new Item(8780, 3)),
  46. LARGETEAKBED(13152, 1, 45, 480, new Item(8780, 5)),
  47. POSTER(13153, 1, 53, 450, new Item(8782, 3)),
  48. GILDEDPOSTER(13154, 1, 60, 1330, new Item(8782, 5)),
  49. //Bookcase
  50. WOODENBOOKCASE(13597, 1, 4, 115, new Item(960, 5)),
  51. OAKBOOKCASE(13598, 1, 29, 180, new Item(8778, 5)),
  52. MAHOGANYBOOKCASE(13599, 1, 40, 420, new Item(8782, 5)),
  53. //Stairs
  54. OAKSTAIRS(13497, 1, 27, 680, new Item(8778, 10)),
  55. TEAKSTAIRS(13499, 1, 48, 980, new Item(8780, 10)),
  56. SPIRAL(13503, 1, 67, 1040, new Item(8780, 10)),
  57. MARBLESTAIRCASE(13501, 1, 82, 3200, new Item(8782, 10)),
  58. MARBLESPIRAL(13505, 1, 97, 4400, new Item(8782, 15));
  59.  
  60. /**
  61. *@TODO the rest
  62. *
  63. **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement