Skip to content

Commit

Permalink
add 151st infantryman and knob perfume to numberology
Browse files Browse the repository at this point in the history
  • Loading branch information
horrible-little-slime committed Nov 11, 2024
1 parent b8eae99 commit b30bea1
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions src/sections/resources/skill/Numberology.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { ListItem, Text, UnorderedList } from "@chakra-ui/react";
import {
haveOutfit,
myAdventures,
myAscensions,
myLevel,
Expand All @@ -9,12 +10,12 @@ import {
mySpleenUse,
numericModifier,
} from "kolmafia";
import { $path, $skill, get } from "libram";
import { $effect, $item, $path, $skill, get, have } from "libram";

import Line from "../../../components/Line";
import Tile from "../../../components/Tile";
import { haveUnrestricted } from "../../../util/available";
import { inRun } from "../../../util/quest";
import { inRun, questFinished } from "../../../util/quest";
import { plural } from "../../../util/text";

const MOON_SIGN_ID_LOOKUP: Record<string, number> = {
Expand Down Expand Up @@ -97,6 +98,21 @@ const Numberology = () => {
desiredDigits.push({ digit: 69, reason: "+3 adventures" });
}

if (!haveOutfit("Frat Warrior Fatigues") && !questFinished("questL12War")) {
desiredDigits.push({
digit: 151,
reason: "frat warrior outfit (fight 151st infantryman)",
});
}

if (
!have($item`Knob Goblin perfume`) &&
!have($effect`Knob Goblin Perfume`) &&
!questFinished("questL05Goblin")
) {
desiredDigits.push({ digit: 9, reason: "knob goblin perfume" });
}

if (inRun()) {
desiredDigits.push({
digit: 14,
Expand Down

0 comments on commit b30bea1

Please sign in to comment.