Skip to content

Commit

Permalink
Add back clue hunter cloak/boots from unicorn (oldschoolgg#6084)
Browse files Browse the repository at this point in the history
  • Loading branch information
lazarus authored Oct 12, 2024
1 parent dfe7b91 commit 1a7a554
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/tasks/minions/monsterActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,18 @@ export function doMonsterTrip(data: newOptions) {
}
}
}
if (
monster.id === Monsters.Unicorn.id &&
gearBank.hasEquipped('Iron dagger') &&
!gearBank.hasEquippedOrInBank('Clue hunter cloak')
) {
loot.add('Clue hunter cloak');
loot.add('Clue hunter boots');
messages.push(
'\nWhile killing a Unicorn, you discover some strange clothing in the ground - you pick them up.'
);
}

updateBank.itemLootBank.add(loot);
updateBank.xpBank.add(
addMonsterXPRaw({
Expand Down

0 comments on commit 1a7a554

Please sign in to comment.