From eb418b5a35d90fa2c47031beec93a0bed572516d Mon Sep 17 00:00:00 2001 From: koflem Date: Mon, 13 Jul 2026 15:09:08 -0400 Subject: [PATCH] Include accuracy demonbane factor for darklight/silverlight --- src/lib/PlayerVsNPCCalc.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/PlayerVsNPCCalc.ts b/src/lib/PlayerVsNPCCalc.ts index 26266047..c0181dbc 100644 --- a/src/lib/PlayerVsNPCCalc.ts +++ b/src/lib/PlayerVsNPCCalc.ts @@ -255,6 +255,9 @@ export default class PlayerVsNPCCalc extends BaseCalc { if (this.wearing(['Arclight', 'Emberlight']) && mattrs.includes(MonsterAttribute.DEMON)) { attackRoll = this.trackAddFactor(DetailKey.PLAYER_ACCURACY_DEMONBANE, attackRoll, this.demonbaneFactor(70)); } + if (this.wearing(['Silverlight', 'Darklight']) && mattrs.includes(MonsterAttribute.DEMON)) { + attackRoll = this.trackAddFactor(DetailKey.PLAYER_ACCURACY_DEMONBANE, attackRoll, this.demonbaneFactor(60)); + } if (this.wearing(['Bone claws', 'Burning claws']) && mattrs.includes(MonsterAttribute.DEMON)) { attackRoll = this.trackAddFactor(DetailKey.PLAYER_ACCURACY_DEMONBANE, attackRoll, this.demonbaneFactor(5)); }