Skip to content

Commit

Permalink
defence reduction: araxxor floor (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
LlemonDuck committed Sep 6, 2024
1 parent e5544fe commit 9ff475c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib/scaling/DefenceReduction.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Monster } from '@/types/Monster';
import {
AKKHA_IDS,
AKKHA_IDS, ARAXXOR_IDS,
BABA_IDS,
KEPHRI_SHIELDED_IDS,
KEPHRI_UNSHIELDED_IDS,
Expand Down Expand Up @@ -48,6 +48,9 @@ const getDefenceFloor = (m: Monster): number => {
if (NEX_IDS.includes(m.id)) {
return 250;
}
if (ARAXXOR_IDS.includes(m.id)) {
return 90;
}

// no limit
return 0;
Expand Down

0 comments on commit 9ff475c

Please sign in to comment.