Skip to content

Commit

Permalink
further CBB tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
phulin committed Nov 9, 2024
1 parent 0717444 commit e3152ee
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions src/sections/resources/2022/Cookbookbat.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Stack, Text, UnorderedList } from "@chakra-ui/react";
import { ListItem, Stack, Text, UnorderedList } from "@chakra-ui/react";
import {
availableAmount,
fullnessLimit,
Expand Down Expand Up @@ -93,7 +93,10 @@ const Cookbookbat = () => {
</Line>
)}
{fightsUntilQuest > 1 ? (
<Line>{plural(fightsUntilQuest, "fight")} until next quest.</Line>
<Line>
{plural(fightsUntilQuest, "fight")} until next
{questMonster && " (rerolled)"} quest.
</Line>
) : (
<Line>New ingredient quest next turn.</Line>
)}
Expand All @@ -104,22 +107,22 @@ const Cookbookbat = () => {
{yeastAmount} yeast. Make:
</Line>
<UnorderedList>
<Line>
<ListItem>
<Text as="b">{borisBreadCraftable}x Boris's Bread:</Text> +100%
meat.
</Line>
<Line>
</ListItem>
<ListItem>
<Text as="b">
{roastedVegCraftable}x Roasted Vegetable of Jarlsberg:
</Text>{" "}
+100% item.
</Line>
<Line>
</ListItem>
<ListItem>
<Text as="b">
{focacciaCraftable}x Roasted Vegetable Focaccia:
</Text>{" "}
+10 fam XP.
</Line>
</ListItem>
</UnorderedList>
</Stack>
</MainLink>
Expand Down

0 comments on commit e3152ee

Please sign in to comment.