Skip to content

Commit

Permalink
Add cl
Browse files Browse the repository at this point in the history
  • Loading branch information
TastyPumPum committed Feb 27, 2024
1 parent ad35e79 commit eaed69c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/lib/data/CollectionsExport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1836,7 +1836,12 @@ export const slayerCL = resolveItems([
// "Dagon'hai hat",
// "Dagon'hai robe top",
// "Dagon'hai robe bottom",
'Blood shard'
'Blood shard',
'Ancient ceremonial mask',
'Ancient ceremonial top',
'Ancient ceremonial legs',
'Ancient ceremonial gloves',
'Ancient ceremonial boots'
]);
export const tzHaarCL = resolveItems([
'Obsidian cape',
Expand Down
21 changes: 21 additions & 0 deletions src/lib/minions/data/killableMonsters/low.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { SkillsEnum } from 'oldschooljs/dist/constants';

import { GearStat } from '../../../gear/types';
import itemID from '../../../util/itemID';
import resolveItems from '../../../util/resolveItems';
import { KillableMonster } from '../../types';

const killableMonsters: KillableMonster[] = [
Expand Down Expand Up @@ -140,6 +141,26 @@ const killableMonsters: KillableMonster[] = [
attackStyleToUse: GearStat.AttackRanged,
defaultAttackStyles: [SkillsEnum.Ranged, SkillsEnum.Magic],
disallowedAttackStyles: [SkillsEnum.Attack, SkillsEnum.Strength]
},
{
id: Monsters.BloodReaver.id,
name: Monsters.BloodReaver.name,
aliases: Monsters.BloodReaver.aliases,
timeToFinish: Time.Second * 36,
table: Monsters.BloodReaver,
wildy: false,
difficultyRating: 3,
qpRequired: 1,
itemsRequired: resolveItems(['Frozen key']),
healAmountNeeded: 30,
attackStyleToUse: GearStat.AttackRanged,
disallowedAttackStyles: [SkillsEnum.Magic],
attackStylesUsed: [GearStat.AttackMagic],
itemInBankBoosts: [
{
[itemID('Arclight')]: 10
}
]
}
];

Expand Down

0 comments on commit eaed69c

Please sign in to comment.