Skip to content

Commit

Permalink
tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
phulin committed Nov 30, 2024
1 parent ff3ccc5 commit 49325f2
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/ChevronsListIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const ChevronsList: FC<ChevronsListProps> = (props) => (
alignItems="center"
height="1rem"
mt="1px"
marginInlineEnd={0}
marginInlineEnd={0.5}
>
<Chevrons {...props} />
</List.Indicator>
Expand Down
13 changes: 13 additions & 0 deletions src/sections/misc/Faxes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,19 @@ const FAX_SOURCES: FaxSource[] = [
</Line>
),
},
{
name: "Cargo Shorts",
remaining: () =>
+(
haveUnrestricted($item`Cargo Cultist Shorts`) &&
!get("_cargoPocketEmptied")
),
render: () => (
<Line href={inventoryLink($item`Cargo Cultist Shorts`)}>
1 cargo pocket (limited).
</Line>
),
},
{
name: "mimic egg",
remaining: () =>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/quests/Level6.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Level6: FC = () => {
Your -combat% is less than 25%, you want more!
</Line>
)}
<List.Root>{listItems}</List.Root>
<List.Root variant="plain">{listItems}</List.Root>
</>,
],
[2, <Line>Conduct the ritual to finish the quest.</Line>],
Expand Down
7 changes: 3 additions & 4 deletions src/sections/resources/2021/EmotionChip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,8 @@ const EmotionChip = () => {
return (
<List.Item
key={skillDescription}
pl="1"
display="flex"
color={casts === 0 ? "gray.solid" : undefined}
pl={1}
color={casts === 0 ? "fg.subtle" : undefined}
>
<ChevronsListIcon
usesLeft={casts}
Expand Down Expand Up @@ -75,7 +74,7 @@ const EmotionChip = () => {
// - My lean is to not include hatred and leave it for the banish tile I'm making.
return (
<Tile header="Emotion Chip" imageUrl="/images/itemimages/emochip1.gif">
<List.Root>{listItems}</List.Root>
<List.Root variant="plain">{listItems}</List.Root>
</Tile>
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/sections/resources/2022/ModelTrainSet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ const ModelTrainSet = () => {
useNag(
() => ({
id: "model-train-set-nag",
priority: NagPriority.MID,
priority: NagPriority.LOW,
imageUrl,
node: shouldNag && (
<Tile
Expand Down
8 changes: 6 additions & 2 deletions src/sections/resources/2023/PatrioticEagle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,15 @@ const PatrioticEagle = () => {
pledgeZoneEffect &&
pledgeZoneName && (
<Tile
header="Pledge to a zone!"
header="Pledge to a zone?"
imageUrl="/images/itemimages/flag1.gif"
linkedContent={patrioticEagle}
>
{!withEagle && <Line>Take your Patriotic Eagle with you.</Line>}
{!withEagle && (
<Line command="familiar Patriotic Eagle">
Take your Patriotic Eagle with you.
</Line>
)}
<Line>
Pledge allegiance to <Strong>{pledgeZoneName}</Strong> for{" "}
{pledgeZoneEffect}.
Expand Down

0 comments on commit 49325f2

Please sign in to comment.