Skip to content

Commit

Permalink
scariersauce (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinn authored Dec 25, 2023
1 parent 62b7ad0 commit 472f04c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/zones/bar.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { toSkill } from "kolmafia";
import { $effects, $location, have } from "libram";
import { toSkill, useSkill } from "kolmafia";
import { $effect, $effects, $item, $location, $skill, have } from "libram";

import { CrimboQuest, CrimboStrategy } from "../engine";
import { shrineGazeIfNecessary } from "../lib";
Expand All @@ -12,6 +12,14 @@ const bar: CrimboQuest = {
name: "Bar",
location,
tasks: [
{
name: "Scariersauce",
ready: () => have($item`velour viscometer`),
completed: () => have($effect`Scariersauce`),
outfit: { acc1: $item`velour viscometer` },
do: () => useSkill($skill`Scarysauce`),
sobriety: "either",
},
{
name: "Crimbo",
completed: () => false,
Expand Down

0 comments on commit 472f04c

Please sign in to comment.