Open pstalcup opened 2 years ago
Here is roughly how I imagine this being used:
import { merge } from "grimoire-kolmafia/partials" import { ProtonGhost, VoidMonser } from "grimoire-kolmafia/partials/wanderers" import { BowlingBall } from "grimoire-kolmafia/partials/freerun" const farmingQuest = { name: "Farming", tasks: [ ProtonGhost, extend(VoidMonster, { do: $location`Seecrit Farming Zone`, }), extend(BowlingBall, { do: $location`Seecrit Delay Zone`, combat: new CombatStrategy().macro(BowlingBall.macro) }) { name: "Farm", do: $location`Seecrit Farming Zone`, combat: new CombatStrategy.macro(Macro.attack().repeat()) } ] }
Here is roughly how I imagine this being used: