Update Quest Enum to latest cache
This commit is contained in:
@@ -122,8 +122,8 @@ public enum Quest
|
||||
MONKEY_MADNESS_II(396, "Monkey Madness II"),
|
||||
MONKS_FRIEND(397, "Monk's Friend"),
|
||||
MOUNTAIN_DAUGHTER(398, "Mountain Daughter"),
|
||||
MOURNINGS_ENDS_PART_I(399, "Mourning's Ends Part I"),
|
||||
MOURNINGS_ENDS_PART_II(400, "Mourning's Ends Part II"),
|
||||
MOURNINGS_END_PART_I(399, "Mourning's End Part I"),
|
||||
MOURNINGS_END_PART_II(400, "Mourning's End Part II"),
|
||||
MURDER_MYSTERY(401, "Murder Mystery"),
|
||||
MY_ARMS_BIG_ADVENTURE(402, "My Arm's Big Adventure"),
|
||||
NATURE_SPIRIT(403, "Nature Spirit"),
|
||||
@@ -175,6 +175,7 @@ public enum Quest
|
||||
ZOGRE_FLESH_EATERS(449, "Zogre Flesh Eaters"),
|
||||
THE_ASCENT_OF_ARCEUUS(542, "The Ascent of Arceuus"),
|
||||
THE_FORSAKEN_TOWER(543, "The Forsaken Tower"),
|
||||
SONG_OF_THE_ELVES(603, "Song of the Elves"),
|
||||
|
||||
//Miniquests
|
||||
ENTER_THE_ABYSS(319, "Enter the Abyss"),
|
||||
@@ -188,7 +189,8 @@ public enum Quest
|
||||
THE_MAGE_ARENA(327, "The Mage Arena"),
|
||||
LAIR_OF_TARN_RAZORLOR(328, "Lair of Tarn Razorlor"),
|
||||
FAMILY_PEST(329, "Family Pest"),
|
||||
THE_MAGE_ARENA_II(330, "The Mage Arena II");
|
||||
THE_MAGE_ARENA_II(330, "The Mage Arena II"),
|
||||
IN_SEARCH_OF_KNOWLEDGE(602, "In Search of Knowledge");
|
||||
|
||||
@Getter
|
||||
private final int id;
|
||||
|
||||
@@ -109,7 +109,7 @@ public class ArdougneDiaryRequirement extends GenericDiaryRequirement
|
||||
new QuestRequirement(Quest.LEGENDS_QUEST));
|
||||
add("Craft some Death runes.",
|
||||
new SkillRequirement(Skill.RUNECRAFT, 65),
|
||||
new QuestRequirement(Quest.MOURNINGS_ENDS_PART_II));
|
||||
new QuestRequirement(Quest.MOURNINGS_END_PART_II));
|
||||
|
||||
// ELITE
|
||||
add("Catch a Manta ray in the Fishing Trawler and cook it in Port Khazard.",
|
||||
|
||||
@@ -110,7 +110,7 @@ public class WesternDiaryRequirement extends GenericDiaryRequirement
|
||||
new QuestRequirement(Quest.REGICIDE));
|
||||
add("Check the health of your Palm tree in Lletya.",
|
||||
new SkillRequirement(Skill.FARMING, 68),
|
||||
new QuestRequirement(Quest.MOURNINGS_ENDS_PART_I, true));
|
||||
new QuestRequirement(Quest.MOURNINGS_END_PART_I, true));
|
||||
add("Claim a Chompy bird hat from Rantz after registering at least 300 kills.",
|
||||
new QuestRequirement(Quest.BIG_CHOMPY_BIRD_HUNTING));
|
||||
add("Build an Isafdar painting in your POH Quest hall.",
|
||||
@@ -128,7 +128,7 @@ public class WesternDiaryRequirement extends GenericDiaryRequirement
|
||||
// ELITE
|
||||
add("Fletch a Magic Longbow in the Elven lands.",
|
||||
new SkillRequirement(Skill.FLETCHING, 85),
|
||||
new QuestRequirement(Quest.MOURNINGS_ENDS_PART_I));
|
||||
new QuestRequirement(Quest.MOURNINGS_END_PART_I));
|
||||
add("Kill the Thermonuclear Smoke devil (Does not require task).",
|
||||
new SkillRequirement(Skill.SLAYER, 93));
|
||||
add("Have Prissy Scilla protect your Magic tree.",
|
||||
@@ -140,6 +140,6 @@ public class WesternDiaryRequirement extends GenericDiaryRequirement
|
||||
new QuestRequirement(Quest.BIG_CHOMPY_BIRD_HUNTING));
|
||||
add("Pickpocket an Elf.",
|
||||
new SkillRequirement(Skill.THIEVING, 85),
|
||||
new QuestRequirement(Quest.MOURNINGS_ENDS_PART_I, true));
|
||||
new QuestRequirement(Quest.MOURNINGS_END_PART_I, true));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -122,8 +122,8 @@ enum QuestStartLocation
|
||||
MAKING_HISTORY(Quest.MAKING_HISTORY, new WorldPoint(2435, 3346, 0)),
|
||||
MONKS_FRIEND(Quest.MONKS_FRIEND, new WorldPoint(2605, 3209, 0)),
|
||||
MOUNTAIN_DAUGHTER(Quest.MOUNTAIN_DAUGHTER, new WorldPoint(2810, 3672, 0)),
|
||||
MOURNINGS_ENDS_PART_I(Quest.MOURNINGS_ENDS_PART_I, new WorldPoint(2289, 3149, 0)),
|
||||
MOURNINGS_ENDS_PART_II(Quest.MOURNINGS_ENDS_PART_II, new WorldPoint(2352, 3172, 0)),
|
||||
MOURNINGS_ENDS_PART_I(Quest.MOURNINGS_END_PART_I, new WorldPoint(2289, 3149, 0)),
|
||||
MOURNINGS_ENDS_PART_II(Quest.MOURNINGS_END_PART_II, new WorldPoint(2352, 3172, 0)),
|
||||
MURDER_MYSTERY(Quest.MURDER_MYSTERY, new WorldPoint(2740, 3562, 0)),
|
||||
MY_ARMS_BIG_ADVENTURE(Quest.MY_ARMS_BIG_ADVENTURE, new WorldPoint(2908, 10088, 0)),
|
||||
NATURE_SPIRIT(Quest.NATURE_SPIRIT, new WorldPoint(3440, 9894, 0)),
|
||||
|
||||
Reference in New Issue
Block a user