Skip to content

Commit

Permalink
added scurrius boosts
Browse files Browse the repository at this point in the history
  • Loading branch information
Arodab committed Aug 19, 2024
1 parent 6eb8fd3 commit 45f0b0a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/degradeableItems.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export const degradeablePvmBoostItems: DegradeableItemPVMBoost[] = [
degradeable: degradeableItems.find(di => di.item.id === itemID('Amulet of blood fury'))!,
attackStyle: 'melee',
charges: ({ totalHP }) => totalHP / 25,
boost: 0
boost: 2
},
];

Expand Down
28 changes: 26 additions & 2 deletions src/lib/minions/data/killableMonsters/bosses/misc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -531,14 +531,38 @@ const killableBosses: KillableMonster[] = [
id: Monsters.Scurrius.id,
name: Monsters.Scurrius.name,
aliases: Monsters.Scurrius.aliases,
timeToFinish: Time.Minute * 2,
timeToFinish: Time.Minute * 1.5,
respawnTime: Time.Minute / 3,
table: Monsters.Scurrius,
notifyDrops: resolveItems(['Scurry']),
qpRequired: 0,

itemInBankBoosts: [
{
[itemID('Abyssal whip')]: 5,
[itemID('Bone mace')]: 8,
[itemID("Soulreaper axe")]: 10
},
{
[itemID('Amulet of fury')]: 2,
[itemID('Amulet of torture')]: 4
},
{
[itemID('Fire cape')]: 2,
[itemID('Infernal cape')]: 4
},
{
[itemID('Barrows gloves')]: 2,
[itemID('Ferocious gloves')]: 4
}
],

levelRequirements: {
prayer: 43
},
defaultAttackStyles: [SkillsEnum.Attack]
defaultAttackStyles: [SkillsEnum.Attack],
combatXpMultiplier: 1.20,
healAmountNeeded: 20
}
];

Expand Down

0 comments on commit 45f0b0a

Please sign in to comment.