Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gc committed Dec 3, 2024
1 parent 617620a commit 9db28db
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/lib/minions/data/killableMonsters/low.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { resolveItems } from 'oldschooljs/dist/util/util';
import { GearStat } from '../../../gear/types';
import itemID from '../../../util/itemID';
import type { KillableMonster } from '../../types';
import { QuestID } from '../quests';

const killableMonsters: KillableMonster[] = [
{
Expand Down Expand Up @@ -279,7 +280,7 @@ const killableMonsters: KillableMonster[] = [
healAmountNeeded: 200,
attackStyleToUse: GearStat.AttackCrush,
attackStylesUsed: [GearStat.AttackCrush],
qpRequired: 150
requiredQuests: [QuestID.ThePathOfGlouphrie]
},
{
id: Monsters.WarpedTortoise.id,
Expand All @@ -290,7 +291,7 @@ const killableMonsters: KillableMonster[] = [
healAmountNeeded: 200,
attackStyleToUse: GearStat.AttackCrush,
attackStylesUsed: [GearStat.AttackCrush],
qpRequired: 150
requiredQuests: [QuestID.ThePathOfGlouphrie]
}
];

Expand Down
10 changes: 9 additions & 1 deletion src/lib/slayer/slayerUnlocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ export enum SlayerTaskUnlocksEnum {
IWildyMoreSlayer = 200,
Revenenenenenants = 201,
EyeSeeYou = 202,
MoreEyesThanSense = 203
MoreEyesThanSense = 203,
WarpedReality = 204
}

export const SlayerRewardsShop: SlayerTaskUnlocks[] = [
Expand Down Expand Up @@ -555,5 +556,12 @@ export const SlayerRewardsShop: SlayerTaskUnlocks[] = [
extendMult: 3.3,
canBeRemoved: true,
aliases: ['extend araxytes']
},
{
id: SlayerTaskUnlocksEnum.WarpedReality,
name: 'Warped Reality',
desc: 'Konar, Duradel, Nieve, and Chaeldar will be able to assign warped creatures as your task.',
slayerPointCost: 60,
aliases: ['warped reality']
}
];

0 comments on commit 9db28db

Please sign in to comment.