Skip to content

Commit

Permalink
Punch the boombox for weapon damage. Silly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Nov 27, 2023
1 parent d5c4a0e commit 4551e65
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/tasks/weapondamage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import {
CommunityService,
get,
have,
SongBoom,
} from "libram";
import Macro, { haveFreeBanish, haveMotherSlimeBanish } from "../combat";
import { chooseFamiliar, sugarItemsAboutToBreak } from "../engine/outfit";
Expand Down Expand Up @@ -58,6 +59,13 @@ export const WeaponDamageQuest: Quest = {
do: () => create($item`potion of potency`, 1),
limit: { tries: 1 },
},
{
name: "Boombox Punchin'",
completed: () =>
SongBoom.song() === "These Fists Were Made for Punchin'" || !have($item`SongBoom™ BoomBox`),
do: () => SongBoom.setSong("These Fists Were Made for Punchin'"),
limit: { tries: 1 },
},
{
name: "Stand-Alone Carol Ghost Buff",
prepare: (): void => {
Expand Down

0 comments on commit 4551e65

Please sign in to comment.