Skip to content

Commit

Permalink
Ensure all item buffs!
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Oct 20, 2023
1 parent b60093b commit 80d0a36
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions src/tasks/boozedrop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,43 @@ export const BoozeDropQuest: Quest = {
),
limit: { tries: 5 },
},
{
name: "Bat and Hat",
ready: () =>
get("instant_ExperimentalRouting", false) &&
(DaylightShavings.nextBuff() === $effect`Musician's Musician's Moustache` ||
have($item`vampyric cloake`)),
completed: () =>
get("instant_ExperimentalRouting", false) ||
have($effect`Musician's Musician's Moustache`) ||
have($effect`Bat-Adjacent Form`),
do: $location`The Dire Warren`,
outfit: () => ({
hat:
DaylightShavings.nextBuff() === $effect`Musician's Musician's Moustache` &&
!DaylightShavings.hasBuff() &&
have($item`Daylight Shavings Helmet`)
? $item`Daylight Shavings Helmet`
: undefined,
back: $item`vampyric cloake`,
weapon: $item`Fourth of May Cosplay Saber`,
offhand: have($skill`Double-Fisted Skull Smashing`)
? $item`industrial fire extinguisher`
: undefined,
familiar: chooseFamiliar(false),
modifier: "myst",
avoid: sugarItemsAboutToBreak(),
}),
choices: { 1387: 3 },
combat: new CombatStrategy().macro(
Macro.trySkill($skill`Bowl Straight Up`)
.trySkill($skill`Become a Bat`)
.trySkill($skill`Fire Extinguisher: Polar Vortex`)
.trySkill($skill`Use the Force`)
.default()
),
limit: { tries: 5 },
},
{
name: "Drink Sacramento Wine",
completed: () =>
Expand Down

0 comments on commit 80d0a36

Please sign in to comment.