Skip to content

Commit

Permalink
Camelspit logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Oct 18, 2023
1 parent e2cff2b commit 253160f
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/tasks/leveling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1480,16 +1480,7 @@ export const LevelingQuest: Quest = {
{
name: "Extra Camelspit Leveling",
completed: () =>
myBasestat(myPrimestat()) >= targetBaseMyst - targetBaseMystGap && // I don't know if this will cause issues.
(haveCBBIngredients(false) ||
overlevelled() ||
craftedCBBEffects.some((ef) => have(ef)) ||
craftedCBBEffects.every((ef) => forbiddenEffects.includes(ef))) &&
(powerlevelingLocation() !== $location`The Neverending Party` ||
get("_neverendingPartyFreeTurns") >= 10) &&
!get("instant_camelExperiment", false) &&
get("camelSpit") > 94 &&
get("camelSpit") < 100,
!get("instant_camelExperiment", false) || (get("camelSpit") > 94 && get("camelSpit") < 100),
do: powerlevelingLocation(),
prepare: (): void => {
restoreHp(clamp(1000, myMaxhp() / 2, myMaxhp()));
Expand Down

0 comments on commit 253160f

Please sign in to comment.