From 4fbd27e9e946916c9e2968b632f0c9f16e2f63b2 Mon Sep 17 00:00:00 2001 From: DayV <69717452+DayV-git@users.noreply.github.com> Date: Tue, 26 Nov 2024 22:26:19 +0000 Subject: [PATCH] Nerf Araxytes (#6233) --- src/lib/minions/data/killableMonsters/low.ts | 4 ++-- tests/integration/pvm/pvm.test.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/minions/data/killableMonsters/low.ts b/src/lib/minions/data/killableMonsters/low.ts index 8f8525f0fcb..d36897ef577 100644 --- a/src/lib/minions/data/killableMonsters/low.ts +++ b/src/lib/minions/data/killableMonsters/low.ts @@ -169,7 +169,7 @@ const killableMonsters: KillableMonster[] = [ id: Monsters.Araxyte.id, name: Monsters.Araxyte.name, aliases: Monsters.Araxyte.aliases, - timeToFinish: Time.Second * 6, + timeToFinish: Time.Second * 16, table: Monsters.Araxyte, qpRequired: 1, healAmountNeeded: 40, @@ -181,7 +181,7 @@ const killableMonsters: KillableMonster[] = [ cannonMulti: true, canCannon: true, superior: Monsters.DreadbornAraxyte, - canBarrage: true + canBarrage: false }, { id: Monsters.Crab.id, diff --git a/tests/integration/pvm/pvm.test.ts b/tests/integration/pvm/pvm.test.ts index 989bb2e2f6b..463c09d91b6 100644 --- a/tests/integration/pvm/pvm.test.ts +++ b/tests/integration/pvm/pvm.test.ts @@ -377,7 +377,7 @@ describe('PVM', async () => { }); await user.giveSlayerTask(EMonster.ARAXYTE, 100); await user.kill(EMonster.ARAXYTE, { method: 'cannon' }); - expect(user.bank.amount('Cannonball')).toBeGreaterThan(100_000 - 200); + expect(user.bank.amount('Cannonball')).toBeGreaterThan(100_000 - 500); }); it('should give a scythe boost and deduct charges', async () => {