Skip to content

Commit

Permalink
Change up monkey killing in Grand Tree for MM2
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoinkwiz committed Nov 8, 2023
1 parent 9a8ce62 commit 34dcf60
Showing 1 changed file with 13 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,7 @@ public Map<Integer, QuestStep> loadSteps()

steps.put(130, talkToNieve);

ConditionalStep defendingTheTree = new ConditionalStep(this, killGorillasInStronghold);
defendingTheTree.addStep(killedGorillas, enterNorthOfTree);
steps.put(140, defendingTheTree);
steps.put(140, killGorillasInStronghold);

ConditionalStep goDefeatDemonicAndTorturedGorillas = new ConditionalStep(this, enterNorthOfTree);
goDefeatDemonicAndTorturedGorillas.addStep(inCrashSiteCavern, killTorturedAndDemonic);
Expand Down Expand Up @@ -682,30 +680,30 @@ public QuestPointReward getQuestPointReward()
public List<ExperienceReward> getExperienceRewards()
{
return Arrays.asList(
new ExperienceReward(Skill.SLAYER, 80000),
new ExperienceReward(Skill.AGILITY, 60000),
new ExperienceReward(Skill.THIEVING, 50000),
new ExperienceReward(Skill.HUNTER, 50000));
new ExperienceReward(Skill.SLAYER, 80000),
new ExperienceReward(Skill.AGILITY, 60000),
new ExperienceReward(Skill.THIEVING, 50000),
new ExperienceReward(Skill.HUNTER, 50000));
}

@Override
public List<ItemReward> getItemRewards()
{
return Arrays.asList(
new ItemReward("50,000 Experience Lamps (Any Combat Skill)", ItemID.ANTIQUE_LAMP, 2), //4447 is placeholder for filter
new ItemReward("A Royal Seed Pod", ItemID.ROYAL_SEED_POD, 1),
new ItemReward("A pet monkey", ItemID.MONKEY_19556, 1));
new ItemReward("50,000 Experience Lamps (Any Combat Skill)", ItemID.ANTIQUE_LAMP, 2), //4447 is placeholder for filter
new ItemReward("A Royal Seed Pod", ItemID.ROYAL_SEED_POD, 1),
new ItemReward("A pet monkey", ItemID.MONKEY_19556, 1));
}

@Override
public List<UnlockReward> getUnlockRewards()
{
return Arrays.asList(
new UnlockReward("Access to Demonic Gorillas"),
new UnlockReward("A new Gnome Glider location"),
new UnlockReward("Access to a bank on Ape Atoll"),
new UnlockReward("Ability to wield the Heavy Ballista"),
new UnlockReward("Access to Maniacal Monkey hunting area"));
new UnlockReward("Access to Demonic Gorillas"),
new UnlockReward("A new Gnome Glider location"),
new UnlockReward("Access to a bank on Ape Atoll"),
new UnlockReward("Ability to wield the Heavy Ballista"),
new UnlockReward("Access to Maniacal Monkey hunting area"));
}

@Override
Expand Down

0 comments on commit 34dcf60

Please sign in to comment.