Skip to content

Commit

Permalink
Improve modifier string for exp during levelup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignose committed Jan 25, 2024
1 parent 7e6c9f9 commit a412793
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/engine/outfit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ import { camelFightsLeft, statToMaximizerString } from "../lib";
import { args } from "../args";
import { restoreMPEfficiently } from "../tasks/leveling";

const primeStat = statToMaximizerString(myPrimestat());

export function garbageShirt(): boolean {
if (
have($item`January's Garbage Tote`) &&
Expand Down Expand Up @@ -208,9 +210,7 @@ export function baseOutfit(allowAttackingFamiliars = true): OutfitSpec {
get("_leafMonstersFought", 0) < 5
? $item`tiny rake`
: undefined,
modifier: `0.25 ${statToMaximizerString(
myPrimestat()
)}, 0.33 ML, -equip tinsel tights, -equip wad of used tape`, //Update to check prime stat
modifier: ` ${primeStat}, 4 ML, 3 ${primeStat} exp, 1.33 exp, 30 ${primeStat} experience percent, 3 familiar exp, -equip tinsel tights, -equip wad of used tape`, //Update to check prime stat
avoid: [
...sugarItemsAboutToBreak(),
...(avoidDaylightShavingsHelm() ? [$item`Daylight Shavings Helmet`] : []),
Expand Down

0 comments on commit a412793

Please sign in to comment.