Skip to content

Commit

Permalink
Change Amascut's Remnant CA (#6059)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit authored Sep 24, 2024
1 parent bb8e749 commit e4c529b
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions src/lib/combat_achievements/grandmaster.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Time } from 'e';
import { Monsters } from 'oldschooljs';
import { Bank, Monsters } from 'oldschooljs';

import { PHOSANI_NIGHTMARE_ID } from '../constants';
import { Requirements } from '../structures/Requirements';
Expand All @@ -12,7 +12,6 @@ import type {
TOAOptions,
TheatreOfBloodTaskOptions
} from '../types/minions';
import { anyoneDiedInTOARaid } from '../util';
import { isCertainMonsterTrip } from './caUtils';
import type { CombatAchievement } from './combatAchievements';

Expand Down Expand Up @@ -696,13 +695,9 @@ export const grandmasterCombatAchievements: CombatAchievement[] = [
desc: 'Complete the Tombs of Amascut at raid level 500 or above without anyone dying.',
type: 'mechanical',
monster: 'Tombs of Amascut: Expert Mode',
rng: {
chancePerKill: 1,
hasChance: data =>
data.type === 'TombsOfAmascut' &&
(data as TOAOptions).raidLevel >= 500 &&
!anyoneDiedInTOARaid(data as TOAOptions)
}
requirements: new Requirements().add({
clRequirement: new Bank().add('Cursed phalanx', 1)
})
},
{
id: 3060,
Expand Down

0 comments on commit e4c529b

Please sign in to comment.